:root {
    /* Colors */
    --color-primary: #E8B4B8;
    /* Rose Gold - Primary Accent */
    --color-primary-dark: #D6979C;
    /* Dark Rose - Hover State */
    --color-text: #FDFBF7;
    /* Warm Beige - Main Text */
    --color-text-light: #D1CFC7;
    /* Muted Beige - Secondary Text */
    --color-bg: #0A0A0A;
    /* Deep Black - Main Background */
    --color-bg-light: #141414;
    /* Dark Charcoal - Secondary Backgrounds */
    --color-bg-dark: #000000;
    /* Pure Black */
    --color-white: #1A1A1A;
    /* Dark Surface - Cards & Elements */
    --color-border: #E0E0E0;
    --color-gold-accent: #D4AF37;
    /* Subtle Gold - Secondary Details */

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 96px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background-color: var(--color-bg);
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    animation: loaderFadeIn 0.6s ease;
}

.loader-logo {
    margin-bottom: 24px;
    animation: logoPulse 2s ease-in-out infinite;
    display: flex;
    justify-content: center;
}

.loader-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.loader-spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.spinner-circle {
    width: 12px;
    height: 12px;
    background-color: var(--color-primary);
    border-radius: 50%;
    animation: spinnerBounce 1.4s ease-in-out infinite;
}

.spinner-circle:nth-child(1) {
    animation-delay: -0.32s;
}

.spinner-circle:nth-child(2) {
    animation-delay: -0.16s;
}

@keyframes loaderFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

@keyframes spinnerBounce {

    0%,
    80%,
    100% {
        transform: scale(0);
        opacity: 0.5;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
}

h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

h3 {
    font-size: 1.25rem;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-primary);
    margin: var(--spacing-xs) auto 0;
}

.divider-light {
    background-color: var(--color-white);
    opacity: 0.15;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

.section {
    padding: var(--spacing-lg) 0;
}

.bg-light {
    background-color: var(--color-bg-light);
}

.bg-dark {
    background-color: var(--color-bg-dark);
}

.text-white {
    color: #FDFBF7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
}

.btn-outline {
    border: 1px solid #FDFBF7;
    color: #FDFBF7;
}

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-text);
}

.btn-text {
    font-weight: 600;
    color: var(--color-text);
}

.btn-icon img,
.btn-icon-mobile img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    vertical-align: middle;
}

.btn-icon-mobile {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-top: var(--spacing-sm);
}

.btn-block {
    display: block;
    width: 100%;
    border: none;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.85);
    /* Dark Glass */
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: var(--spacing-sm) 0;
    transition: var(--transition-fast);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links-desktop {
    display: none;
}

.hamburger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-text);
    position: absolute;
    transition: var(--transition-fast);
}

.hamburger span:nth-child(1) {
    top: 0;
}

.hamburger span:nth-child(2) {
    top: 9px;
}

.hamburger span:nth-child(3) {
    bottom: 0;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 9px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg);
    /* Use Root bg instead of white */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5rem;
    color: var(--color-text);
    background: none;
    border: none;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: var(--transition-fast);
}

.mobile-menu-close:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: var(--spacing-sm) 0;
    color: var(--color-text);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding-top: 60px;
    color: #FDFBF7;
    /* Overriding with light beige text for the hero image */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.7);
}

.hero-buttons {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    justify-content: center;
}

/* Hero Reviews Box */
.hero-reviews {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(26, 26, 26, 0.85);
    /* Dark Surface Glass */
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle rim light */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    /* Harder shadow */
    flex-wrap: wrap;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.review-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.review-platform {
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-logo {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.review-stars {
    display: flex;
    gap: 2px;
}

.review-stars .star {
    color: #FFB800;
    font-size: 16px;
}

.review-stars .star.half {
    position: relative;
    color: #E0E0E0;
}

.review-stars .star.half::before {
    content: '★';
    position: absolute;
    left: 0;
    color: #FFB800;
    width: 50%;
    overflow: hidden;
}

.review-rating {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-text);
}

.review-count {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.review-divider {
    width: 1px;
    height: 60px;
    background-color: var(--color-border);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 20px;
    height: 20px;
    border-bottom: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
    transform: rotate(45deg);
}

@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: linear-gradient(135deg, #080808 0%, #0A0A0A 50%, #111111 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.05) 0%, transparent 70%);
    /* Dimmer pink glow */
    border-radius: 50%;
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.03) 0%, transparent 70%);
    /* Dimmer pink glow */
    border-radius: 50%;
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.about-video {
    position: relative;
    width: 100%;
    max-height: 450px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--color-primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-video:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(232, 180, 184, 0.4);
}

.about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-text h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-text);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary) 0%, transparent 100%);
}

.about-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    line-height: 2;
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.stat-item {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 28px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(232, 180, 184, 0.25);
    border-color: var(--color-primary);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-primary) 0%, #d4a5a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* Menu Section */
#menu {
    background: linear-gradient(135deg, #080808 0%, #0A0A0A 50%, #111111 100%);
    position: relative;
    overflow: hidden;
}

