/* ===================================
   WORK PAGE STYLES - Literals
   =================================== */

/* CSS Variables */
:root {
    /* Colors */
    --background: #ffffff;
    --foreground: #1a1a1a;
    --card: #ffffff;
    --card-foreground: #1a1a1a;
    --primary: #e53935;
    --primary-dark: #b71c1c;
    --primary-glow: #ef5350;
    --secondary: #f5f5f5;
    --secondary-foreground: #1a1a1a;
    --muted: #f5f5f5;
    --muted-foreground: #737373;
    --border: #e5e5e5;
    
    /* Typography */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    
    /* Shadows */
    --shadow-card: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 30px 60px -15px rgba(229, 57, 53, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--font-serif);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

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






/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #c62828 0%, #b71c1c 100%);
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.hero-blur {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.hero-blur-1 {
    top: 25%;
    left: 40px;
    width: 256px;
    height: 256px;
    background: rgba(0, 0, 0, 0.05);
}

.hero-blur-2 {
    bottom: 25%;
    right: 40px;
    width: 384px;
    height: 384px;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 120px 0;
}

.hero-eyebrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #ffffff;
    margin-bottom: 32px;
}

.hero-title .italic {
    font-style: italic;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    font-weight: 300;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 64px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.hero-cta:hover {
    color: #ffffff;
}

.hero-cta svg {
    width: 16px;
    height: 16px;
}

.icon-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-8px);
    }
    60% {
        transform: translateY(-4px);
    }
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 128px;
    background: linear-gradient(to top, var(--background), transparent);
}

/* Navigation */
.nav {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}

@media (min-width: 768px) {
  .nav {
    padding: 24px 48px;
  }
}

@media (min-width: 1024px) {
  .nav {
    padding: 24px 80px;
  }
}

.logo {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.5rem;
  color: white;
  text-decoration: none;
  transition: opacity var(--transition);
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.875rem;
  }
}

.logo:hover {
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.875rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color var(--transition);
}




/* ===================================
   SKILLS SECTION
   =================================== */
.skills-section {
    padding: 128px 0;
    background: var(--background);
}

.section-header {
    max-width: 768px;
    margin-bottom: 80px;
}

.section-eyebrow {
    color: var(--primary);
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.75rem);
    color: var(--foreground);
    line-height: 1.1;
}

.text-primary {
    color: var(--primary);
}

.italic {
    font-style: italic;
}

.skills-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

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

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

.skill-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-medium);
}

.skill-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.skill-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(229, 57, 53, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background var(--transition-fast);
}

.skill-card:hover .skill-icon {
    background: rgba(229, 57, 53, 0.2);
}

.skill-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.skill-title {
    font-size: 1.25rem;
    color: var(--foreground);
    margin-bottom: 12px;
}

.skill-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 24px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 9999px;
    background: var(--secondary);
    color: var(--secondary-foreground);
}

/* ===================================
   PROJECTS SECTION
   =================================== */
.projects-section {
    padding: 128px 0;
    background: var(--secondary);
}

.projects-header {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 80px;
}

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

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color var(--transition-fast);
}

.view-all-link:hover {
    color: var(--primary-dark);
}

.view-all-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.view-all-link:hover svg {
    transform: translate(4px, -4px);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

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

.project-card {
    position: relative;
    aspect-ratio: 4 / 3;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    transform: scale(1.02);
}

.project-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2), transparent);
    opacity: 0.6;
    transition: opacity var(--transition-medium);
}

.project-card:hover .project-overlay {
    opacity: 0.9;
}

.project-content {
    position: absolute;
    inset: 0;
    z-index: 10;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.project-content > * {
    transform: translateY(16px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover .project-content > * {
    transform: translateY(0);
}

.project-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.project-category {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.project-year {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.project-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #ffffff;
    margin-bottom: 12px;
}

.project-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    max-width: 400px;
    opacity: 0;
    transition: opacity 0.5s ease 0.1s;
}

.project-card:hover .project-description {
    opacity: 1;
}

.project-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: #ffffff;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.5s ease 0.2s;
}

.project-card:hover .project-link {
    opacity: 1;
}

.project-link svg {
    width: 16px;
    height: 16px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 64px 0;
    background: var(--background);
    border-top: 1px solid var(--border);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

@media (min-width: 768px) {
    .footer-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.875rem;
    font-style: italic;
    color: var(--foreground);
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* ===================================
   ANIMATIONS
   =================================== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Hero specific animations */
.hero .animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
}

.hero .animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}





.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg,
.hero-grain,
.hero-blur {
  position: absolute;
  inset: 0;
  z-index: 0;   /* KEY FIX */
}

.hero-content {
  position: relative;
  z-index: 2;
}
/* ===================================
   NAVIGATION - LOGO LEFT, LINKS RIGHT
   =================================== */

/* Nav container at the top */


/* Logo on LEFT side */
.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    color: #ffffff; /* White text on red background */
    text-decoration: none;
    margin: 0; /* Remove any margins */
}

/* Navigation links on RIGHT side */


/* ===================================
   HERO SPACING
   =================================== */
.hero-content {
    position: relative;
    z-index: 10;
    padding-top: 120px; /* Space for navigation */
}

/* ===================================
   RESPONSIVE
   =================================== */

/* ===================================
   MODERN PROJECTS SHOWCASE (2026 STYLE)
   =================================== */

.projects-showcase {
    padding: 128px 0;
    background: var(--background);
    position: relative;
    overflow: hidden;
}

.projects-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.showcase-header {
    max-width: 768px;
    margin: 0 auto 80px;
    text-align: center;
}

.showcase-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-top: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Interactive Grid */
.interactive-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 64px;
}

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

