:root {
    /* Palette 100% Restaurant (Dominante Vert Émeraude) */
    --primary-color: #C5B358;
    /* Bois clair pour détails/texte */
    --secondary-color: #10594C;
    /* Vert Émeraude des murs */

    --text-color: #f1f5f9;

    /* FOND DU SITE : Vert très sombre (Mur végétal sombre) */
    --bg-color: #051410;
    --dark-bg: #020A08;
    /* Pour le footer/menu */

    --white: #ffffff;
    --gold: #C5B358;
    --emerald: #10594C;
    --transition-slow: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Cinzel', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gold);
    z-index: 100002;
    transition: width 0.1s ease-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
    /* Navbar + Sub-nav height approx */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Texture Overlay for Premium Feel */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 100000;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--white);
    letter-spacing: 2px;
    text-rendering: optimizeLegibility;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    vertical-align: middle;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.btn:active {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    /* Blanc sur fond vert */
    border: 2px solid transparent;
    /* Matches the 2px border of secondary button to prevent height shift */
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: #157060;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    width: 205.94px;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #051410;
    /* HARDCODED Dark Emerald Green */
    padding: 15px 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    border: 1px solid var(--primary-color);
    padding: 8px 20px;
    border-radius: 8px;
    color: var(--primary-color) !important;
}

.btn-nav:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    justify-content: center;
    /* Ensures the pseudo-element doesn't overflow */
}

/* Background Image with "Retouching" Filters */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/header_new_upscaled.png?v=ultimate') no-repeat center center/cover;
    background-attachment: fixed;
    /* Parallax effect */
    /* COLOR GRADING: Darkens slightly, boosts contrast, warms up colors */
    /* filter: brightness(0.8) contrast(1.15) saturate(1.1) sepia(0.1); */
    /* Filters removed as requested */
    z-index: 0;
    transition: transform 0.5s ease;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient overlay - Very light to let photo show through */
    background: linear-gradient(to bottom, rgba(5, 20, 16, 0.1), rgba(5, 20, 16, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Ensures content sits above the overlay and image */
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-color);
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
    position: relative;
    display: block;
    text-align: center;
    width: 100%;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 50px;
    font-style: italic;
}

/* About Section */
.about {
    background-color: var(--bg-color);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.features {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
}

.feature span {
    font-weight: 700;
    font-size: 0.9rem;
}

.about-image {
    position: relative;
}

.img-placeholder {
    width: 100%;
    height: 500px;
    /* Increased height to better show the vertical image */
    background-color: #1e293b;
    border: 2px solid var(--primary-color);
    position: relative;
    border-radius: 4px;
    /* Slight radius */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Add depth */
}



#about-img-placeholder {
    background: url('images/neon_wall_upscaled.png') no-repeat center center/cover;
    /* RETOUCHING: Makes the neon glow pop and deepens the blacks */
    /* filter: contrast(1.2) saturate(1.3) brightness(0.95); */
    /* Filters removed as requested */
    transition: transform 0.5s ease;
}

#about-img-placeholder:hover {
    transform: scale(1.02);
    /* Subtle zoom effect on hover */
}

/* Menu Section */
.menu {
    position: relative;
    background-color: transparent;
    /* Pas de fond, juste l'image */
    overflow: hidden;
}

/* Très subtil background de plats - dynamique selon catégorie */
.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/bg_entrees_upscaled.png') no-repeat center center/cover;
    /* Default */
    opacity: 1.0;
    /* Image 100% visible */
    /* filter: brightness(0.6) saturate(0.6) blur(1px); */
    /* Filters removed, keeping only opacity for background effect */
    z-index: 0;
    transition: opacity 0.5s ease;
    /* Transition douce */
}

/* Backgrounds spécifiques par catégorie */
.menu[data-category="entrees"]::before {
    background-image: url('images/bg_entrees_upscaled.png');
}

.menu[data-category="pizzas"]::before {
    background-image: url('images/bg_pizza_upscaled.png');
}

.menu[data-category="pates"]::before {
    background-image: url('images/bg_pates_upscaled.png');
}

