:root {
    --primary: #8B2D17; /* Deep Terracotta */
    --primary-light: #B44D34;
    --primary-dark: #5C1D0E;
    --secondary: #FBEDD6; /* Warm Turmeric Cream */
    --accent: #E1AD01; /* Deep Saffron/Gold */
    --stone: #4A4A4A; /* Temple Stone Gray */
    --text-dark: #1A1210;
    --text-light: #fefefe;
    --bg-light: #FAF7F2;
    --bg-dark-glass: rgba(26, 18, 16, 0.85);
    --card-bg: rgba(255, 255, 255, 0.95);
    
    --grad-gold: linear-gradient(135deg, #E1AD01 0%, #FFD700 100%);
    --grad-heritage: linear-gradient(135deg, #8B2D17 0%, #B44D34 100%);
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --font-tamil: 'Mukta Malar', sans-serif;

    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);

    --shadow-soft: 0 12px 40px rgba(139, 45, 23, 0.08);
    --shadow-premium: 0 40px 100px rgba(139, 45, 23, 0.15);
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-light);
    /* South Indian (Dravidian) Temple Backdrop Pattern */
    background-image: 
        linear-gradient(rgba(250, 247, 242, 0.95), rgba(250, 247, 242, 0.95)),
        url('data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTAwIDE2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNDggNSBRNTAgMCA1MiA1IEw1MCA4IFogTTQwIDEwIEg2MCBMNjIgMjUgSDM4IFogTTM1IDMwIEg2NSBMNjggNTAgSDMyIFogTTMwIDU1IEg3MCBMNzQgODAgSDI2IFogTTI1IDg1IEg3NSBMODAgMTE1IEgyMCBaIE0yMCAxMjAgSDgwIEw4OCAxNTUgSDEyIFoiIGZpbGw9IiM4QjJEMTciIGZpbGwtb3BhY2l0eT0iMC4wNCIvPjwvc3ZnPg==');
    background-size: cover, 250px;
    background-position: center, center;
    background-repeat: no-repeat, repeat;
    background-attachment: fixed;
    line-height: 1.7;
    position: relative;
}

body.lang-ta {
    --font-body: var(--font-tamil);
    --font-heading: var(--font-tamil);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--primary-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

/* Glassmorphism Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(253, 250, 246, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar.scrolled {
    background: rgba(253, 250, 246, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-text h2 {
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
}

.brand-text span {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.footer-logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition-fast);
}

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

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background: var(--secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
}

.lang-switcher a {
    color: var(--text-dark);
    opacity: 0.6;
}

.lang-switcher .active {
    color: var(--primary-dark);
    opacity: 1;
}

.lang-switcher a::after {
    display: none;
}

.lang-switcher a:hover {
    opacity: 1;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* Hero Section */
/* Sections */
.hero-section {
    min-height: 100vh;
    padding: 160px 2rem 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    align-items: center;
}

/* Tribal Pattern Accents */
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: url('/assets/kolam.png') center/contain no-repeat;
    opacity: 0.1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.badge {
    background: var(--secondary);
    color: var(--primary);
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    display: inline-block;
    border: 1px solid rgba(139, 45, 23, 0.1);
    box-shadow: 0 5px 15px rgba(139, 45, 23, 0.05);
    opacity: 0;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 5.5rem);
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 2rem;
    position: relative;
    opacity: 0;
}

.hero-content h1::before {
    content: "Aavudai";
    position: absolute;
    top: -40px;
    left: 0;
    font-size: 8rem;
    color: rgba(139, 45, 23, 0.03);
    z-index: -1;
    font-weight: 900;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--stone);
    margin-bottom: 3rem;
    max-width: 600px;
    line-height: 1.8;
    opacity: 0;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
}

.btn {
    padding: 1.1rem 2.5rem;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.btn-primary {
    background: var(--grad-heritage);
    color: var(--text-light);
    box-shadow: 0 20px 40px rgba(139, 45, 23, 0.2);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 30px 60px rgba(139, 45, 23, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

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

.hero-image-wrap {
    position: relative;
}

.glass-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(225, 173, 1, 0.2);
    top: -100px;
    right: -50px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(139, 45, 23, 0.1);
    bottom: -50px;
    left: -50px;
}

.hero-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 40px;
    background: url('/assets/hero_dish.png') center/cover no-repeat;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-image-placeholder:hover {
    transform: perspective(1400px) rotateY(-5deg) rotateX(5deg);
}

.hero-image-placeholder::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.2), transparent);
}

/* Floating Culinary Elements Overlay */
.floaty-element {
    position: absolute;
    z-index: 20;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
    pointer-events: none;
}

.floaty-food-1 { top: 10%; left: -15%; animation: float 6s ease-in-out infinite; }
.floaty-food-2 { bottom: 20%; right: -10%; animation: float 8s ease-in-out infinite reverse; }

.food-orb {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 10px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: -60px;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2.5rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 30;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.floaty-spice {
    bottom: 15%;
    left: 10%;
    width: 60px;
    opacity: 0.5;
    animation-delay: -3s;
    z-index: 5;
    pointer-events: none;
}

.food-orb {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    background: #fff;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.floaty-food-1 {
    top: 5%;
    right: -5%;
    animation: float-orb 8s ease-in-out infinite;
}

.floaty-food-2 {
    bottom: 20%;
    left: -8%;
    animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-30px) rotate(10deg) scale(1.05); }
}