/* Interactive Cards */
.interactive-card {
    background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.interactive-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.interactive-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 80px -20px rgba(229, 57, 53, 0.15);
    border-color: rgba(229, 57, 53, 0.1);
}

.interactive-card:hover::before {
    opacity: 1;
}

/* Card Header */
.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.card-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--primary);
}

.card-year {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.card-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.interactive-card:hover .card-logo {
    transform: scale(1.1) rotate(5deg);
}

/* Card Content */
.card-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    color: var(--foreground);
    margin-bottom: 12px;
    line-height: 1.2;
}

.card-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Card Stats */
.card-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-top: 4px;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card-view-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.card-view-btn:hover {
    background: rgba(229, 57, 53, 0.1);
    transform: translateX(4px);
}

.card-view-btn svg {
    width: 16px;
    height: 16px;
}

/* Filter Tabs */
.showcase-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 64px;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid var(--border);
    background: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Animation States */
.interactive-card {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.interactive-card.delay-1 { animation-delay: 0.1s; }
.interactive-card.delay-2 { animation-delay: 0.2s; }
.interactive-card.delay-3 { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ===================================
   FOOTER - WIDE SPREAD
   =================================== */

.site-footer {
  background-color: #ffffff;
  border-top: 2px solid #d41e22;
  padding: 80px 0 40px;
  color: #111;
  position: relative;
  z-index: 5;
  width: 100%;
}

.footer-inner {
  max-width: 1400px; /* Increased from 1100px */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 80px; /* Increased gap */
  padding: 0 48px; /* Added padding for mobile */
}

.footer-col h3 {
  font-size: 28px; /* Slightly larger */
  font-weight: 400;
  margin-bottom: 16px;
  font-family: var(--font-serif);
  font-style: italic;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #333;
}

.footer-col p,
.footer-col li {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  text-decoration: none;
  color: #111;
  transition: opacity 0.3s ease;
  position: relative;
}

.footer-col a:hover {
  opacity: 0.6;
}

/* Optional: Add hover effect for links */
.footer-col a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #d41e22;
  transition: width 0.3s ease;
}

.footer-col a:hover::after {
  width: 100%;
}

.footer-motto {
  margin-bottom: 20px;
  font-size: 17px;
  color: #444;
  max-width: 280px;
}

.footer-meta {
  font-size: 15px;
  color: #777;
  margin-top: 8px;
}

/* ===================================
   RESPONSIVE FOOTER
   =================================== */

@media (max-width: 1200px) {
  .footer-inner {
    gap: 60px;
    padding: 0 32px;
  }
}

@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  
  .footer-col h3 {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    padding: 60px 0 30px;
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }
  
  .footer-col {
    text-align: center;
  }
  
  .footer-motto {
    margin: 0 auto 20px;
    text-align: center;
  }
  
  .footer-col h3 {
    font-size: 24px;
  }
  
  .footer-col h4 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .footer-col p,
  .footer-col li {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .site-footer {
    padding: 50px 0 25px;
  }
  
  .footer-inner {
    padding: 0 20px;
    gap: 35px;
  }
  
  .footer-col h3 {
    font-size: 22px;
  }
  
  .footer-col h4 {
    font-size: 14px;
  }
}
/* ===================================
   NAVIGATION FIX - TOP POSITION
   =================================== */

/* Reset and fix nav positioning */
.nav {
    position: absolute; /* CHANGE THIS TO ABSOLUTE */
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: transparent;
}

@media (min-width: 768px) {
    .nav {
        padding: 32px 48px;
    }
}

@media (min-width: 1024px) {
    .nav {
        padding: 32px 80px;
    }
}

/* Logo styling */
.logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-style: italic;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

@media (min-width: 768px) {
    .logo {
        font-size: 1.875rem;
    }
}

.logo:hover {
    opacity: 0.9;
}

/* Navigation links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 0.875rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: #ffffff;
}

.nav-active {
    color: #ffffff !important;
    font-weight: 600;
}

/* Optional: Add underline effect */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-active::after {
    width: 100%;
}

/* ===================================
   HERO SPACING FIX
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* Add padding for nav */
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 0; /* Adjusted padding */
}

/* ===================================
   RESPONSIVE ADJUSTMENTS
   =================================== */
@media (max-width: 768px) {
    .nav {
        padding: 20px 24px;
    }
    
    .nav-links {
        gap: 24px;
    }
    
    .hero {
        padding-top: 60px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 16px 20px;
    }
    
    .nav-links {
        gap: 20px;
        font-size: 0.8125rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .hero {
        padding-top: 50px;
    }
    
    .hero-content {
        padding: 30px 0;
    }
}


