/* ===========================
   CSS Variables & Root
=========================== */
:root {
    --primary-color: #c9a84c;
    --primary-dark: #a07830;
    --accent-color: #fdf6e3;
    --text-color: #1a1209;
    --text-light: #6b5c45;
    --bg-light: #faf9f7;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --border-radius: 20px;
}

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

html {
    scroll-behavior: smooth;
    background-color: #1a1209;
    /* evita flash grigio del browser prima del CSS */
}

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===========================
   Utilities
=========================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.divider {
    height: 4px;
    width: 60px;
    background-color: var(--primary-color);
    margin: 0 auto 20px;
    border-radius: 2px;
}

/* ===========================
   Buttons
=========================== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px -5px rgba(201, 168, 76, 0.45);
}

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

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

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

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

.btn i,
.btn-primary i,
.form-wrapper h3 i {
    margin-right: 10px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* ===========================
   Loading Screen
=========================== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.ripple-container {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ripple-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    animation: ripple 2s ease-out infinite;
    opacity: 0;
}

.r1 {
    width: 30px;
    height: 30px;
    animation-delay: 0s;
}

.r2 {
    width: 55px;
    height: 55px;
    animation-delay: 0.3s;
}

.r3 {
    width: 80px;
    height: 80px;
    animation-delay: 0.6s;
}

.r4 {
    width: 105px;
    height: 105px;
    animation-delay: 0.9s;
}

.r5 {
    width: 130px;
    height: 130px;
    animation-delay: 1.2s;
}

@keyframes ripple {
    0% {
        opacity: 0.8;
        transform: scale(0.5);
    }

    100% {
        opacity: 0;
        transform: scale(1.2);
    }
}

.center-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary-color);
    position: relative;
    z-index: 1;
}

.inner-glow {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.3);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.7;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
}

.loader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.brand-logo-vertical {
    height: 140px;
    width: auto;
}

.brand-logo-horizontal {
    height: 45px;
    width: auto;
    transition: var(--transition);
}

/* ===========================
   Navbar
=========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar.scrolled .brand-logo-horizontal {
    height: 38px;
}

.logo span {
    color: var(--primary-color);
}

.navbar.scrolled .logo {
    color: var(--text-color);
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-links li a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 4px;
}

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

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

.navbar.scrolled .nav-links li a {
    color: var(--text-color);
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.navbar.scrolled .nav-links li a:hover {
    color: var(--primary-color);
}

.btn-nav-cta {
    background: #463b2c;
    color: var(--white);
    border: none;
    padding: 10px 24px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-nav-cta:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.hamburger {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 1000;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

.navbar.scrolled .hamburger span {
    background-color: var(--text-color);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--white);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--white);
}

/* ===========================
   Scroll Reveal Animation
=========================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

html.no-animations .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

html.no-animations .delay-100,
html.no-animations .delay-200,
html.no-animations .delay-300,
html.no-animations .delay-400 {
    transition-delay: 0s !important;
}

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

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* ===========================
   Hero Section
=========================== */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    background-color: #f5f0e6;
    /* Premium Beige */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 80%);
    z-index: 0;
    opacity: 0.5;
}

.hero-overlay {
    display: none;
    /* Removed overlay as we use a solid background */
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-content-logos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8vh;
}

.main-hero-logo {
    height: clamp(180px, 30vh, 280px);
    width: auto;
    filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
    transition: var(--transition);
}

.hero-restaurants {
    width: 100%;
    max-width: 1000px;
}

.hero-restaurants-title {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--primary-color);
    margin-bottom: 40px;
    opacity: 0.7;
}

.hero-restaurants-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-restaurant-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 80px;
    transition: var(--transition);
    opacity: 0.85;
}

.hero-restaurant-link:hover {
    transform: translateY(-5px);
    opacity: 1;
}

.hero-restaurant-link img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.kristal-hero-link img {
    transform: translateX(-18px) scale(1.15);
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-restaurants-grid {
        gap: 35px;
    }

    .hero-restaurant-link {
        width: 120px;
    }
}

