/* ===== CUSTOM PROPERTIES ===== */
:root {
  --primary-color: #3B82F6;
  --secondary-color: #1E40AF;
  --accent-color: #F59E0B;
  --text-dark: #1F2937;
  --text-light: #6B7280;
  --bg-light: #F9FAFB;
  --bg-white: #FFFFFF;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius: 0.75rem;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.section-padding {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section-padding { padding: 6rem 0; }
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-md);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

.navbar-brand {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.navbar-menu {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .navbar-menu {
    display: flex;
  }
}

.navbar-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: var(--transition);
  position: relative;
}

.navbar-link:hover {
  color: var(--primary-color);
}

.navbar-link::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.navbar-link:hover::after {
  width: 100%;
}

.mobile-menu-button {
  display: block;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .mobile-menu-button {
    display: none;
  }
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-white);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu-link {
  display: block;
  padding: 0.75rem 0;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.mobile-menu-link:hover {
  color: var(--primary-color);
  padding-left: 0.5rem;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="white" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-avatar {
  width: 8rem;
  height: 8rem;
  margin: 0 auto 2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-avatar i {
  font-size: 2.5rem;
  color: white;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 300;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero-description {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  margin-bottom: 2rem;
  opacity: 0.9;
  color: white;
  font-weight: 500;
}

.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 3rem;
  font-size: 1.125rem;
}

@media (min-width: 640px) {
  .hero-contact {
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
  }
}

.hero-contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

@media (min-width: 640px) {
  .hero-cta {
    flex-direction: row;
    justify-content: center;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--bg-white);
  color: var(--primary-color);
  border-color: var(--bg-white);
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-secondary:hover {
  background: white;
  color: var(--primary-color);
  transform: translateY(-2px);
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-divider {
  width: 4rem;
  height: 0.25rem;
  background: var(--primary-color);
  margin: 0 auto;
  border-radius: 0.125rem;
}

/* ===== CARDS ===== */
.card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-xl);
}

.card-header {
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.card-subtitle {
  color: var(--text-light);
  font-size: 0.875rem;
}

.card-content {
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== GRID LAYOUTS ===== */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }

@media (min-width: 768px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ===== TIMELINE ===== */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-color);
}

@media (min-width: 768px) {
  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 3rem;
}

@media (min-width: 768px) {
  .timeline-item {
    padding-left: 0;
    width: 50%;
  }
  
  .timeline-item:nth-child(odd) {
    padding-right: 3rem;
  }
  
  .timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 3rem;
  }
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -0.5rem;
  top: 0;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--primary-color);
  border: 3px solid var(--bg-white);
  box-shadow: 0 0 0 3px var(--primary-color);
}

@media (min-width: 768px) {
  .timeline-item::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .timeline-item:nth-child(even)::before {
    left: -0.5rem;
    transform: none;
  }
}

.timeline-content {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.timeline-content:hover {
  transform: translateY(-0.25rem);
  box-shadow: var(--shadow-lg);
}

.timeline-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .timeline-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

.timeline-date {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.875rem;
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.tag-primary {
  background: rgba(59, 130, 246, 0.1);
  color: var(--primary-color);
}

.tag-secondary {
  background: rgba(30, 64, 175, 0.1);
  color: var(--secondary-color);
}

.tag-success {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
}

.tag-warning {
  background: rgba(245, 158, 11, 0.1);
  color: var(--accent-color);
}

/* ===== SKILLS ===== */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.skill-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.skill-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.skill-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.skill-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-right: 1.5rem;
}

.skill-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
}

/* Education section icon spacing */
.education-icon {
  margin-right: 1.5rem !important;
}

/* Hide education section when no content */
.education-section.hidden {
  display: none;
}

/* Education section loading animation */
.education-section {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.education-section.loaded {
  opacity: 1;
  transform: translateY(0);
}

.education-section .card {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.education-section.loaded .card:nth-child(1) {
  animation: fadeInUp 0.6s ease 0.2s forwards;
}

.education-section.loaded .card:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.4s forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.skill-list {
  list-style: none;
}

.skill-list li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.skill-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* ===== PROJECTS ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  align-items: start;
}

.project-card {
  background: var(--bg-white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
  height: 400px;
  overflow: hidden;
  position: relative;
}

.project-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: var(--shadow-lg);
}

.project-card.expanded {
  height: auto;
  overflow: visible;
}

.project-card.expanded:hover {
  transform: none;
}

.project-header {
  margin-bottom: 1rem;
}

.project-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.project-subtitle {
  color: var(--text-light);
  font-size: 0.875rem;
}

.project-description {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.project-links {
  display: flex;
  gap: 1rem;
}

.project-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition);
}

.project-link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.read-more-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
}

