@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Montserrat:wght@300;400;500;600;700&family=Montez&display=swap');

:root {
    --primary: #f2e36c;
    --secondary: #c9a84c;
    --accent: #e8b84b;
    --bg-dark: #000e33;
    --bg-card: #001050;
    --bg-section: #000a28;
    --dark: #000e33;
    --white: #ffffff;
    --text-main: #f2e36c;
    --text-light: rgba(242, 227, 108, 0.8);
    --text-muted: rgba(242, 227, 108, 0.5);
    --glass: rgba(242, 227, 108, 0.04);
    --glass-border: rgba(242, 227, 108, 0.15);
    --hover-gold: #ffe066;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1,
h2,
h3,
h4 {
    font-family: 'Cinzel', serif;
    color: var(--primary);
}

.cursive-title {
    font-family: "Montez", cursive;
    font-size: 4rem;
    font-weight: normal;
}

.font-cursive {
    font-family: "Montez", cursive !important;
    font-weight: normal !important;
}

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

ul {
    list-style: none;
}

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

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



.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--hover-gold), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(242, 227, 108, 0.35);
    color: var(--bg-dark);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--bg-dark);
    font-weight: 700;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--hover-gold), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(242, 227, 108, 0.4);
    color: var(--bg-dark);
}

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

.btn-outline:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(0, 14, 51, 0.97);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.6), 0 1px 0 rgba(242, 227, 108, 0.15);
}

header nav ul li a {
    color: var(--white);
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--primary);
}

header .btn-secondary {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--bg-dark);
    font-weight: 700;
}

header .btn-secondary:hover {
    background: linear-gradient(135deg, var(--hover-gold), var(--primary));
    color: var(--bg-dark);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo img {
    height: 60px;
    transition: var(--transition);
}

header.scrolled .logo img {
    height: 45px;
}

nav ul {
    display: flex;
    gap: 30px;
}

nav ul li a {
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-bottom: 3px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

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

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* HERO */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 14, 51, 0.78) 0%, rgba(0, 14, 51, 0.38) 50%, rgba(0, 14, 51, 0.82) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 10;
    width: 100%;
    max-width: 700px;
    text-align: left;
    padding: 0 20px;
}

.slide-subtitle {
    color: var(--primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 6px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
}

.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 4px 20px rgba(242, 227, 108, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 550px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

/* SLIDER CONTROLS */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(242, 227, 108, 0.12);
    border: 2px solid rgba(242, 227, 108, 0.35);
    color: var(--primary);
    border-radius: 50%;
    cursor: pointer;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--bg-dark);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(242, 227, 108, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

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

/* SLIDE ANIMATIONS */
.hero-content h1,
.hero-content p,
.hero-content .hero-btns,
.slide-subtitle {
    opacity: 0;
    transform: translateY(30px);
}

.slide.active .slide-subtitle {
    animation: fadeInUp 0.8s ease forwards 0.2s;
}

.slide.active h1 {
    animation: fadeInUp 0.8s ease forwards 0.4s;
}

.slide.active p {
    animation: fadeInUp 0.8s ease forwards 0.6s;
}

.slide.active .hero-btns {
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

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

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

/* SECTIONS */
section {
    padding: 80px 0;
}

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

.section-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 12px;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 10px auto 0;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-top: 10px;
}

/* ABOUT */
.about {
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(242, 227, 108, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image LEFT, Text RIGHT */
.about-image {
    order: 1;
    position: relative;
    padding-left: 20px;
}

.about-text {
    order: 2;
}

.about-text h3 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
}

.about-text h3::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    margin-top: 15px;
    border-radius: 3px;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: rgba(242, 227, 108, 0.72);
    line-height: 1.9;
}

.about-image img {
    border-radius: 10px;
    width: 100%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(242, 227, 108, 0.1);
    transition: var(--transition);
}

.about-image img:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(242, 227, 108, 0.25);
}

.about-image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    bottom: 15px;
    width: 4px;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
    border-radius: 5px 0 0 5px;
}