.menu[data-category="streetfood"]::before {
    background-image: url('images/bg_streetfood_upscaled.png');
}

.menu[data-category="poissons"]::before {
    background-image: url('images/bg_poissons_upscaled.png');
}

.menu[data-category="japonais"]::before {
    background-image: url('images/bg_japonais_upscaled.png');
}

.menu[data-category="menus"]::before {
    background-image: url('images/bg_menus_upscaled.png');
}

.menu[data-category="desserts"]::before {
    background-image: url('images/bg_desserts_upscaled.png');
}


.menu>* {
    position: relative;
    z-index: 5;
    /* Au-dessus de l'image de fond */
}

/* Overlay noir pour assombrir l'image de fond */
.menu::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    /* Noir 70% pour meilleure lisibilité des plats */
    z-index: 1;
    pointer-events: none;
}


/* Sub-Nav Chips (Quick Filters) */
.sub-nav-chips {
    display: flex;
    justify-content: flex-start;
    /* Internal alignment safe for scrolling */
    width: fit-content;
    /* Shrink to fit content */
    max-width: 100%;
    /* Don't overflow parent */
    margin: 0 auto 20px;
    /* Center the container itself */
    overflow-x: auto;
    white-space: nowrap;
    gap: 10px;
    padding: 10px 20px 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    /* IE/Edge */
    position: sticky;
    top: 70px;
    background: transparent;
    /* Pas de fond - pas de carré */
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);

    /* Smooth scrolling */
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;

    /* Gradient indicators for scrollability */
    mask-image: linear-gradient(to right,
            transparent,
            black 20px,
            black calc(100% - 20px),
            transparent);
    -webkit-mask-image: linear-gradient(to right,
            transparent,
            black 20px,
            black calc(100% - 20px),
            transparent);
}

/* Wrapper pour chips avec boutons de navigation */
.chips-nav-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Boutons de navigation pour chips */
.chips-nav-btn {
    flex-shrink: 0;
    background: rgba(16, 89, 76, 0.9);
    color: var(--white);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    z-index: 11;
    display: none;
    /* Caché par défaut sur mobile */
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.chips-nav-btn:hover {
    background: rgba(16, 89, 76, 1);
    transform: scale(1.1);
}

/* Afficher les boutons sur desktop */
@media (min-width: 768px) {
    .chips-nav-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .chips-nav-wrapper .sub-nav-chips {
        flex: 1;
        margin: 0 0 20px 0;
    }
}

.sub-nav-chips .chip.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(176, 141, 72, 0.5);
}

.sub-nav-chips::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.chip {
    display: inline-block;
    padding: 8px 16px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    flex-shrink: 0;
}

.chip:hover {
    background: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 50px;
    overflow-x: auto;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.menu-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-color);
    padding: 10px 18px;
    font-family: var(--font-heading);
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.menu-category {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    padding: 40px 20px;
}

.menu-category.active {
    display: block;
    opacity: 1;
}

.category-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    margin-top: 20px;
    border-bottom: 1px solid rgba(200, 169, 126, 0.3);
    padding-bottom: 10px;
    color: var(--primary-color);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
}

.menu-item {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    /* Smoother transition */
    border-left: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    border-left: 3px solid var(--primary-color);
    background-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 12px;
    /* Increased spacing */
    /* Increased spacing */
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

/* Remove dashed line if no description follows */
.menu-item .item-header:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.item-header h3 {
    font-family: var(--font-body);
    font-size: 1.15rem;
    /* Base size increase */
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.5px;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    /* Larger price to attract attention */
    color: var(--primary-color);
    font-weight: 700;
}

.item-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    /* Lighter text for better readability */
    font-style: italic;
    line-height: 1.5;
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-color);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
    border-radius: 4px;
    filter: grayscale(100%) invert(92%) contrast(83%);
}

.map-placeholder {
    height: 400px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
}

/* Footer */
footer {
    background-color: #051410;
    /* HARDCODED Dark Emerald Green */
    padding: 50px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 20px;
}

.site-credit {
    font-size: 0.8rem;
    color: #475569;
    margin-top: 10px;
}