@media (max-width: 768px) {
    .hero-content-logos {
        gap: 6vh;
    }

    .hero-restaurants-grid {
        gap: 30px;
    }

    .hero-restaurant-link {
        width: 110px;
    }
}

@media (max-width: 480px) {
    .hero-content-logos {
        gap: 5vh;
    }

    .hero-restaurants-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 10px;
    }

    .hero-restaurant-link {
        width: 90px;
        height: 55px;
    }

    .kristal-hero-link img {
        transform: translateX(-10px) scale(1.1);
    }

    .hero-restaurants-title {
        margin-bottom: 20px;
        letter-spacing: 3px;
        font-size: 0.75rem;
    }
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    z-index: 2;
    opacity: 0.8;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* ===========================
   About Section
=========================== */
.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.about-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.3);
}

.about-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.about-card h3 {
    margin-bottom: 12px;
    font-size: 1.3rem;
    font-weight: 600;
}

.about-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.experience-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px;
    background: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.experience-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--primary-dark));
    border-radius: 3px 0 0 3px;
}

.experience-content p {
    font-size: 1.1rem;
    color: var(--text-color);
    line-height: 1.85;
    margin-bottom: 20px;
    font-weight: 300;
}

.experience-content p:last-child {
    margin-bottom: 0;
}

.experience-content strong {
    color: var(--primary-color);
    font-weight: 700;
}

.experience-content em {
    display: block;
    margin-top: 25px;
    font-size: 1.15rem;
    color: var(--primary-dark);
    font-weight: 500;
    font-style: italic;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

/* ===========================
   Restaurants Section
=========================== */
.restaurants-section {
    background-color: var(--bg-light);
}

.restaurants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.restaurant-card {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(201, 168, 76, 0.08);
}

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

.restaurant-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.restaurant-logo-container {
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: transform 0.5s ease;
}

.restaurant-card:hover .restaurant-logo-container {
    transform: scale(1.05);
}

.restaurant-card-logo {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.restaurant-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.restaurant-card:hover .restaurant-img img {
    transform: scale(1.05);
}

.restaurant-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(201, 168, 76, 0.4);
}

.restaurant-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.restaurant-info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.restaurant-location {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.restaurant-info>p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

.restaurant-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.restaurant-features span {
    background: var(--accent-color);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.restaurant-features span i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

/* ===========================
   Services Section
=========================== */
.services-section {
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 30px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(201, 168, 76, 0.15);
    background: var(--white);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.3);
}

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

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #fdf0d0);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* ===========================
   Gallery Section — Premium Horizontal Slider
=========================== */
.gallery-section {
    background-color: var(--bg-light);
    overflow: hidden;
    padding-bottom: 0;
}

/* ---- Slider Wrapper ---- */
.slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 820px;
    margin: 40px auto 0;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.13);
    touch-action: pan-y;
}

/* ---- Track (the moving strip) ---- */
.slider-track {
    display: flex;
    will-change: transform;
    transition: transform 0.75s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---- Individual Slide ---- */
.slide {
    flex: 0 0 100%;
    width: 100%;
    height: 440px;
    position: relative;
    overflow: hidden;
    padding: 0;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* ---- Slide Caption ---- */
.slide-caption {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.slide-caption span {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ---- Navigation Buttons ---- */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: none;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 30;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.4);
    transform: translateY(-50%) scale(1.08);
}

.slider-btn-prev {
    left: 16px;
}

.slider-btn-next {
    right: 16px;
}

/* ---- Dots ---- */
.slider-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 28px 0 60px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.3);
    cursor: pointer;
    border: none;
    padding: 0;
    transition: background 0.3s ease, width 0.3s ease, border-radius 0.3s ease;
}

.slider-dot.active {
    background: var(--primary-color);
    width: 28px;
    border-radius: 10px;
}

/* ---- Responsive: hide side buttons on mobile ---- */
@media (max-width: 768px) {
    .slider-btn {
        display: none;
    }

    .slide {
        padding: 0;
        height: 260px;
    }
}