/* MENU PREVIEW */
.menu-preview {
    background: var(--bg-dark);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.menu-tab {
    padding: 9px 22px;
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.menu-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.menu-tab.active {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-color: transparent;
    color: var(--bg-dark);
    font-weight: 700;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

/* Menu card with image */
.menu-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 227, 108, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Menu card image area */
.menu-item-img {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

/* Category badge */
.menu-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--bg-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
}

/* Card body */
.menu-item-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.menu-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    color: var(--primary);
}

.menu-item .price {
    font-weight: 700;
    color: var(--accent);
    font-size: 1rem;
    white-space: nowrap;
    margin-left: 8px;
}

.menu-item-body>p {
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

/* Order Now button on card */
.menu-order-btn {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background: transparent;
    border: 1px solid rgba(242, 227, 108, 0.35);
    color: var(--primary);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
    align-self: flex-start;
}

.menu-order-btn:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-color: transparent;
    color: var(--bg-dark);
    transform: translateY(-2px);
}

/* GALLERY */
.gallery {
    background: var(--bg-section);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.gallery-item {
    height: 260px;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--glass-border);
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

/* Hover overlay box */
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 14, 51, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-icon {
    width: 55px;
    height: 55px;
    background: rgba(242, 227, 108, 0.15);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    transform: scale(0.7);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* ===== REVIEWS / GUESTS SAY ===== */
.reviews {
    background: var(--bg-section);
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(242, 227, 108, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section header row */
.reviews .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    text-align: left;
    margin-bottom: 50px;
}

.reviews .section-header h2 {
    margin-bottom: 0;
}

.reviews .section-header h2::after {
    margin: 10px 0 0;
}

.reviews-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.reviews-header-right p {
    color: var(--text-muted);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ---- Navigation pill buttons ---- */
.review-buttons {
    display: flex;
    gap: 10px;
}

.review-buttons button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 50px;
    border: 1.5px solid rgba(242, 227, 108, 0.25);
    background: rgba(242, 227, 108, 0.05);
    color: var(--primary);
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

#reviewPrev::before {
    content: '←';
    font-size: 1rem;
    margin-right: 2px;
}

#reviewNext::after {
    content: '→';
    font-size: 1rem;
    margin-left: 2px;
}

.review-buttons button:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    border-color: transparent;
    color: var(--bg-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(242, 227, 108, 0.3);
}

/* ---- Scroll container ---- */
.reviews-container {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 4px 24px;
    scrollbar-width: none;
}

.reviews-container::-webkit-scrollbar {
    display: none;
}

/* ---- Review card ---- */
.review-card {
    flex: 0 0 calc((100% - 50px) / 3);
    background: linear-gradient(145deg, rgba(0, 16, 60, 0.9), rgba(0, 10, 38, 0.95));
    padding: 0;
    border-radius: 18px;
    border: 1px solid rgba(242, 227, 108, 0.12);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Left gold accent bar */
.review-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent), transparent);
    border-radius: 18px 0 0 18px;
}

/* Big decorative quote mark */
.review-card::after {
    content: '\201C';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 7rem;
    line-height: 1;
    color: rgba(242, 227, 108, 0.06);
    font-family: 'Playfair Display', serif;
    pointer-events: none;
    user-select: none;
}

.review-card:hover {
    border-color: rgba(242, 227, 108, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(242, 227, 108, 0.2);
}

/* Card inner padding wrapper */
.review-card-inner {
    padding: 28px 28px 28px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 14px;
}

/* Stars row */
.review-card .stars {
    color: var(--primary);
    font-size: 0.9rem;
    letter-spacing: 3px;
    display: flex;
    gap: 3px;
    margin-bottom: 0;
}

.review-card .stars i {
    filter: drop-shadow(0 0 4px rgba(242, 227, 108, 0.5));
}

/* Quote text */
.review-card p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.85;
    font-size: 0.92rem;
    margin: 0;
    flex: 1;
}

/* Divider line */
.review-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--glass-border), transparent);
    margin: 4px 0;
}

/* Author row with avatar */
.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-dark);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(242, 227, 108, 0.25);
}

.review-author-info strong {
    display: block;
    color: var(--primary);
    font-family: 'Cinzel', serif;
    font-size: 0.88rem;
    letter-spacing: 0.5px;
}

.review-author-info span {
    font-size: 0.76rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 2px;
}

.review-author-info span i {
    color: var(--accent);
    font-size: 0.7rem;
}

/* FIND US */
.find-us {
    background-color: var(--bg-section);
    color: var(--text-main);
    padding: 80px 0;
}

.find-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.find-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--primary);
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1;
}

.find-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-detail {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: center;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(242, 227, 108, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-detail:hover .detail-icon {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
}

.detail-text h4 {
    font-family: 'Cinzel', serif;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 4px;
}

.detail-text p,
.detail-text a {
    font-size: 0.95rem;
    color: var(--text-light);
    transition: var(--transition);
}

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

.find-map {
    position: relative;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px var(--glass-border);
}

.map-wrapper iframe {
    filter: grayscale(0.3) contrast(1.1) hue-rotate(190deg) brightness(0.75);
}

.map-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    z-index: 10;
}

.map-button-overlay h3 {
    font-family: 'Cinzel', serif;
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.9);
}

.btn-dark-small {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 10px 22px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-family: 'Montserrat', sans-serif;
    transition: var(--transition);
}

.btn-dark-small:hover {
    background: var(--hover-gold);
    color: var(--bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(242, 227, 108, 0.4);
}

/* FOOTER */
footer {
    background: #000820;
    padding-top: 80px;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--primary);
    letter-spacing: 1px;
}

.footer-col p,
.footer-col li {
    margin-bottom: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col a {
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--primary);
}

.footer-col i {
    color: var(--accent);
    margin-right: 8px;
}

.opening-hours {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(242, 227, 108, 0.07);
}

.opening-hours .day {
    color: rgba(242, 227, 108, 0.7);
    font-size: 0.88rem;
    font-weight: 500;
}

.opening-hours .time {
    color: var(--primary);
    font-size: 0.88rem;
    text-align: right;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: var(--transition);
    color: var(--text-muted);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--bg-dark);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: #000820;
    border-top: 1px solid rgba(242, 227, 108, 0.06);
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.footer-bottom img {
    height: 25px;
    display: block;
}

/* APP BUTTONS */
.app-btn {
    margin-top: 15px;
    display: inline-block;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.app-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(242, 227, 108, 0.2);
    transform: translateY(-2px);
}

/* SCROLL TOP */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    box-shadow: 0 5px 20px rgba(242, 227, 108, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: translateY(-5px);
    background: var(--hover-gold);
    box-shadow: 0 10px 30px rgba(242, 227, 108, 0.45);
}

/* MOBILE TOGGLE */
.mobile-toggle {
    background: transparent;
    border: 2px solid var(--glass-border);
    color: var(--primary);
    width: 42px;
    height: 42px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    display: none;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
}

.mobile-toggle:hover {
    border-color: var(--primary);
    background: rgba(242, 227, 108, 0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

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

    .find-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    nav ul {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-text h3 {
        font-size: 2.2rem;
    }

    .find-title {
        font-size: 3rem;
    }

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

    .review-card {
        flex: 0 0 calc((100% - 25px) / 2);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-content {
        left: 5%;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .menu-tabs {
        gap: 10px;
    }

    .section-header h2 {
        font-size: 1.9rem;
    }

    .review-card {
        flex: 0 0 100%;
    }

    .reviews .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}