@keyframes float-slow {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(15px, -15px) rotate(5deg); }
    66% { transform: translate(-10px, 10px) rotate(-5deg); }
}

.floating-badge {
    position: absolute;
    bottom: 40px;
    left: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: fadeInUp 1s 0.8s ease forwards;
    opacity: 0;
    z-index: 2;
}

.badge-icon {
    font-size: 2rem;
    background: var(--bg-light);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(157, 60, 37, 0.1);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-text strong {
    color: var(--primary-dark);
    font-size: 1.1rem;
}

.badge-text span {
    font-size: 0.85rem;
    color: #666;
}

/* About Section */
.about-section {
    padding: 120px 2rem;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrap {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-blob {
    position: absolute;
    width: min(400px, 80vw); 
    height: min(400px, 80vw);
    background: var(--grad-gold);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: blob-float 10s infinite;
}

.about-illustration {
    max-width: 500px;
    width: 100%; /* Fix: ensure image scales down on mobile */
    height: auto;
    z-index: 10;
    filter: drop-shadow(0 40px 60px rgba(139, 45, 23, 0.1));
    border-radius: 40px;
}

.about-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 3rem;
    line-height: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(139, 45, 23, 0.05);
    transition: transform 0.4s ease;
}

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

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    color: var(--stone);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(157, 60, 37, 0.1);
    background: rgba(255, 255, 255, 0.9);
}

.stat-card h3 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-card p {
    font-weight: 600;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Featured Delicacies Redesign */
.menu-section {
    padding: 120px 2rem;
    background: var(--bg-light);
}

.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cuisine-grid .cuisine-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.cuisine-grid .cuisine-card:nth-child(5) { grid-column: span 2; }

.cuisine-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cuisine-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-premium);
}

.cuisine-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.cuisine-card:hover img {
    transform: scale(1.1);
}

.cuisine-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(26, 18, 16, 0.9) 0%, rgba(26, 18, 16, 0.4) 50%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.cuisine-card:hover .cuisine-overlay {
    transform: translateY(0);
}

.cuisine-overlay h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
    color: var(--accent);
}

.cuisine-overlay p {
    font-size: 1rem;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 400px;
}

.dish-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(225, 173, 1, 0.9);
    color: var(--text-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    z-index: 10;
}

@media (max-width: 992px) {
    .cuisine-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 250px;
    }
    .cuisine-grid .cuisine-card:nth-child(1) { grid-column: span 2; }
}

@media (max-width: 600px) {
    .cuisine-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    .cuisine-grid .cuisine-card:nth-child(1) { grid-column: span 1; }
    .cuisine-grid .cuisine-card:nth-child(5) { grid-column: span 1; }
}

/* Responsive fixes */
@media (max-width: 992px) {
    .modern-menu-container {
        grid-template-columns: 1fr;
    }

    .modern-menu-preview {
        display: none;
    }
}

/* Location & Reviews Section */
.location-reviews {
    padding: 6rem 2rem;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Reviews Side */
.reviews-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-dark);
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #555;
}

.google-rating .score {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.reviews-slider {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 35px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(157, 60, 37, 0.12);
}

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

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 1.2rem;
}

.reviewer-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    color: var(--primary-dark);
}

.review-time {
    font-size: 0.9rem;
    color: #888;
}

.google-icon {
    margin-left: auto;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-image: url('https://upload.wikimedia.org/wikipedia/commons/5/53/Google_%22G%22_Logo.svg');
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
}

.review-stars {
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    color: #444;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Map Side */
.map-wrapper {
    width: 100%;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    border: 10px solid #ffffff;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.map-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

@media (max-width: 992px) {
    .location-container {
        grid-template-columns: 1fr;
    }

    .map-wrapper {
        height: 400px;
        transform: none;
    }
}

/* Footer Redesign - Premium Brand Hub */
.footer {
    background: #1a1210; /* Deep Ceramic Brown */
    color: white;
    padding: 100px 2rem 50px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 5rem;
    position: relative;
    z-index: 2;
}

.footer-brand .footer-logo {
    height: 60px;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    max-width: 320px;
    font-size: 1.05rem;
}

.footer-col h3 {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    font-weight: 700;
}

.footer-links a, .footer-contact p {
    display: block;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 1.05rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(8px);
}

.footer-socials {
    display: flex;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255,255,255,0.08);
}

.social-icon:hover {
    background: var(--primary);
    transform: translateY(-8px) rotate(5deg);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(139, 45, 23, 0.3);
}

.footer-bottom {
    margin-top: 8rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 10rem;
    }

    .cta-group {
        justify-content: center;
    }

    .hero-image-wrap {
        height: 400px;
    }

    .section-container {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

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

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(253, 250, 246, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        padding: 4rem 2rem;
        gap: 2rem;
        box-shadow: none;
        clip-path: circle(0% at 90% 40px);
        transition: clip-path 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
        pointer-events: none;
        z-index: 999;
    }

    .nav-links.active {
        clip-path: circle(150% at 90% 40px);
        pointer-events: auto;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.2;
    }

    .cta-group {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-group .btn {
        width: 100%;
        text-align: center;
    }

    .hero-image-wrap {
        margin-top: 2rem;
        transform: scale(0.9);
    }

    .heritage-badge {
        bottom: -20px;
        right: 50%;
        transform: translateX(50%);
        width: 90%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}