/* ===========================
   Booking Section
=========================== */
.booking-section {
    background-color: var(--white);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

/* Direct Contact Section */
.direct-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.direct-contact-wrapper h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.direct-contact-wrapper h3 i {
    color: var(--primary-color);
}

.direct-contact-wrapper>p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 5px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.contact-method-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    transition: var(--transition);
}

.contact-method-card.whatsapp::before {
    background: #25D366;
}

.contact-method-card.phone::before {
    background: var(--primary-color);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.2);
}

.contact-method-card i:first-child {
    font-size: 2.2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.03);
}

.contact-method-card.whatsapp i:first-child {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
}

.contact-method-card.phone i:first-child {
    color: var(--primary-color);
    background: rgba(201, 168, 76, 0.1);
}

.method-info span {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 3px;
}

.method-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-method-card .arrow {
    margin-left: auto;
    color: #d1d1d1;
    transition: var(--transition);
    font-size: 1.2rem;
}

.contact-method-card:hover .arrow {
    color: var(--primary-color);
    transform: translateX(8px);
}

.visit-us-card {
    background: rgba(201, 168, 76, 0.08);
    border: 1px dashed var(--primary-color);
    padding: 24px 30px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 5px;
}

.visit-us-card i {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.visit-us-card p {
    font-size: 1.05rem;
    color: var(--text-color);
    font-weight: 500;
    line-height: 1.5;
}

/* Secondary Form styling */
.secondary-form {
    opacity: 0.98;
    background: var(--white);
    border: 1px solid rgba(201, 168, 76, 0.1) !important;
}

.secondary-form h3 {
    font-size: 1.3rem;
    opacity: 0.85;
}

/* Form */
.form-wrapper {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 35px;
    border: 1px solid rgba(201, 168, 76, 0.15);
}

.form-wrapper h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-wrapper h3 i {
    color: var(--primary-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 15px;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--text-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    background: var(--white);
    color: var(--text-color);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #c0b8b0;
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a84c' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

.privacy-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

.privacy-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
}

.privacy-check a {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
}

#submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
}

.form-message {
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(34, 197, 94, 0.1);
    color: #166534;
    border: 1px solid rgba(34, 197, 94, 0.3);
    display: block;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.3);
    display: block;
}

/* ===========================
   Map & Sedi Section
=========================== */
.map-section {
    background-color: var(--bg-light);
}

.locations-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 40px;
    align-items: center;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--white);
    padding: 18px 20px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.location-item:hover {
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.location-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.location-info h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.location-info p {
    font-size: 0.82rem;
    color: var(--text-light);
}

.map-embed {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ===========================
   Legal Section
=========================== */
.legal-section {
    background:
        radial-gradient(circle at top left, rgba(201, 168, 76, 0.12), transparent 32%),
        linear-gradient(180deg, #fffdf8 0%, var(--bg-light) 100%);
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.legal-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(201, 168, 76, 0.16);
    border-radius: 26px;
    padding: 34px 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.legal-card::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    opacity: 0.9;
}

.legal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 168, 76, 0.28);
}

.legal-icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--accent-color), #f8ebc2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.legal-icon i {
    color: var(--primary-color);
    font-size: 1.7rem;
}

.legal-badge {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(201, 168, 76, 0.12);
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.legal-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.legal-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 22px;
}

.legal-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-link i {
    font-size: 0.85rem;
}

.legal-contact-list {
    margin-top: auto;
}

.legal-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-light);
}

.legal-contact-list li:last-child {
    margin-bottom: 0;
}