#menu::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#menu::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.menu-tabs {
    display: none;
    /* Desktop only */
    justify-content: center;
    margin-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--color-border);
}

.tab-btn {
    padding: 10px 20px;
    margin: 0 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text-light);
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

/* Menu Content */
.menu-category {
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--spacing-sm);
}

.mobile-category-title {
    cursor: pointer;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-primary);
    /* Use pink accent brand color */
}

.mobile-category-title::after {
    content: '+';
    font-weight: 300;
}

/* Mobile Accordion State */
.menu-category.mobile-active .menu-items {
    display: block;
    animation: fadeIn 0.3s;
}

.menu-category.mobile-active .mobile-category-title::after {
    content: '-';
}

.menu-items {
    display: none;
    /* Hidden by default on mobile */
    padding-top: var(--spacing-sm);
}

.menu-item {
    margin-bottom: var(--spacing-md);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 4px;
}

.dish-name {
    font-weight: 600;
    font-size: 1.1rem;
}

.dish-price {
    font-weight: 600;
    color: var(--color-primary);
}

.dish-desc {
    color: var(--color-text-light);
    font-size: 0.9rem;
    font-style: italic;
}

/* Reservation Section */
#reservation {
    background: linear-gradient(135deg, #080808 0%, #0A0A0A 50%, #111111 100%);
    position: relative;
    overflow: hidden;
}

#reservation::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#reservation::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Reservation Form */
.reservation-container {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.reservation-form {
    background: #161616;
    /* Dark Form Surface */
    padding: var(--spacing-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.form-group {
    margin-bottom: 18px;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 18px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
    font-family: var(--font-heading);
    letter-spacing: 0.3px;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    /* Soft border for inputs */
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background-color: #0A0A0A;
    /* Black input fill */
    color: var(--color-text);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(232, 180, 184, 0.1);
}

input::placeholder,
textarea::placeholder {
    color: var(--color-text-light);
    opacity: 0.7;
}

/* Custom Date Picker */
.month-selector {
    margin-bottom: 12px;
}

.month-select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    background: #0A0A0A;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FDFBF7' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 38px;
}

.month-select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(232, 180, 184, 0.1);
}

.date-picker {
    background: var(--color-bg);
    border-radius: 12px;
    padding: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    max-width: 100%;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    width: 100%;
}

.date-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    background: #1A1A1A;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 4px;
    position: relative;
    min-width: 0;
}

.date-day:hover:not(.disabled):not(.locked) {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.date-day.selected {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #1A1A1A;
    /* Invert text color on pink active selection */
}

.date-day.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.date-day.locked {
    background: #222222;
    border-color: rgba(255, 255, 255, 0.05);
    cursor: not-allowed;
    opacity: 0.6;
}

.date-day.locked::after {
    content: '🔒';
    position: absolute;
    top: 2px;
    right: 2px;
    font-size: 0.7rem;
}

.day-name {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2px;
    font-family: var(--font-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
}

.day-number {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Custom Time Slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 12px 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #1A1A1A;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 180, 184, 0.2);
}

.time-slot.selected {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #1A1A1A;
    /* Invert colors for active pink selection */
}

/* Number input styling */
input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.form-message {
    margin-top: 16px;
    text-align: center;
    font-weight: 600;
    padding: 12px;
    border-radius: 8px;
    display: none;
}

.form-message.success {
    color: #4ade80;
    background-color: rgba(22, 163, 74, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    display: block;
}

.form-message.error {
    color: #f87171;
    background-color: rgba(220, 38, 38, 0.1);
    border: 1px solid rgba(248, 113, 113, 0.2);
    display: block;
}

/* Favorites Grid */
.favorites-grid {
    display: flex;
    /* Horizontal scroll on mobile */
    overflow-x: auto;
    gap: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.favorites-grid::-webkit-scrollbar {
    display: none;
}

/* Favorites Section */
#favorites {
    background: linear-gradient(135deg, #080808 0%, #0A0A0A 50%, #111111 100%);
    position: relative;
    overflow: hidden;
}

#favorites::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

#favorites::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.favorites-grid {
    position: relative;
    z-index: 1;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #080808 0%, #0A0A0A 50%, #111111 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 180, 184, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.8) 0%, rgba(20, 20, 20, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(232, 180, 184, 0.3);
    border-color: var(--color-primary);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-light);
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-author h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
}

/* Hide Chrome */

.favorite-card {
    min-width: 250px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.fav-img-wrapper {
    height: 200px;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.fav-info {
    padding: var(--spacing-sm);
    background: #161616;
    text-align: center;
}

.fav-info h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.price {
    color: var(--color-primary);
    font-weight: 700;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xs);
}

.gallery-item {
    height: 200px;
    background-color: #444;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    filter: brightness(1.1);
}

/* Gallery placeholders */
.item-1 {
    background-image: url('https://images.unsplash.com/photo-1544025162-d76690b68f11?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
}

.item-2 {
    background-image: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
}

.item-3 {
    background-image: url('https://images.unsplash.com/photo-1559339352-11d035aa65de?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
}

.item-4 {
    background-image: url('https://images.unsplash.com/photo-1550966871-3ed3c47e2ce2?ixlib=rb-1.2.1&auto=format&fit=crop&w=500&q=60');
}

.item-5 {
    grid-column: span 2;
    background-image: url('https://images.unsplash.com/photo-1552566626-52f8b828add9?ixlib=rb-1.2.1&auto=format&fit=crop&w=1000&q=60');
}

/* Contact/Location */
.contact-layout {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-item {
    margin-bottom: var(--spacing-sm);
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--color-bg-dark);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-xl);
    /* Extra padding for bottom nav */
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-sm);
}

.footer-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
}

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.social-links img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.copyright {
    color: var(--color-text-light);
    font-size: 0.8rem;
}

/* Mobile Bottom Nav */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(22, 22, 22, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle dark border */
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--color-text-light);
    position: relative;
    padding: 4px;
}

.nav-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    margin-bottom: 4px;
    transition: transform 0.2s;
}