.site-credit a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-left: 4px;
}

.site-credit a:hover {
    color: var(--white);
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .about-container,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    /* Afficher toutes les catégories en grille sur mobile */
    .sub-nav-chips {
        flex-wrap: wrap;
        justify-content: center;
        white-space: normal;
        overflow-x: visible;
        width: 100%;
        gap: 8px;
        padding: 15px 10px 20px;
        mask-image: none;
        -webkit-mask-image: none;
    }

    .chip {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    /* Afficher tous les onglets menu sans scroll */
    .menu-tabs {
        flex-wrap: wrap;
        justify-content: center;
        overflow-x: visible;
        gap: 6px;
        padding: 10px 5px;
    }

    .tab-btn {
        padding: 6px 10px;
        font-size: 0.7rem;
        letter-spacing: 0;
        white-space: nowrap;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    /* Fix hero background on mobile - fixed attachment doesn't work on mobile browsers */
    .hero::before {
        background-attachment: scroll;
        /* Override fixed attachment */
        background-position: center center;
        background-size: cover;
    }

    .hero {
        min-height: 500px;
        /* Reduce min-height on mobile */
    }
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--secondary-color);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    color: var(--white);
}

/* ============================================
   PREMIUM VISUAL ENHANCEMENTS
   La Marina — Gastronomic Experience
   ============================================ */

/* === HERO PREMIUM ANIMATIONS === */

/* Text reveal animation with blur */
.hero h1 {
    animation: heroTextReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero p {
    animation: heroFadeIn 1s ease-out 0.5s forwards;
    opacity: 0;
}

.hero-btns {
    animation: heroFadeIn 1s ease-out 0.8s forwards;
    opacity: 0;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
}

.scroll-indicator::before {
    content: '';
    display: block;
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 13px;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 2px;
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(12px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 24px;
    }
}

/* Subtle grain texture overlay */
.hero-overlay::after {
    content: '';
    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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    mix-blend-mode: overlay;
}

/* === PREMIUM BUTTON EFFECTS === */

/* Shine effect on primary buttons */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

/* Tab buttons animated underline */
.tab-btn {
    position: relative;
    overflow: hidden;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
}

.tab-btn:hover::after,
.tab-btn.active::after {
    width: 100%;
}

/* === SCROLL REVEAL SYSTEM === */

/* Base reveal - fade up */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade in from left */
.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade in from right */
.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale in from small */
.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
}

/* Blur in effect */
.reveal-blur {
    opacity: 0;
    filter: blur(15px);
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-blur.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Rotate in effect */
.reveal-rotate {
    opacity: 0;
    transform: rotate(-5deg) translateY(40px);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-rotate.visible {
    opacity: 1;
    transform: rotate(0) translateY(0);
}

/* Staggered children reveal */
.reveal-stagger>* {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.visible>*:nth-child(1) {
    transition-delay: 0.05s;
}

.reveal-stagger.visible>*:nth-child(2) {
    transition-delay: 0.12s;
}

.reveal-stagger.visible>*:nth-child(3) {
    transition-delay: 0.19s;
}

.reveal-stagger.visible>*:nth-child(4) {
    transition-delay: 0.26s;
}

.reveal-stagger.visible>*:nth-child(5) {
    transition-delay: 0.33s;
}

.reveal-stagger.visible>*:nth-child(6) {
    transition-delay: 0.40s;
}

.reveal-stagger.visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* Menu items staggered reveal */
.menu-grid.reveal-active .menu-item {
    opacity: 0;
    transform: translateY(30px);
    animation: menuItemReveal 0.6s ease forwards;
}

.menu-grid.reveal-active .menu-item:nth-child(1) {
    animation-delay: 0.05s;
}

.menu-grid.reveal-active .menu-item:nth-child(2) {
    animation-delay: 0.1s;
}

.menu-grid.reveal-active .menu-item:nth-child(3) {
    animation-delay: 0.15s;
}

.menu-grid.reveal-active .menu-item:nth-child(4) {
    animation-delay: 0.2s;
}

.menu-grid.reveal-active .menu-item:nth-child(5) {
    animation-delay: 0.25s;
}

.menu-grid.reveal-active .menu-item:nth-child(6) {
    animation-delay: 0.3s;
}

.menu-grid.reveal-active .menu-item:nth-child(7) {
    animation-delay: 0.35s;
}

.menu-grid.reveal-active .menu-item:nth-child(8) {
    animation-delay: 0.4s;
}

.menu-grid.reveal-active .menu-item:nth-child(n+9) {
    animation-delay: 0.45s;
}

@keyframes menuItemReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section title special animation */
.section-title.reveal-title {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-title.reveal-title::after {
    width: 0;
    transition: width 0.8s ease 0.4s;
}

.section-title.reveal-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.section-title.reveal-title.visible::after {
    width: 80px;
}

/* Contact info items staggered */
.contact-info .info-item {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info.reveal-active .info-item:nth-child(1) {
    transition-delay: 0.1s;
}

.contact-info.reveal-active .info-item:nth-child(2) {
    transition-delay: 0.2s;
}

.contact-info.reveal-active .info-item:nth-child(3) {
    transition-delay: 0.3s;
}

.contact-info.reveal-active .info-item:nth-child(4) {
    transition-delay: 0.4s;
}

.contact-info.reveal-active .info-item {
    opacity: 1;
    transform: translateX(0);
}

/* Map reveal with scale */
.contact-map {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.contact-map.reveal-active {
    opacity: 1;
    transform: scale(1);
}

/* Footer reveal */
.footer-container {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-container.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

/* Parallax-like effect for images on scroll */
.about-image {
    overflow: hidden;
}

.about-image .img-placeholder {
    transition: transform 0.5s ease-out;
}

/* Smooth entrance for features */
.features .feature {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.features.reveal-active .feature:nth-child(1) {
    transition-delay: 0.15s;
}

.features.reveal-active .feature:nth-child(2) {
    transition-delay: 0.25s;
}

.features.reveal-active .feature:nth-child(3) {
    transition-delay: 0.35s;
}

.features.reveal-active .feature {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* === PREMIUM MENU STYLING === */

/* Enhanced category titles with ornaments */
.category-title {
    position: relative;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 1.6rem;
    margin: 40px 0 35px;
    padding: 15px 60px;
}

.category-title::before,
.category-title::after {
    content: '❖';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--primary-color);
    opacity: 0.7;
}

.category-title::before {
    left: 10px;
}

.category-title::after {
    right: 10px;
}

/* Premium golden price badge */
.price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a0a0a;
    background: linear-gradient(135deg, #d4af37, var(--primary-color), #d4af37);
    background-size: 200% 200%;
    padding: 5px 14px;
    border-radius: 4px;
    text-shadow: none;
    box-shadow:
        0 2px 8px rgba(200, 169, 126, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: priceShimmer 3s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes priceShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Menu items glassmorphism */
.menu-item {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--primary-color);
    transform: translateY(-4px) translateX(4px);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(200, 169, 126, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* === ENHANCED SECTION TITLES === */

.section-title {
    font-size: 2.8rem;
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

/* Center container for section titles */
.section-title.text-center {
    display: block;
    text-align: center;
}

.section-title.text-center::after {
    left: 50%;
}

/* === FEATURE ICONS ENHANCEMENT === */

.feature {
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    transition: all 0.3s ease;
}

.feature:hover i {
    transform: scale(1.15);
    text-shadow: 0 0 20px rgba(200, 169, 126, 0.6);
}

/* === NAVBAR PREMIUM === */

.logo {
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

/* === SOCIAL LINKS GLOW === */

.social-links a:hover {
    box-shadow: 0 0 20px rgba(200, 169, 126, 0.5);
}

/* === PERFORMANCE OPTIMIZATIONS === */

.hero::before,
.menu::before,
.scroll-indicator,
.btn-primary::before {
    will-change: transform, opacity;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {

    .hero h1,
    .hero p,
    .hero-btns,
    .reveal,
    .scroll-indicator {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .scroll-indicator {
        display: none;
    }
}

/* ============================================
   ULTRA PREMIUM ENHANCEMENTS - La Marina 2.0
   ============================================ */

/* === LOADING SCREEN === */
.loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--bg-color), #0a2820);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-logo {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-color);
    letter-spacing: 6px;
    animation: loadingPulse 1.5s ease-in-out infinite;
    text-shadow: 0 0 40px rgba(200, 169, 126, 0.5);
}

.loading-tagline {
    font-size: 1rem;
    color: var(--text-color);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 10px;
    opacity: 0.7;
}

.loading-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin: 30px auto 0;
    overflow: hidden;
}

.loading-progress {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-color), #d4af37);
    border-radius: 3px;
    animation: loadingBar 1.5s ease-out forwards;
}

@keyframes loadingPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

@keyframes loadingBar {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

/* === FLOATING PARTICLES === */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    top: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 60%;
    top: 30%;
    animation-delay: 4s;
    animation-duration: 12s;
}

.particle:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: 6s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 40%;
    top: 50%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) translateX(20px) scale(1.2);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-60px) translateX(-10px) scale(0.8);
        opacity: 0.2;
    }

    75% {
        transform: translateY(-30px) translateX(-20px) scale(1.1);
        opacity: 0.4;
    }
}

/* === POPULAR BADGE === */
.badge-popular {
    position: absolute;
    top: -8px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(238, 90, 36, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 10;
}

.menu-item.featured {
    position: relative;
    border: 1px solid rgba(238, 90, 36, 0.3);
    background: linear-gradient(135deg, rgba(238, 90, 36, 0.05), transparent);
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* === SECTION DIVIDERS === */
.section-divider {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 30px 0;
    background: linear-gradient(90deg, transparent, rgba(200, 169, 126, 0.1), transparent);
}

.divider-icon {
    font-size: 1.8rem;
    animation: iconFloat 3s ease-in-out infinite;
    filter: grayscale(0.2);
}

.divider-icon:nth-child(1) {
    animation-delay: 0s;
}

.divider-icon:nth-child(2) {
    animation-delay: 0.5s;
}

.divider-icon:nth-child(3) {
    animation-delay: 1s;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

/* === AURORA GLOW EFFECT (Hero) === */
.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(16, 89, 76, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(200, 169, 126, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
    animation: auroraShift 10s ease-in-out infinite alternate;
}

@keyframes auroraShift {
    0% {
        background:
            radial-gradient(ellipse at 20% 50%, rgba(16, 89, 76, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 80% 50%, rgba(200, 169, 126, 0.1) 0%, transparent 50%);
    }

    100% {
        background:
            radial-gradient(ellipse at 30% 40%, rgba(16, 89, 76, 0.2) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 60%, rgba(200, 169, 126, 0.15) 0%, transparent 50%);
    }
}

/* === ENHANCED NAVBAR GLASS EFFECT === */
.navbar {
    background: rgba(5, 20, 16, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(200, 169, 126, 0.15);
}

/* === ENHANCED FOOTER === */
footer {
    background: linear-gradient(180deg, var(--bg-color), #030a08);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-logo {
    animation: logoShimmer 3s ease-in-out infinite;
}

@keyframes logoShimmer {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(200, 169, 126, 0.3);
    }

    50% {
        text-shadow: 0 0 40px rgba(200, 169, 126, 0.6);
    }
}

/* === ENHANCED SCROLL INDICATOR === */
.scroll-indicator {
    opacity: 0;
    animation: scrollBounce 2s ease-in-out infinite, scrollFadeIn 1s ease-out 1.5s forwards;
}

@keyframes scrollFadeIn {
    to {
        opacity: 1;
    }
}

/* === ENHANCED BUTTONS === */
.btn-primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--secondary-color), #0e5545, var(--secondary-color));
    background-size: 200% 200%;
    animation: btnGradient 4s ease infinite;
}

@keyframes btnGradient {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* === TABLET BREAKPOINT === */
@media (min-width: 768px) and (max-width: 1024px) {
    .about-container {
        gap: 30px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .loading-logo {
        font-size: 2.5rem;
    }
}

/* === MOBILE ENHANCEMENTS === */
@media (max-width: 768px) {
    .loading-logo {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .loading-bar {
        width: 150px;
    }

    .section-divider {
        gap: 25px;
        padding: 20px 0;
    }

    .divider-icon {
        font-size: 1.4rem;
    }

    .badge-popular {
        font-size: 0.55rem;
        padding: 3px 8px;
        top: -6px;
        right: 10px;
    }

    .particles {
        display: none;
        /* Hide particles on mobile for performance */
    }
}

/* ============================================
   PREMIUM VISUAL UPGRADE V2
   Maximum Impact Design
   ============================================ */

/* === HERO TITLE - FLAT GOLD === */
.hero h1 {
    color: var(--primary-color);
    text-shadow: none;
    opacity: 1;
    /* Ensure visible without animation */
    transform: none;
    animation: none;
}

@keyframes goldTextShimmer {
    0% {
        background-position: 300% center;
    }

    100% {
        background-position: -300% center;
    }
}

/* === LOADING LOGO - PREMIUM GOLD === */
/* === LOADING LOGO - FLAT GOLD === */
.loading-logo {
    color: var(--primary-color);
    letter-spacing: 6px;
    animation: loadingPulse 1.5s ease-in-out infinite;
    text-shadow: none;
}

@keyframes loadingGoldShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* === LOADING BAR - GLOW === */
.loading-progress {
    background: linear-gradient(90deg, var(--primary-color), #d4af37, #f5d899);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8);
}

/* === NAVBAR LOGO - FLAT GOLD === */
.nav-container .logo {
    color: var(--primary-color);
    animation: none;
    filter: none;
}

/* === NAVBAR - FROSTED PREMIUM === */
.navbar {
    background: rgba(5, 20, 16, 0.7) !important;
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25) !important;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
}

/* === HERO - PREMIUM LIGHT LEAK === */
.hero::after {
    background:
        radial-gradient(circle at 20% 30%, rgba(200, 169, 126, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 80% 70%, rgba(16, 89, 76, 0.15) 0%, transparent 70%),
        linear-gradient(to bottom, transparent, var(--bg-color));
    animation: auroraWave 15s ease-in-out infinite alternate;
}

@keyframes auroraWave {
    0% {
        opacity: 0.6;
        filter: blur(30px);
        transform: scale(1) translate(0, 0);
    }

    100% {
        opacity: 0.9;
        filter: blur(15px);
        transform: scale(1.1) translate(20px, 10px);
    }
}

/* === SECTION TITLES - PREMIUM GRADIENT === */
/* === SECTION TITLES - FLAT GOLD === */
.section-title {
    color: var(--primary-color);
    /* Reset to white or primary */
    background: none;
    -webkit-text-fill-color: initial;
    background-clip: border-box;
    animation: none;
    filter: none;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8);
}

/* === MENU CARDS - SOPHISTICATED DEPTH === */
.menu-item {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 24px !important;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden !important;
}

.menu-item:hover {
    transform: translateY(-8px) !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(212, 175, 55, 0.2) !important;
    box-shadow:
        0 40px 80px -20px rgba(0, 0, 0, 0.8),
        0 0 50px rgba(212, 175, 55, 0.05) !important;
}

/* Dynamic Cursor Glow */
.menu-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
            rgba(212, 175, 55, 0.12) 0%,
            transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    height: 100% !important;
}

.menu-item:hover::after {
    opacity: 1;
}

.menu-item>* {
    position: relative;
    z-index: 1;
}

/* === PRICE - ELEGANT & SUBTLE === */
.price {
    font-size: 1.1rem !important;
    background: transparent !important;
    color: var(--primary-color) !important;
    padding: 4px 12px !important;
    border: 1px solid rgba(212, 175, 55, 0.4) !important;
    border-radius: 6px !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1) !important;
    animation: none !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    transition: all 0.4s ease !important;
}

.menu-item:hover .price {
    background: rgba(212, 175, 55, 0.05) !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2) !important;
    transform: scale(1.05);
}

.price::after {
    display: none !important;
}

/* === CATEGORY TITLES - CLICKABLE BUTTONS === */
.category-title {
    text-shadow: 0 0 50px rgba(200, 169, 126, 0.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 20px !important;
    cursor: pointer !important;
    padding: 20px 40px !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    background: rgba(255, 255, 255, 0.02) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    margin: 20px 0 !important;
    font-size: 1.3rem !important;
    letter-spacing: 3px !important;
    text-transform: uppercase !important;
}

.category-title::before,
.category-title::after {
    content: '' !important;
    position: static !important;
    flex: 1 !important;
    height: 1px !important;
    background: linear-gradient(90deg,
            transparent,
            rgba(200, 169, 126, 0.3),
            transparent) !important;
    transform: none !important;
}

.category-title:hover {
    background: rgba(255, 255, 255, 0.04) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

.category-title.active {
    background: rgba(212, 175, 55, 0.08) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(212, 175, 55, 0.15) !important;
}

/* === BUTTONS - PREMIUM GLOW === */
.btn-primary {
    background: linear-gradient(135deg, #10594C, #1a7a6a, #10594C) !important;
    background-size: 200% 200% !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    box-shadow:
        0 6px 25px rgba(16, 89, 76, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
}

.btn-primary:hover {
    transform: translateY(-4px) !important;
    box-shadow:
        0 12px 40px rgba(16, 89, 76, 0.6),
        0 0 50px rgba(212, 175, 55, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3) !important;
}

/* === TAB BUTTONS - PREMIUM === */
.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), #b08d48) !important;
    box-shadow: 0 6px 25px rgba(200, 169, 126, 0.5) !important;
    transform: translateY(-3px);
}

/* === ABOUT IMAGE - PREMIUM ELEGANCE === */
#about-img-placeholder {
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.7),
        0 0 50px rgba(200, 169, 126, 0.05) !important;
    border-radius: 8px !important;
}

#about-img-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.1) 50%, transparent 60%);
    background-size: 250% 250%;
    background-position: 100% 100%;
    transition: background-position 0.8s ease;
    pointer-events: none;
}

#about-img-placeholder:hover::after {
    background-position: 0% 0%;
}

#about-img-placeholder:hover {
    transform: translateY(-10px) rotate(-1deg) !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
}

/* === FEATURES - ICON GLOW === */
.feature i {
    font-size: 2.8rem !important;
    text-shadow: 0 0 40px rgba(200, 169, 126, 0.6) !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.feature:hover i {
    transform: scale(1.25) translateY(-8px) !important;
    text-shadow: 0 0 60px rgba(200, 169, 126, 0.9) !important;
}

/* === FOOTER - PREMIUM LINE === */
footer::before {
    height: 2px !important;
    background: linear-gradient(90deg,
            transparent 10%,
            rgba(212, 175, 55, 0.6) 30%,
            var(--primary-color) 50%,
            rgba(212, 175, 55, 0.6) 70%,
            transparent 90%) !important;
}

.footer-logo {
    color: var(--primary-color);
    background: none;
    -webkit-text-fill-color: initial;
    background-clip: border-box;
    animation: none;
    filter: none;
}

/* === SOCIAL LINKS - GLOW === */
.social-links a {
    border: 1px solid rgba(212, 175, 55, 0.25) !important;
    background: rgba(212, 175, 55, 0.05) !important;
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), #d4af37) !important;
    transform: translateY(-6px) scale(1.15) !important;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5) !important;
}

/* === SCROLL INDICATOR - GOLD === */
.scroll-indicator::before {
    border-color: rgba(212, 175, 55, 0.5) !important;
}

.scroll-indicator::after {
    background: linear-gradient(180deg, #d4af37, var(--primary-color)) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.7) !important;
}

/* === MAP - PREMIUM BORDER === */
.map-placeholder {
    border: 2px solid rgba(212, 175, 55, 0.35) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4) !important;
}

/* === PARTICLES - ENHANCED GLOW === */
.particle {
    background: radial-gradient(circle, #d4af37 0%, transparent 70%) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6) !important;
}