.legal-contact-list i {
    color: var(--primary-color);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.legal-contact-list a:hover {
    color: var(--primary-color);
}

/* ===========================
   Footer
=========================== */
.footer-section {
    background-color: #1a1209;
    color: var(--white);
    padding: 80px 0 30px;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    background: var(--bg-light);
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    padding-top: 30px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.footer-logo span {
    color: var(--primary-color);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-col h4 {
    margin-bottom: 22px;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 13px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
}

.contact-list li i {
    color: var(--primary-color);
    margin-top: 3px;
    width: 16px;
    flex-shrink: 0;
}

.contact-list li a {
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.contact-list li a:hover {
    color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '→';
    color: var(--primary-color);
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.developer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rygen-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--primary-color) !important;
    font-weight: 700;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.1);
}

.rygen-link:hover {
    background: rgba(201, 168, 76, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.rygen-link i {
    font-size: 0.9rem;
}


/* ===========================
   WhatsApp Floating
=========================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 900;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    transition: var(--transition);
    animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    background: #20b85a;
    color: var(--white);
    transform: scale(1.1);
}

@keyframes floatPulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===========================
   Cookie Banner
=========================== */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 900px;
    margin: 0 auto;
    z-index: 800;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease, visibility 0.6s;
    transform: translateY(calc(100% + 100px));
    visibility: hidden;
    opacity: 0;
}

.cookie-banner.show {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}

.cookie-content {
    background: rgba(26, 18, 9, 0.97);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.cookie-content p {
    flex: 1;
    min-width: 200px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    line-height: 1.5;
}

.cookie-content p a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .legal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .locations-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .collage-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .legal-card-info {
        grid-column: span 2;
    }

    .collage-item:nth-child(6) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100svh;
        background: rgba(26, 18, 9, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: none;
        display: flex;
    }

    .nav-links::before {
        content: '';
        position: absolute;
        top: 20%;
        left: 50%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
        transform: translate(-50%, -50%);
        pointer-events: none;
        z-index: -1;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-links.open li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.open li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-links.open li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-links.open li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-links.open li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-links.open li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-links.open li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-links.open li:nth-child(7) {
        transition-delay: 0.4s;
    }

    .nav-links li a {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--white) !important;
        text-transform: uppercase;
        letter-spacing: 3px;
        position: relative;
        padding: 8px 0;
        display: inline-block;
        transition: all 0.3s ease;
    }

    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-links li a:hover {
        letter-spacing: 5px;
        color: var(--primary-color) !important;
    }

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

    .nav-links li a.active {
        color: var(--primary-color) !important;
    }

    .btn-nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 2100;
        position: relative;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .legal-grid {
        grid-template-columns: 1fr;
    }

    .legal-card-info {
        grid-column: span 1;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: span 1;
        text-align: center;
    }

    .footer-logo,
    .social-icons {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .gallery-slider-wrapper {
        height: 350px;
    }

    .collage-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }

    .collage-item:nth-child(1),
    .collage-item:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }

    .collage-item:first-child {
        grid-column: span 2;
    }

    .experience-container {
        padding: 30px 25px;
    }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }
}

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

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .restaurants-grid {
        grid-template-columns: 1fr;
    }

    .collage-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }

    .collage-item {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .calendar-wrapper,
    .form-wrapper {
        padding: 20px;
    }

    .scroll-down {
        display: none;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {

    .navbar.scrolled,
    .hero-tag,
    .slide-caption span,
    .cookie-content,
    .restaurant-logo-over,
    .service-icon-glass {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .about-card:hover,
    .restaurant-card:hover,
    .service-card:hover,
    .legal-card:hover,
    .gallery-photo-item:hover,
    .location-item:hover {
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

/* ===========================
   Restaurant Card Photo Style
=========================== */
.restaurant-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.restaurant-logo-over {
    background: rgba(255, 255, 255, 0.88) !important;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.restaurant-card:hover .restaurant-logo-over {
    opacity: 1;
}

.restaurant-card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.restaurant-card-actions .btn {
    flex: 1;
    text-align: center;
    padding: 10px 16px;
    font-size: 0.88rem;
}

/* ===========================
   Service Card Photo Banner
=========================== */
.service-card-photo {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    text-align: left;
    border: none;
    padding: 0;
}

.service-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 9, 0.85) 0%, rgba(26, 18, 9, 0.3) 60%, transparent 100%);
    z-index: 1;
    transition: var(--transition);
}

.service-card-photo:hover .service-photo-overlay {
    background: linear-gradient(to top, rgba(26, 18, 9, 0.9) 0%, rgba(26, 18, 9, 0.5) 60%, transparent 100%);
}

.service-photo-content {
    position: relative;
    z-index: 2;
    padding: 28px 24px;
    width: 100%;
    color: var(--white);
}

.service-photo-content h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.service-photo-content p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.88rem;
    line-height: 1.55;
}

.service-icon-glass {
    background: rgba(201, 168, 76, 0.25) !important;
    border: 1px solid rgba(201, 168, 76, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 14px 0 !important;
}

.service-icon-glass i {
    font-size: 1.5rem;
    color: var(--primary-color) !important;
}

.service-card-photo::before {
    display: none;
}

/* ===========================
   Gallery Filter Buttons
=========================== */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid rgba(201, 168, 76, 0.3);
    background: transparent;
    color: var(--text-light);
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(201, 168, 76, 0.06);
}

.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(201, 168, 76, 0.35);
}

/* ===========================
   Gallery Photo Grid
=========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.gallery-photo-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-photo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    z-index: 5;
}

.gallery-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-photo-item:hover img {
    transform: scale(1.08);
}

.gallery-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 9, 0.7) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 14px;
}

.gallery-photo-item:hover .gallery-photo-overlay {
    opacity: 1;
}

.gallery-photo-overlay span {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    background: rgba(201, 168, 76, 0.85);
    padding: 4px 12px;
    border-radius: 50px;
}

.gallery-photo-item.hidden {
    display: none;
}

.gallery-photo-item.fade-in {
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.96);
    }

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

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .restaurant-card-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

/* ===========================
   Restaurant Detail Page Hero
=========================== */
.resto-hero {
    height: 70vh;
    min-height: 480px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: var(--white);
}

.resto-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 18, 9, 0.85) 0%, rgba(26, 18, 9, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.resto-hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.resto-hero-content .hero-tag {
    margin-bottom: 12px;
}

.resto-hero-content h1 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.resto-hero-content p {
    font-size: 1.1rem;
    opacity: 0.88;
    font-weight: 300;
    max-width: 600px;
    margin-bottom: 25px;
}

.resto-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 0;
    margin-bottom: 20px;
    transition: var(--transition);
}