.nav-item.highlight .nav-icon {
    transform: scale(1.1);
}

.nav-item.highlight {
    color: var(--color-primary);
    font-weight: 600;
}

/* DESKTOP STYLES (Media Query) */
@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    /* Navigation */
    .hamburger {
        display: none;
    }

    .nav-links-desktop {
        display: flex;
        gap: 30px;
        align-items: center;
    }

    .mobile-bottom-nav {
        display: none;
    }

    footer {
        padding-bottom: var(--spacing-lg);
    }

    .hero-buttons {
        flex-direction: row;
    }

    /* Menu */
    .menu-tabs {
        display: flex;
    }

    .mobile-category-title {
        display: none;
    }

    .menu-category {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
        display: none;
    }

    .menu-category.active-tab {
        display: block;
        animation: fadeIn 0.5s;
    }

    /* Class to show tab content */

    .menu-items {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-md);
    }

    /* Favorites */
    .favorites-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        overflow: visible;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 200px 200px;
    }

    .item-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }

    .item-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }

    .item-3 {
        grid-column: 3 / 5;
        grid-row: 1 / 3;
        background-position: center;
    }

    .item-4 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .item-5 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    /* Contact */
    .contact-layout {
        flex-direction: row;
        align-items: center;
    }

    .contact-info {
        flex: 1;
        text-align: left;
    }

    .map-wrapper {
        flex: 1;
    }

    .info-item {
        text-align: left;
    }

    /* Reservation Form - Desktop */
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* Mobile responsive for time slots */
@media (max-width: 767px) {
    .time-slots {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .calendar-grid {
        gap: 3px;
    }

    .date-picker {
        padding: 10px;
    }

    .date-day {
        padding: 3px 1px;
        border-width: 1px;
    }

    .day-name {
        font-size: 0.55rem;
        margin-bottom: 1px;
    }

    .day-number {
        font-size: 0.9rem;
    }

    .date-day.locked::after {
        font-size: 0.55rem;
        top: 0px;
        right: 0px;
    }

    .month-select {
        font-size: 0.95rem;
        padding: 10px 12px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 48px;
    height: 48px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(232, 180, 184, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(232, 180, 184, 0.5);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Cookie Consent Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--color-primary);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.cookie-text h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-text);
}

.cookie-text p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-cookie {
    padding: 10px 24px;
    font-size: 0.9rem;
    min-width: 120px;
}

.btn-outline-cookie {
    padding: 10px 24px;
    font-size: 0.9rem;
    border: 1.5px solid var(--color-border);
    color: var(--color-text);
    background-color: transparent;
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition-fast);
    cursor: pointer;
    min-width: 120px;
}

.btn-outline-cookie:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: rgba(232, 180, 184, 0.05);
}

/* Desktop Styles for Cookie and Scroll Button */
@media (min-width: 768px) {
    .scroll-to-top {
        bottom: 30px;
        right: 30px;
        width: 56px;
        height: 56px;
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
        padding: 24px 30px;
    }

    .cookie-text {
        flex: 1;
        max-width: 70%;
    }

    .cookie-buttons {
        flex-shrink: 0;
    }
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    .scroll-to-top {
        bottom: 90px;
        right: 16px;
    }

    .cookie-content {
        padding-bottom: 24px;
    }

    .hero {
        min-height: 110vh;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero-content h1 {
        margin-bottom: 20px;
    }

    .hero-content p {
        margin-bottom: 24px;
    }

    .hero-reviews {
        padding: 16px 20px;
        gap: 16px;
        margin-top: 35px;
    }

    .platform-logo {
        height: 20px;
    }

    .review-stars .star {
        font-size: 14px;
    }

    .review-rating {
        font-size: 0.9rem;
    }

    .review-count {
        font-size: 0.7rem;
    }

    .review-divider {
        height: 50px;
    }

    .loader-logo img {
        height: 60px;
    }

    /* About Section Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-video {
        order: -1;
    }

    .about-text h3 {
        font-size: 1.75rem;
    }

    .about-text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 35px;
    }

    .stat-item {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 28px 24px;
    }

    .testimonial-stars {
        font-size: 1.1rem;
    }

    .testimonial-text {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .testimonial-author h4 {
        font-size: 1rem;
    }
}