/* =====================================================
   AYA ROOF LOUNGE — LUXURY RESTAURANT WEBSITE
   ===================================================== */

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

:root {
    --bg: #f2efe6;
    --bg-light: #eae6db;
    --bg-dark: #1a1a1a;
    --gold: #b08d57;
    --gold-light: #c9a96e;
    --gold-dark: #8c6d3f;
    --text: #1a1a1a;
    --text-muted: #666;
    --text-light: #999;
    --white: #fff;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Montserrat', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--gold-dark) var(--bg);
}

html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

::selection {
    background: rgba(176,141,87,0.25);
    color: #000;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--gold-light); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

h2 {
    font-size: clamp(36px, 5vw, 64px);
    margin-bottom: 30px;
    color: #000;
}

h4 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 8px;
}

h6 {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

p {
    margin-bottom: 16px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.8;
}

/* === IMAGES === */
.section-image {
    position: relative;
    overflow: hidden;
}

.section-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.section-image:hover img {
    transform: scale(1.03);
}

.team-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: grayscale(15%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.team-card:hover .team-img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

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

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

.event-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* === BUTTONS === */
.btn-outline {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg);
    border-color: var(--gold);
}

.btn-filled {
    display: inline-block;
    padding: 16px 50px;
    background: var(--gold);
    color: var(--bg);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    margin-top: 20px;
}

.btn-filled:hover {
    background: var(--gold-light);
    color: var(--bg);
}

/* === HEADER === */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.4s ease;
}

#main-header.scrolled {
    background: rgba(242,239,230,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    color: #ffffff !important;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.4s ease;
}

#main-header.scrolled .logo {
    color: #1a1a1a !important;
}

.desktop-nav {
    display: flex;
    gap: 20px;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap;
}

#main-header.scrolled .desktop-nav a {
    color: #333;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.desktop-nav a:hover {
    color: #fff;
}

#main-header.scrolled .desktop-nav a:hover {
    color: #000;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-reserve-header,
.btn-contact-header {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 10px 24px;
    transition: all 0.3s ease;
}

.btn-reserve-header {
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
}

#main-header.scrolled .btn-reserve-header {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-reserve-header:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

.btn-contact-header {
    color: #666;
}

.btn-contact-header:hover {
    color: #000;
}

/* Language Switcher & GTranslate Enforcements */
.gtranslate_wrapper .gt_options, 
div.gt_options,
.gt_switcher .gt_option {
    bottom: auto !important;
    top: 100% !important;
}

#main-header:not(.scrolled) .gtranslate_wrapper .gt_selected a,
#main-header:not(.scrolled) .gtranslate_wrapper .gt_selected span {
    color: #ffffff !important;
}

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.4);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1px;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 4px;
}

.lang-btn.active {
    color: var(--gold);
}

.lang-btn:hover {
    color: #fff;
}

.lang-divider {
    color: rgba(255,255,255,0.15);
    font-size: 11px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 1.5px;
    background: #1a1a1a;
    transition: all 0.3s ease;
}

/* === FULLSCREEN NAV === */
.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26,26,26,0.98);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.fullscreen-nav.open {
    opacity: 1;
    pointer-events: all;
}

.close-nav {
    position: absolute;
    top: 30px;
    right: 40px;
    background: none;
    border: none;
    color: #fff;
    font-size: 36px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-nav:hover { color: var(--gold); }

.fullscreen-nav nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.fullscreen-nav .nav-link {
    font-family: var(--font-heading);
    font-size: 36px;
    color: rgba(255,255,255,0.7);
    text-transform: lowercase;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.fullscreen-nav .nav-link:hover {
    color: #fff;
    transform: translateX(10px);
}

.nav-footer {
    position: absolute;
    bottom: 40px;
    text-align: center;
}

.nav-footer p {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
    margin-bottom: 4px;
}

.nav-footer a { color: var(--gold); }

/* === HERO === */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,26,0.3) 0%, rgba(26,26,26,0.6) 60%, rgba(26,26,26,0.85) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 30px;
}

.hero-subtitle {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 300;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
    font-style: italic;
}

.hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.65);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator span {
    display: block;
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* === SECTIONS === */
.section {
    padding: 120px 50px;
}

.section-label {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
}

.section-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-text p {
    font-size: 14px;
    line-height: 1.9;
}

.section-center {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

/* === TEAM === */
.team-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.team-card h4 {
    margin-top: 20px;
    font-size: 20px;
}

.team-card p {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* === MENU SECTION === */
.menu-highlight-section {
    padding: 0;
}

.menu-fullwidth-bg {
    position: relative;
    padding: 120px 50px;
    background: #e8e4d9;
}

.menu-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(176,141,87,0.04), transparent);
}

.menu-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.menu-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

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

.menu-img {
    min-height: 250px;
    margin-bottom: 20px;
}

.menu-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.menu-item p {
    font-size: 13px;
}

/* === REVIEWS === */
.reviews-section {
    background: var(--bg);
}

.reviews-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.reviews-slider {
    position: relative;
    min-height: 200px;
    margin: 40px 0;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: translateY(10px);
}

.review-slide.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.review-slide blockquote {
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    font-weight: 300;
    color: #333;
    line-height: 1.6;
    margin-bottom: 24px;
}

.review-slide cite {
    font-family: var(--font-body);
    font-size: 12px;
    font-style: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.review-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.review-prev, .review-next {
    background: none;
    border: 1px solid rgba(176,141,87,0.4);
    color: var(--gold);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.review-prev:hover, .review-next:hover {
    background: var(--gold);
    color: var(--bg);
}

.review-dots {
    display: flex;
    gap: 8px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(176,141,87,0.25);
    cursor: pointer;
    transition: background 0.3s ease;
}

.review-dot.active {
    background: var(--gold);
}

/* === EVENTS === */
.events-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.event-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.event-img {
    min-height: 350px;
    transition: transform 0.6s ease;
}

.event-card:hover .event-img {
    transform: scale(1.03);
}

.event-info {
    padding: 24px 0;
}

.event-date {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.event-info h4 {
    font-size: 22px;
    margin-top: 8px;
}

/* === RESERVATION === */
.reservation-section {
    position: relative;
    text-align: center;
    padding: 150px 50px;
    overflow: hidden;
}

.reservation-bg {
    position: absolute;
    inset: 0;
    background: #e8e4d9;
}

.reservation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(176,141,87,0.04), transparent);
}

.reservation-content {
    position: relative;
    z-index: 1;
    max-width: 750px;
    margin: 0 auto;
}

.reservation-content h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 300;
    line-height: 1.4;
}

.reservation-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 30px 0;
    font-size: 13px;
    color: var(--text-muted);
}

.reservation-hours .divider {
    color: var(--gold);
}

.reservation-phone {
    margin-top: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.reservation-phone a {
    color: var(--gold);
    font-weight: 600;
}

/* === FOOTER === */
.footer-section {
    background: #1a1a1a;
    border-top: none;
    padding: 80px 50px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-inner h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold) !important;
}

.footer-col p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 4px;
    color: rgba(255,255,255,0.4);
}

.footer-col a {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    transition: color 0.3s ease;
}

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

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

.social-links a {
    color: rgba(255,255,255,0.4);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.25);
}

/* === ANIMATIONS === */
[data-animate] {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-animate="left"] {
    transform: translateX(-40px);
}

[data-animate="right"] {
    transform: translateX(40px);
}

[data-animate="up"] {
    transform: translateY(40px);
}

[data-animate].visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* === PAGE HERO (sub-pages) === */
.page-hero {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
}

.page-hero-short {
    height: 45vh;
    min-height: 320px;
}

.page-hero .hero-title {
    font-size: clamp(40px, 6vw, 80px);
    font-style: italic;
}

/* === ACTIVE NAV LINK === */
.desktop-nav a.active-link {
    color: var(--gold) !important;
}

.desktop-nav a.active-link::after {
    width: 100%;
}

/* === MENU PAGE LIST === */
.menu-category {
    max-width: 800px;
    margin: 0 auto 60px;
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    color: #000;
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(176,141,87,0.2);
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-list-item {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.menu-list-item:last-child {
    border-bottom: none;
}

.menu-list-left {
    flex: 1;
    padding-right: 20px;
}

.menu-list-left h4 {
    font-size: 20px;
    margin-bottom: 4px;
}

.menu-list-left p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

.menu-price {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--gold);
    font-weight: 500;
    white-space: nowrap;
    padding-top: 4px;
}

/* === REVIEWS PAGE GRID === */
.reviews-full-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.review-card {
    background: #fff;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}

.review-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.review-card blockquote {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 24px;
}

.review-author strong {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2px;
}

.review-author span {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

/* === RESERVATION FORM === */
.reservation-form-section {
    background: var(--bg);
}

.form-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.form-info h2 {
    font-size: clamp(32px, 4vw, 48px);
}

.form-info-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item h6 {
    margin-bottom: 4px;
}

.info-item p {
    margin-bottom: 2px;
}

.reservation-form-box {
    background: #fff;
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.04);
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 20px;
}

.form-group label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--bg);
    color: var(--text);
    transition: border-color 0.3s ease;
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

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

.reservation-form-box .btn-filled {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 12px;
    text-align: center;
}

/* === CONTACT PAGE === */
.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-block h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 28px;
}