.read-more-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-1px);
}

.project-card.expanded .read-more-btn {
  display: none;
}

.read-more-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
  pointer-events: none;
  z-index: 5;
}

.project-card.expanded .read-more-overlay {
  display: none;
}

/* ===== CONTACT ===== */
.contact {
  background: var(--text-dark);
  color: white;
}

.contact .section-title {
  color: white !important;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-0.25rem);
}

.contact-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-info {
  opacity: 0.9;
}

.contact-cta {
  text-align: center;
}

/* ===== FOOTER ===== */
.footer {
  background: #111827;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  opacity: 0.75;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

.animate-fade-in {
  animation: fadeIn 0.6s ease-out;
}

/* ===== RESPONSIVE UTILITIES ===== */
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.grid { display: grid; }

@media (max-width: 767px) {
  .hidden-mobile { display: none; }
}

@media (min-width: 768px) {
  .hidden-desktop { display: none; }
}

/* ===== MOBILE RESPONSIVE FIXES ===== */
@media (max-width: 768px) {
  /* Container padding */
  .container {
    padding: 0 1rem;
  }
  
  /* Section padding */
  .section {
    padding: 3rem 0;
  }
  
  /* Hero section mobile */
  .hero {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-description {
    font-size: 1.125rem;
  }
  
  .hero-contact {
    flex-direction: column;
    gap: 0.75rem;
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }
  
  .btn {
    width: 100%;
    max-width: 280px;
    padding: 1rem 2rem;
  }
  
  /* Navigation mobile */
  .navbar-container {
    height: 3.5rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  /* Cards mobile */
  .card {
    padding: 1.5rem;
  }
  
  /* Project cards mobile */
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .project-card {
    height: auto;
    min-height: 350px;
    padding: 1.5rem;
  }
  
  .project-card.expanded {
    height: auto;
  }
  
  .read-more-btn {
    position: static;
    margin-top: 1rem;
    width: 100%;
    text-align: center;
  }
  
  .read-more-overlay {
    display: none;
  }
  
  /* Skills grid mobile */
  .skills-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .skill-card {
    padding: 1.5rem;
  }
  
  /* Timeline mobile */
  .timeline::before {
    left: 1rem;
  }
  
  .timeline-item {
    padding-left: 3rem;
  }
  
  .timeline-item::before {
    left: -0.5rem;
  }
  
  .timeline-content {
    padding: 1.25rem;
  }
  
  .timeline-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  /* Contact section mobile */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  /* Education section mobile */
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Typography mobile */
  .section-title {
    font-size: 2rem;
  }
  
  .card-title {
    font-size: 1.125rem;
  }
  
  .timeline-title {
    font-size: 1.25rem;
  }
  
  /* Tags mobile */
  .tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
  }
  
  /* Project links mobile */
  .project-links {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .project-link {
    text-align: center;
    padding: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 0.5rem;
  }
  
  /* Mobile-specific improvements */
  .hero-avatar {
    width: 6rem;
    height: 6rem;
  }
  
  .hero-avatar i {
    font-size: 2rem;
  }
  
  /* Touch-friendly buttons */
  .mobile-menu-button {
    padding: 0.5rem;
    min-width: 44px;
    min-height: 44px;
  }
  
  /* Better spacing for mobile */
  .section-header {
    margin-bottom: 2rem;
  }
  
  /* Mobile navigation improvements */
  .mobile-menu {
    padding: 1rem;
  }
  
  .mobile-menu-link {
    padding: 1rem 0;
    font-size: 1rem;
  }
  
  /* Project card mobile optimizations */
  .project-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  /* Skills mobile layout */
  .skill-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  
  .skill-icon {
    font-size: 1.5rem;
    margin-right: 0;
  }
  
  /* Contact section mobile */
  .contact-cta {
    margin-top: 2rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 1.5rem 0;
    font-size: 0.875rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .card {
    padding: 1.25rem;
  }
  
  .project-card {
    padding: 1.25rem;
    min-height: 300px;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .hero-cta,
  .contact-cta {
    display: none;
  }
  
  .hero {
    min-height: auto;
    padding: 2rem 0;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .card,
  .timeline-content,
  .skill-card,
  .project-card {
    box-shadow: none;
    border: 1px solid #ccc;
  }
}
