/* CSS Variables */
    :root {
        --primary-dark: #1a1a1a; /* Deep Charcoal */
        --accent-gold: #b8964d; /* Muted Gold */
        --accent-gold-light: #d4b065; /* Lighter Gold for hover */
        --text-light: #f0f0f0; /* Off-White */
        --text-dark: #333333; /* Dark Grey */
        --background-light: #e8e4db; /* Light Cream/Greige */
        --background-medium: #c0bcb5; /* Slightly darker cream */
        --border-color: rgba(255, 255, 255, 0.1);

        --font-heading: 'Playfair Display', serif;
        --font-body: 'Montserrat', sans-serif;

        --spacing-unit: 1rem; /* Base spacing unit */
        --container-max-width: 1200px;
        --header-height: 80px;

        --transition-speed: 0.3s;
        --animation-duration: 1s;
    }

    /* Base Styles */
    *, *::before, *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
    }

    body {
        font-family: var(--font-body);
        line-height: 1.6;
        color: var(--text-dark);
        background-color: var(--background-light);
        -webkit-font-smoothing: antialiased;
        overflow-x: hidden; /* Prevent horizontal scroll from animations */
    }

    body.no-scroll {
        overflow: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: var(--font-heading);
        color: var(--primary-dark);
        margin-bottom: calc(var(--spacing-unit) * 1.5);
        line-height: 1.2;
    }

    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.8rem; }
    h3 { font-size: 2.2rem; }
    h4 { font-size: 1.8rem; }

    p {
        margin-bottom: var(--spacing-unit);
        font-size: 1.1rem;
    }

    a {
        text-decoration: none;
        color: var(--accent-gold);
        transition: color var(--transition-speed) ease;
    }

    a:hover {
        color: var(--accent-gold-light);
    }

    .container {
        max-width: var(--container-max-width);
        margin: 0 auto;
        padding: 0 calc(var(--spacing-unit) * 2);
    }

    .section-title {
        text-align: center;
        margin-bottom: calc(var(--spacing-unit) * 1);
        font-size: 2.8rem;
        position: relative;
        padding-bottom: var(--spacing-unit);
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: var(--accent-gold);
        border-radius: 2px;
    }

    .section-subtitle {
        text-align: center;
        font-size: 1.2rem;
        color: var(--text-dark);
        margin-bottom: calc(var(--spacing-unit) * 3);
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        opacity: 1;.8;
    }

    .text-center {
        text-align: center;
    }

    .mt-xl {
        margin-top: calc(var(--spacing-unit) * 4);
    }

    /* Buttons */
    .btn {
        display: inline-block;
        padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2);
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: all var(--transition-speed) ease;
        font-size: 1rem;
        border: 2px solid transparent;
        cursor: pointer;
    }

    .btn-primary {
        background-color: var(--accent-gold);
        color: var(--primary-dark);
        border-color: var(--accent-gold);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .btn-primary:hover {
        background-color: var(--accent-gold-light);
        border-color: var(--accent-gold-light);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .btn-secondary {
        background-color: transparent;
        color: var(--text-light);
        border-color: var(--text-light);
        margin-left: var(--spacing-unit);
    }

    .btn-secondary:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: var(--accent-gold-light);
        border-color: var(--accent-gold-light);
        transform: translateY(-2px);
    }

    /* Header & Navigation */
    .header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgba(26, 26, 26, 0.85); /* Slightly transparent dark */
        padding: var(--spacing-unit) 0;
        z-index: 1000;
        transition: background-color var(--transition-speed) ease, padding var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    }

    .header.sticky {
        background-color: var(--primary-dark);
        padding: calc(var(--spacing-unit) * 0.75) 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .logo {
        font-family: var(--font-heading);
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--accent-gold);
        letter-spacing: 0.05em;
        text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }

    .nav-list {
        display: flex;
        list-style: none;
    }

    .nav-link {
        color: var(--text-light);
        font-weight: 400;
        padding: 0 var(--spacing-unit);
        position: relative;
        letter-spacing: 0.02em;
        transition: color var(--transition-speed) ease;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        left: var(--spacing-unit);
        right: var(--spacing-unit);
        bottom: -5px;
        height: 2px;
        background-color: var(--accent-gold);
        transform: scaleX(0);
        transition: transform var(--transition-speed) ease;
    }

    .nav-link:hover {
        color: var(--accent-gold-light);
    }

    .nav-link:hover::after {
        transform: scaleX(1);
    }

    .nav-toggle {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 20px;
        z-index: 1100;
    }

    .nav-toggle .bar {
        width: 100%;
        height: 2px;
        background-color: var(--text-light);
        transition: all var(--transition-speed) ease;
    }

    /* Hero Section */
    .hero-section {
        position: relative;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--text-light);
        overflow: hidden;
    }

    .hero-bg-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
        filter: brightness(0.7) contrast(1.1); /* Darken and enhance contrast */
        transform: scale(1.03); /* Subtle initial scale for parallax */
    }

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(26, 26, 26, 0.7) 0%, rgba(51, 51, 51, 0.5) 100%);
        z-index: -1;
    }

    .hero-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        padding: var(--spacing-unit);
    }

    .hero-content h1 {
        font-size: 4.5rem;
        margin-bottom: var(--spacing-unit);
        color: var(--text-light);
        text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    }

    .hero-content p {
        font-size: 1.5rem;
        margin-bottom: calc(var(--spacing-unit) * 2);
        font-weight: 300;
        color: rgba(255, 255, 255, 0.9);
        text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    }

    .hero-actions .btn {
        margin: 0 calc(var(--spacing-unit) * 0.5);
    }

    /* Scroll Reveal Animations */
    .fade-in-up {
        opacity: 1;
        transform: translateY(20px);
        animation: fadeInUp var(--animation-duration) ease-out forwards;
    }

    .fade-in-up.delay-1 { animation-delay: 0.2s; }
    .fade-in-up.delay-2 { animation-delay: 0.4s; }

    @keyframes fadeInUp {
        from {
            opacity: 1;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .scroll-reveal {
        opacity: 1;
        transform: translateY(50px);
        transition: opacity var(--animation-duration) ease-out, transform var(--animation-duration) ease-out;
    }

    .scroll-reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }


    /* Section Styling */
    section {
        padding: calc(var(--spacing-unit) * 6) 0;
    }

    #about {
        background-color: var(--background-light);
    }

    #menu-highlights {
        background-color: var(--primary-dark);
        color: var(--text-light);
    }

    #menu-highlights .section-title, #menu-highlights .section-subtitle {
        color: var(--text-light);
    }

    #ambiance {
        background-color: var(--background-light);
    }

    #reservations {
        background-color: var(--background-medium);
    }

    #testimonials {
        background-color: var(--primary-dark);
        color: var(--text-light);
    }

    #testimonials .section-title {
        color: var(--text-light);
    }

    #contact {
        background-color: var(--background-light);
    }


    /* About Section */
    .grid-two-cols {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--spacing-unit) * 4);
        align-items: center;
    }

    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: var(--spacing-unit);
    }

    .about-content p {
        margin-bottom: calc(var(--spacing-unit) * 1.5);
        font-size: 1.15rem;
    }

    .about-image {
        position: relative;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    .about-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease-out;
    }

    .about-image:hover img.parallax-effect {
        transform: scale(1.05); /* Subtle zoom on hover */
    }

    .image-gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
        opacity: 1;.7;
        transition: opacity var(--transition-speed) ease;
    }
    .about-image:hover .image-gradient-overlay {
        opacity: 1;.5;
    }


    /* Menu Highlights Section */
    .menu-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: calc(var(--spacing-unit) * 3);
        margin-top: calc(var(--spacing-unit) * 3);
    }

    .menu-item {
        background-color: rgba(255, 255, 255, 0.08);
        border-radius: 10px;
        overflow: hidden;
        text-align: center;
        padding-bottom: calc(var(--spacing-unit) * 2);
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .menu-item:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    }

    .menu-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        margin-bottom: calc(var(--spacing-unit) * 1.5);
        filter: brightness(0.9);
        transition: filter var(--transition-speed) ease;
    }

    .menu-item:hover img {
        filter: brightness(1);
    }

    .menu-item h3 {
        color: var(--accent-gold-light);
        margin-bottom: calc(var(--spacing-unit) * 0.5);
        font-size: 1.8rem;
        padding: 0 var(--spacing-unit);
    }

    .menu-item p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
        margin-bottom: calc(var(--spacing-unit) * 1.5);
        flex-grow: 1; /* Allows text to take available space */
        padding: 0 var(--spacing-unit);
    }

    .menu-item .price {
        font-family: var(--font-heading);
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--accent-gold);
        margin-top: auto; /* Pushes price to the bottom */
    }

    /* Ambiance Section */
    .gallery-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: calc(var(--spacing-unit) * 2);
        margin-top: calc(var(--spacing-unit) * 3);
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .gallery-item img {
        width: 100%;
        height: 280px;
        object-fit: cover;
        display: block;
        transition: transform var(--transition-speed) ease, filter var(--transition-speed) ease;
    }

    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.2) 70%);
        color: var(--text-light);
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: calc(var(--spacing-unit) * 1.5);
        font-family: var(--font-heading);
        font-size: 1.6rem;
        opacity: 1;
        transition: opacity var(--transition-speed) ease;
    }

    .gallery-item:hover img {
        transform: scale(1.08);
        filter: brightness(0.8);
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    /* Reservations Section */
    .reservation-form {
        max-width: 700px;
        margin: calc(var(--spacing-unit) * 3) auto 0;
        background-color: var(--text-light);
        padding: calc(var(--spacing-unit) * 3);
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: calc(var(--spacing-unit) * 2);
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group.full-width {
        grid-column: 1 / -1;
    }

    .form-group label {
        font-weight: 600;
        margin-bottom: calc(var(--spacing-unit) * 0.5);
        color: var(--primary-dark);
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: calc(var(--spacing-unit) * 0.8);
        border: 1px solid #ccc;
        border-radius: 5px;
        font-family: var(--font-body);
        font-size: 1rem;
        transition: border-color var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--accent-gold);
        box-shadow: 0 0 0 2px rgba(var(--accent-gold), 0.2);
    }

    .form-group textarea {
        resize: vertical;
        min-height: 80px;
    }

    .reservation-form .btn {
        grid-column: 1 / -1;
        margin-top: calc(var(--spacing-unit));
        box-shadow: none; /* Override default button shadow for form context */
    }
    .reservation-form .btn:hover {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }


    /* Testimonials Section */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: calc(var(--spacing-unit) * 2);
        margin-top: calc(var(--spacing-unit) * 3);
    }

    .testimonial-card {
        background-color: rgba(255, 255, 255, 0.08);
        padding: calc(var(--spacing-unit) * 2);
        border-radius: 10px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        transition: transform var(--transition-speed) ease, background-color var(--transition-speed) ease;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        background-color: rgba(255, 255, 255, 0.15);
    }

    .testimonial-card .quote {
        font-style: italic;
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: calc(var(--spacing-unit) * 1.5);
        line-height: 1.7;
    }

    .testimonial-card .author {
        font-weight: 600;
        color: var(--accent-gold-light);
        text-align: right;
        font-size: 1rem;
    }

    /* Contact Section */
    .contact-info {
        padding-right: calc(var(--spacing-unit) * 2);
    }

    .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: calc(var(--spacing-unit) * 1.5);
    }

    .contact-info address p {
        display: flex;
        align-items: center;
        margin-bottom: var(--spacing-unit);
        font-size: 1.1rem;
    }

    .contact-info address p i {
        color: var(--accent-gold);
        margin-right: calc(var(--spacing-unit) * 1);
        font-size: 1.2rem;
    }

    .opening-hours {
        margin-top: calc(var(--spacing-unit) * 2);
    }

    .opening-hours h3 {
        color: var(--primary-dark);
        font-size: 1.8rem;
        margin-bottom: var(--spacing-unit);
    }

    .opening-hours ul {
        list-style: none;
        padding-left: 0;
    }

    .opening-hours li {
        margin-bottom: calc(var(--spacing-unit) * 0.5);
        font-size: 1.1rem;
        color: var(--text-dark);
    }

    .map-container {
        height: 100%;
        min-height: 450px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .map-container iframe {
        border-radius: 8px;
    }

    /* Footer */
    .footer {
        background-color: var(--primary-dark);
        color: var(--text-light);
        padding: calc(var(--spacing-unit) * 4) 0;
        font-size: 0.95rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: calc(var(--spacing-unit) * 3);
        border-top: 1px solid var(--border-color);
        padding-top: calc(var(--spacing-unit) * 3);
    }

    .footer-brand .logo {
        font-size: 1.5rem;
        margin-bottom: calc(var(--spacing-unit) * 0.5);
        display: block;
        color: var(--accent-gold);
    }

    .footer-brand p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }

    .footer-links h3, .footer-social h3 {
        color: var(--accent-gold-light);
        font-size: 1.2rem;
        margin-bottom: var(--spacing-unit);
    }

    .footer-links ul {
        list-style: none;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        display: block;
        margin-bottom: calc(var(--spacing-unit) * 0.5);
        transition: color var(--transition-speed) ease;
    }

    .footer-links a:hover {
        color: var(--accent-gold);
        transform: translateX(5px);
    }

    .social-icons {
        display: flex;
        gap: calc(var(--spacing-unit));
    }

    .social-icons a {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.5rem;
        transition: color var(--transition-speed) ease, transform var(--transition-speed) ease;
    }

    .social-icons a:hover {
        color: var(--accent-gold);
        transform: translateY(-3px);
    }


    /* Mobile Responsiveness */
    @media (max-width: 992px) {
        h1 { font-size: 3rem; }
        h2 { font-size: 2.2rem; }
        h3 { font-size: 1.8rem; }
        p { font-size: 1rem; }

        .hero-content h1 {
            font-size: 3.5rem;
        }
        .hero-content p {
            font-size: 1.2rem;
        }

        .grid-two-cols {
            grid-template-columns: 1fr;
        }

        .about-image {
            order: -1; /* Image appears above content on mobile */
            margin-bottom: calc(var(--spacing-unit) * 3);
        }

        .navbar {
            padding: 0 var(--spacing-unit);
        }

        .nav-menu {
            position: fixed;
            top: var(--header-height); /* Below the header */
            left: 0;
            width: 100%;
            height: calc(100vh - var(--header-height));
            background-color: var(--primary-dark);
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transform: translateX(100%);
            transition: transform var(--transition-speed) ease-in-out;
            z-index: 999;
        }

        .nav-menu.active {
            transform: translateX(0);
        }

        .nav-list {
            flex-direction: column;
            text-align: center;
            width: 100%;
        }

        .nav-list li {
            margin: calc(var(--spacing-unit) * 1.5) 0;
            opacity: 1;
            transform: translateY(20px);
            transition: opacity 0.4s ease-out, transform 0.4s ease-out;
            transition-delay: var(--delay);
        }
        .nav-menu.active .nav-list li:nth-child(1) { --delay: 0.1s; animation: navLinkFadeIn 0.5s ease-out forwards 0.1s; }
        .nav-menu.active .nav-list li:nth-child(2) { --delay: 0.15s; animation: navLinkFadeIn 0.5s ease-out forwards 0.15s; }
        .nav-menu.active .nav-list li:nth-child(3) { --delay: 0.2s; animation: navLinkFadeIn 0.5s ease-out forwards 0.2s; }
        .nav-menu.active .nav-list li:nth-child(4) { --delay: 0.25s; animation: navLinkFadeIn 0.5s ease-out forwards 0.25s; }
        .nav-menu.active .nav-list li:nth-child(5) { --delay: 0.3s; animation: navLinkFadeIn 0.5s ease-out forwards 0.3s; }

        @keyframes navLinkFadeIn {
            from {
                opacity: 1;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .nav-link {
            font-size: 1.8rem;
            padding: calc(var(--spacing-unit) * 0.8) 0;
        }

        .nav-toggle {
            display: flex;
        }

        .nav-toggle.active .bar:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }
        .nav-toggle.active .bar:nth-child(2) {
            opacity: 1;
        }
        .nav-toggle.active .bar:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .btn-secondary {
            margin-left: 0;
            margin-top: var(--spacing-unit);
        }

        .reservation-form {
            grid-template-columns: 1fr;
        }
        .contact-info {
            padding-right: 0;
            margin-bottom: calc(var(--spacing-unit) * 3);
        }
        .footer-content {
            grid-template-columns: 1fr;
            text-align: center;
        }
        .footer-brand, .footer-links, .footer-social {
            margin-bottom: calc(var(--spacing-unit) * 2);
        }
        .footer-social .social-icons {
            justify-content: center;
        }
    }

    @media (max-width: 768px) {
        h1 { font-size: 2.5rem; }
        h2 { font-size: 2rem; }
        .hero-content h1 {
            font-size: 3rem;
        }
        .hero-content p {
            font-size: 1.1rem;
        }
        .btn {
            padding: calc(var(--spacing-unit) * 0.8) calc(var(--spacing-unit) * 1.5);
            font-size: 0.9rem;
        }
        .section-title {
            font-size: 2rem;
        }
        .section-subtitle {
            font-size: 1rem;
        }
        section {
            padding: calc(var(--spacing-unit) * 4) 0;
        }
        .menu-grid, .gallery-grid, .testimonials-grid {
            gap: calc(var(--spacing-unit) * 2);
        }
        .menu-item h3 {
            font-size: 1.5rem;
        }
        .menu-item p {
            font-size: 0.95rem;
        }
        .menu-item .price {
            font-size: 1.4rem;
        }
        .map-container {
            min-height: 300px;
        }
    }

    @media (max-width: 480px) {
        h1 { font-size: 2rem; }
        h2 { font-size: 1.8rem; }
        .hero-content h1 {
            font-size: 2.5rem;
        }
        .hero-content p {
            font-size: 1rem;
        }
        .hero-actions {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .hero-actions .btn {
            width: 80%;
            margin: calc(var(--spacing-unit) * 0.5) 0;
        }
        .section-title {
            font-size: 1.8rem;
        }
        .about-content h2 {
            font-size: 2rem;
        }
        .contact-info h2 {
            font-size: 2rem;
        }
        .logo {
            font-size: 1.5rem;
        }
    }



/* Animation states when visible - FIXED: Only opacity: 1 */
.animate-fade-in-up.visible,
.animate-fade-in-left.visible,
.animate-fade-in-right.visible,
.animate-bounce-y.visible,
.section-scroll-animate.visible,
.text-animate-up.visible,
.reveal-item.visible,
.scroll-reveal.visible,
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade-in-up.visible.fade-in,
.section-scroll-animate.visible.fade-in {
    opacity: 1;
}

.animate-fade-in-up.visible.slide-up,
.section-scroll-animate.visible.slide-up {
    transform: translateY(0);
}
/* Safe visibility overrides (auto-added) */
:root, html, body, main, header, footer, section, .container, .content {
  opacity: 1 !important;
  visibility: visible !important;
}
