@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
  --text-primary: #1f2937;
  --text-secondary: #4b5563;
  --text-tertiary: #6b7280;
  --border-color: #e5e7eb;
}

/* Animated Minimalist Gradient Background */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  background: linear-gradient(120deg, #f5f7fa, #e8eaf6, #cfd8dc, #b0bec5, #90caf9, #b39ddb, #f5f7fa);
  background-size: 400% 400%;
  animation: gradientBG 32s ease-in-out infinite;
  opacity: 0.85;
}
@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.print-container {
  max-width: 56rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.10);
  border-radius: 1.25rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  transition: box-shadow 0.3s cubic-bezier(.4,2,.3,1), background 0.3s;
}

.download-btn, .fixed.bottom-8.right-8 {
  box-shadow: 0 4px 24px 0 rgba(31, 38, 135, 0.10);
  transition: box-shadow 0.3s, background 0.3s, transform 0.2s;
}
.download-btn:hover, .fixed.bottom-8.right-8:hover {
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
  background: #2563eb !important;
  transform: translateY(-4px) scale(1.03);
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text-primary);
  background: transparent !important;
}

.section-title {
  color: var(--text-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.contact-info {
  color: var(--text-secondary);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.contact-info a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.contact-info a:hover {
  color: #2563eb;
}

.contact-info i {
  color: var(--text-tertiary);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
}

.experience-item {
  text-align: justify;
}

.experience-item ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.experience-item li {
  margin-bottom: 0.25rem;
  text-align: left;
  color: var(--text-secondary);
}

.job-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.job-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  flex-wrap: wrap;
}

.job-info-item i {
  color: var(--text-tertiary);
  min-width: 1rem;
}

@media (max-width: 768px) {
  body {
    padding: 1rem;
  }
  .print-container {
    padding: 1rem;
  }
  h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  h2 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .section-title {
    font-size: 1.25rem;
    padding-bottom: 0.25rem;
    margin-bottom: 0.75rem;
  }
  .job-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .job-info-item {
    width: 100%;
  }
  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .experience-item {
    margin-bottom: 1.5rem;
  }
  .experience-item ul {
    padding-left: 1rem;
  }
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  p,
  li,
  .job-info-item {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .profile-photo {
    width: 100px;
    height: 100px;
  }
  .contact-info {
    text-align: left;
  }
  .contact-info a {
    word-break: break-all;
  }
}

@media (max-width: 480px) {
  .print-container {
    padding: 0.75rem;
  }
  h1 {
    font-size: 1.25rem;
  }
  h2 {
    font-size: 1.1rem;
  }
  h3 {
    font-size: 1rem;
  }
  .section-title {
    font-size: 1.1rem;
  }
  .job-info-item {
    font-size: 0.8125rem;
  }
  .contact-info {
    font-size: 0.8125rem;
  }
  .skills-grid {
    grid-template-columns: 1fr;
  }
}

@media print {
  body {
    background: white;
    margin: 0;
    padding: 0;
  }
  .no-print {
    display: none !important;
  }
  .print-container {
    max-width: 100% !important;
    margin: 0 !important;
    padding: 1.5cm !important;
    box-shadow: none !important;
    background: white !important;
  }
  h1 {
    font-size: 20pt !important;
    margin-bottom: 0.5cm !important;
  }
  h2 {
    font-size: 14pt !important;
    margin-bottom: 0.3cm !important;
  }
  h3 {
    font-size: 12pt !important;
    margin-bottom: 0.2cm !important;
  }
  p,
  li,
  .job-info-item {
    font-size: 10pt !important;
    line-height: 1.4 !important;
  }
  .section-title {
    border-bottom: 1px solid var(--border-color) !important;
    padding-bottom: 0.2cm !important;
  }
  .job-info {
    gap: 0.5cm !important;
  }
  .experience-item {
    margin-bottom: 0.5cm !important;
  }
  .experience-item ul {
    margin-top: 0.2cm !important;
    padding-left: 0.5cm !important;
  }
  .experience-item li {
    margin-bottom: 0.1cm !important;
  }
  .contact-info {
    font-size: 9pt !important;
  }
  .contact-info i {
    font-size: 9pt !important;
  }
  .skills-grid {
    font-size: 9pt !important;
    gap: 0.2cm !important;
  }
  a {
    text-decoration: none !important;
    color: var(--text-primary) !important;
  }
  .page-break {
    page-break-before: always;
  }
  .profile-photo {
    width: 120px !important;
    height: 120px !important;
  }
} 

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.content-wrapper {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.content-wrapper.loaded {
  opacity: 1;
  transform: translateY(0);
}

.section {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2rem 0;
  margin-top: auto;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 6rem;
}

.footer-content {
  max-width: 4xl;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.social-link {
  color: #666;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #3498db;
  transform: translateY(-2px);
}

.footer-text {
  color: #666;
  font-size: 0.875rem;
}

.footer-text a {
  color: #3498db;
  text-decoration: none;
}

.footer-text a:hover {
  text-decoration: underline;
}

@media print {
  .footer {
    display: none;
  }
}

.bottom-nav {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 8px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 16px;
  z-index: 1000;
  margin-bottom: 1rem;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #666;
  text-decoration: none;
  font-size: 0.75rem;
  transition: all 0.3s ease;
  padding: 4px 12px;
  border-radius: 20px;
}

.nav-item:hover {
  color: #3498db;
}

.nav-item.active {
  color: #3498db;
  font-weight: 500;
}

.nav-item i {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .footer {
    padding-bottom: 8rem;
  }
  
  .bottom-nav {
    bottom: 10px;
  }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#app {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  flex: 1;
  margin-bottom: 2rem;
}

.wa-float-btn {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 1100;
  background: #25d366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  font-size: 2rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.wa-float-btn:hover {
  background: #1ebe57;
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transform: scale(1.08);
}
@media (max-width: 640px) {
  .wa-float-btn {
    right: 16px;
    bottom: 80px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
}
@media print {
  .wa-float-btn {
    display: none;
  }
}