.contact-item h6 {
    margin-bottom: 6px;
}

.contact-item p {
    margin-bottom: 2px;
}

.contact-item a {
    color: var(--gold);
}

.contact-map {
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-map iframe {
    display: block;
}

/* === MENU BLOCK LAYOUT (Divella Style) === */
.menu-block {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 45px;
    max-width: 1060px;
    margin: 0 auto 60px;
    align-items: start;
}

.menu-block.reverse {
    grid-template-columns: 1fr 320px;
}

.menu-block-hero {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    border: 3px solid var(--gold);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.menu-block-hero img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.menu-block-hero:hover img {
    transform: scale(1.03);
}

.menu-block-body {
    padding: 0;
}

.menu-block-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
}

.menu-block-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* Individual dish with thumbnail */
.menu-dish {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.menu-dish:last-child {
    border-bottom: none;
}

.menu-dish-thumb {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--gold-light);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.menu-dish-info h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 4px;
}

.menu-dish-info p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* === GALLERY === */
.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 28px;
    border: 1px solid rgba(0,0,0,0.15);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0,0,0,0.4);
}

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 18px;
    color: #fff;
    font-style: italic;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay span {
    opacity: 1;
    transform: translateY(0);
}

/* === LIGHTBOX === */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    opacity: 1;
    pointer-events: all;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 36px;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: #fff;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255,255,255,0.2);
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }

/* === VIDEO GALLERY === */
.video-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    cursor: pointer;
}

.video-embed-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 16px;
    border: 2px solid var(--gold-light);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    margin-bottom: 16px;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
    background: rgba(0,0,0,0.5);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-card:hover .video-play-btn {
    border-color: var(--gold);
    background: rgba(176,141,87,0.3);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-btn svg {
    margin-left: 4px;
}

.video-card h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.video-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .section-grid { grid-template-columns: 1fr; gap: 40px; }
    .section-grid.reverse { direction: ltr; }
    .menu-items { grid-template-columns: repeat(2, 1fr); }
    .events-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .form-container { grid-template-columns: 1fr; gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .reviews-full-grid { grid-template-columns: 1fr; max-width: 600px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .video-grid { grid-template-columns: repeat(2, 1fr); }
    .menu-block { grid-template-columns: 1fr; gap: 30px; }
    .menu-block.reverse { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {

    .fullscreen-nav .nav-link { font-size: 22px; line-height: 1; padding: 4px 0; }
    .fullscreen-nav nav { gap: 4px; }
    .nav-footer { bottom: 20px; }

    .desktop-nav { display: none; }
    .btn-reserve-header { display: none; }
    .hamburger { display: flex; }
    .lang-switcher { display: none; }

    .header-inner { padding: 18px 24px; }
    .logo { font-size: 20px; }

    .section { padding: 80px 24px; }
    .hero-title { font-size: 32px; }
    .page-hero { height: 40vh; min-height: 280px; }

    .team-grid { grid-template-columns: 1fr; max-width: 350px; }
    .menu-items { grid-template-columns: 1fr; max-width: 350px; margin-left: auto; margin-right: auto; }
    .events-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; text-align: center; }

    .reservation-hours { flex-direction: column; gap: 8px; }
    .reservation-hours .divider { display: none; }

    .menu-fullwidth-bg { padding: 80px 24px; }
    .reservation-section { padding: 100px 24px; }
    .footer-section { padding: 60px 24px 20px; }
    
    .social-links { justify-content: center; }

    .form-row { grid-template-columns: 1fr; }
    .reservation-form-box { padding: 24px; }
    .menu-list-item { flex-direction: column; gap: 4px; }
    .menu-price { padding-top: 0; }
    .review-card { padding: 24px; }
    .gallery-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .video-grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
    .filter-btn { padding: 10px 20px; font-size: 10px; }
}

/* === HERO VIDEO BACKGROUND === */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-video-bg iframe {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 100vw !important;
    height: 56.25vw !important; /* 16:9 */
    min-height: 100vh !important;
    min-width: 177.78vh !important; /* 16:9 */
    transform: translate(-50%, -50%) !important;
    border: 0 !important;
    pointer-events: none !important;
}

#hero-yt-player {
    width: 100% !important;
    height: 100% !important;
}

@media (max-width: 768px) {
    .hero-video-bg {
        display: block;
    }
    .hero-video-bg iframe {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 100vw !important;
        height: 56.25vw !important;
        min-height: 100vh !important;
        min-width: 177.78vh !important;
        transform: translate(-50%, -50%) !important;
    }
    #hero.hero-section {
        background-image: none !important;
    }
}