.resto-back-btn:hover {
    color: var(--primary-color);
}

.resto-back-btn i {
    font-size: 0.8rem;
}

/* Info Section */
.resto-info-section {
    padding: 80px 0;
    background: var(--white);
}

.resto-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.resto-description h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.resto-description p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 18px;
    font-size: 1rem;
}

.resto-description .divider {
    margin: 0 0 25px 0;
}

.resto-details-card {
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 35px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    position: sticky;
    top: 100px;
}

.resto-details-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.resto-details-card h3 i {
    color: var(--primary-color);
}

.resto-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.resto-detail-item i {
    color: var(--primary-color);
    width: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.resto-detail-item a {
    color: var(--text-light);
    transition: var(--transition);
}

.resto-detail-item a:hover {
    color: var(--primary-color);
}

.resto-features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0 25px;
}

/* Gallery Resto */
.resto-gallery-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.resto-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.resto-gallery-grid .gallery-photo-item {
    aspect-ratio: 4/3;
}

.resto-gallery-grid .gallery-photo-item:first-child {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

@media (max-width: 768px) {
    .resto-hero-content {
        padding: 40px 20px;
    }

    .resto-info-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .resto-details-card {
        position: static;
    }

    .resto-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .resto-gallery-grid .gallery-photo-item:first-child {
        grid-column: span 2;
        aspect-ratio: 4/3;
    }
}

@media (max-width: 480px) {
    .resto-gallery-grid {
        grid-template-columns: 1fr;
    }

    .resto-gallery-grid .gallery-photo-item:first-child {
        grid-column: span 1;
    }
}

/* ===========================
   Restaurant CTA Buttons
=========================== */
.resto-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .resto-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        padding: 0 20px;
    }

    .resto-cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        margin: 0 !important;
    }
}