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

/* ===== Promotions ===== */
.promotions-page { background: #0b0b0b; color: #fff; }
.promos-hero { position: relative; height: 42vh; min-height: 320px; display: grid; place-items: center; overflow: hidden; }
.promos-hero-bg { position: absolute; inset: 0; background: radial-gradient(80% 80% at 50% 20%, rgba(255,255,255,0.05), rgba(0,0,0,0.85)), url('Images/Cocktails/Handcrafted Cocktails.png') center/cover no-repeat; }
.promos-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.75)); }
.promos-hero-inner { position: relative; z-index: 1; text-align: center; padding: 0 20px; }
.promos-title { font-size: 40px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; }
.promos-subtitle { margin-top: 8px; color: #f4d03f; }
.promos-hero .btn-cta { display: inline-block; margin-top: 32px;  }

.promos-container { max-width: 1100px; margin: 36px auto 80px; padding: 0 20px; }
.promos-section { margin-bottom: 32px; background: rgba(20,20,20,0.9); border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; box-shadow: 0 16px 40px rgba(0,0,0,0.45); padding: 24px; }
.promos-heading { font-size: 26px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.promos-text { color: rgba(255,255,255,0.85); margin-bottom: 10px; }

/* Section header with chips */
.section-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; }
.promos-chip { display: inline-block; padding: 6px 10px; border-radius: 999px; font-size: 12px; letter-spacing: .3px; background: rgba(244,208,63,0.15); color: #f5d76e; border: 1px solid rgba(244,208,63,0.35); }

.promo-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.promo-card { position: relative; overflow: hidden; border-radius: 12px; background: #111; border: 1px solid #222; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.promo-card:hover { transform: translateY(-4px); box-shadow: 0 18px 36px rgba(0,0,0,.4); border-color: #d4af37; }
.promo-card img { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; }
.promo-cap { display: none; }

/* Promo lists */
.promos-list { margin: 8px 0 14px; padding-left: 18px; }
.promos-list li { margin: 6px 0; color: rgba(255,255,255,0.9); }

/* Homepage strip polish */
.promos-strip { background: rgba(15,15,15,0.95); padding: 35px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.promos-strip-inner { max-width: 1100px; margin: 0 auto; padding: 0 25px; }
.promos-strip-title { font-size: 20px; letter-spacing: .8px; margin-bottom: 10px; text-align: center; color: #fff; }
.promos-strip-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 10px; }
.promos-strip-card { overflow: hidden; border-radius: 10px; border: 1px solid #222; background: #111; }
.promos-strip-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; display: block; }
.promos-strip-cta { margin-top: 12px; text-align: center; padding: 10px; }

@media (max-width: 992px){ .promo-cards { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px){ .promos-title { font-size: 32px; } .promo-cards { grid-template-columns: 1fr; } }

/* ===== Contact & Location ===== */
.contact-page { background: #0b0b0b; color: #fff; }
.contact-hero { position: relative; height: 42vh; min-height: 320px; display: grid; place-items: center; overflow: hidden; }
.contact-hero-bg { position: absolute; inset: 0; background: radial-gradient(80% 80% at 50% 20%, rgba(255,255,255,0.05), rgba(0,0,0,0.85)), url('Images/Ambiance/Premium Atmosphere.jpeg') center/cover no-repeat; }
.contact-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.75)); }
.contact-hero-inner { position: relative; z-index: 1; text-align: center; padding: 0 20px; }
.contact-title { font-size: 40px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: #fff; }
.contact-subtitle { margin-top: 8px; color: #f4d03f; }
.contact-hero .btn-cta { display: inline-block; margin-top: 20px; }

.contact-container { max-width: 1100px; margin: 36px auto 80px; padding: 0 20px; }
.contact-section { margin-bottom: 28px; background: rgba(20,20,20,0.9); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; box-shadow: 0 16px 40px rgba(0,0,0,.45); padding: 22px; }
.contact-heading { font-size: 26px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.about-page .contact-heading { color: #fff; text-align: center; }
.contact-text, .contact-address { color: rgba(255,255,255,0.88); }
.contact-address { line-height: 1.6; margin-bottom: 12px; }
.contact-map iframe { width: 100%; height: 340px; border-radius: 12px; }
.hours-list { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px 16px; color: rgba(255,255,255,0.9); }
@media (max-width: 768px){ .hours-list { grid-template-columns: 1fr; } }

.contact-form { display: grid; gap: 14px; }
.contact-form .form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.contact-form label { color: #ddd; font-size: 14px; display: grid; gap: 6px; }
.contact-form input, .contact-form textarea { background: #111; color: #fff; border: 1px solid #333; padding: 12px 12px; border-radius: 8px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.contact-form input:focus, .contact-form textarea:focus { border-color: #d4af37; box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.contact-form .form-full { grid-column: 1 / -1; }
@media (max-width: 768px){ .contact-form .form-row { grid-template-columns: 1fr; } }

/* ===== Footer ===== */
.site-footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,.06); color: #ddd; margin-top: 48px; }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 26px 20px; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 18px; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.footer-brand img { width: 36px; height: 36px; object-fit: contain; }
.footer-title { font-weight: 800; letter-spacing: 1px; }
.footer-col h4 { font-size: 14px; text-transform: uppercase; letter-spacing: .8px; color: #f4d03f; margin-bottom: 8px; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin: 6px 0; }
.footer-list a { color: #ddd; }
.footer-list a:hover { color: #f4d03f; }
.footer-social { display: flex; gap: 10px; margin-top: 10px; }
.footer-social .footer-instagram { color: #ff0000; }
.footer-social .footer-facebook { color: #00ff00; }
.footer-social .footer-whatsapp { color: #fbff00; }
.footer-note { border-top: 1px solid rgba(255,255,255,.06); text-align: center; padding: 10px 20px; font-size: 12px; color: #aaa; }
@media (max-width: 768px){ .footer-inner { grid-template-columns: 1fr; } }

/* ===== Testimonials (Homepage) ===== */
.testimonials { margin: 24px 0 8px; background: linear-gradient(180deg, rgba(34,24,18,0.95), rgba(20,14,10,0.95)); border: 1px solid rgba(61,40,31,0.55); border-radius: 14px; padding: 45px; box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.testimonials .promos-heading { margin-bottom: 10px; text-align: center; color: #ffd48a; letter-spacing: 1px; }
.testimonials .promos-heading::after { content: ''; display: block; width: 90px; height: 3px; margin: 8px auto 0; background: linear-gradient(90deg, transparent, #c19a6b, #d4af37, #c19a6b, transparent); border-radius: 2px; }
.t-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.t-card { background: rgba(255, 255, 255, 0.85); border: 1px solid rgba(193,154,107,0.5); border-radius: 12px; padding: 14px; box-shadow: 0 10px 24px rgba(0,0,0,.45); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.t-card:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(0,0,0,.55); border-color: #d4af37; }

.t-img {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.8);
}

.t-name { font-weight: 700; color: #3d281f; margin-bottom: 4px; letter-spacing: .3px; }
.t-name .t-stars { color: #ffc107; font-size: 14px; margin-left: 6px; letter-spacing: 1px; }
.t-date { color: #7a5a3a; font-size: 12px; margin-top: -2px; margin-bottom: 6px; }
.t-quote { color: #3d281f; font-style: italic; margin-bottom: 6px; }
.t-meta { color: #5a3e2b; font-size: 13px; line-height: 1.4; }
.t-meta .t-map { color: #ffc107; }
.t-meta .t-map:hover { color: #d48f1a; text-decoration: underline; }
@media (max-width: 992px){ .t-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 768px){ .t-grid { grid-template-columns: 1fr; } }
body {
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
}

/* Navigation Bar */
.navbar {
    background-color: #000000;
    width: 100%;
    height: 60px;
    padding: 15px 0;
    position:absolute;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 35px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    height: 40px;
    width: auto;
}

.logo-text {
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
}

.nav-link {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 3px 6px;
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-link:hover {
    color: #d4af37;
}

.nav-separator {
    color: yellow;
    font-size: 20px;
    margin: 0 3px;
    font-weight: 350;
    user-select: none;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    cursor: pointer;
}

.dropdown-toggle::after {
    content: ' ▼';
    font-size: 8px;
    margin-left: 3px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background-color: #1a1a1a;
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
    z-index: 1001;
    border-radius: 4px;
    background: #0b0b0b;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Mobile active state must also reveal dropdown */
.nav-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) translateY(0);
}

.dropdown-item {
    display: block;
    color: #e6e6e6 !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
    text-transform: capitalize;
    padding: 10px 20px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: #202020;
    color: #ffffff !important;
    border-left-color: #d4af37;
    padding-left: 22px;
}

.dropdown-item:link,
.dropdown-item:visited,
.dropdown-item:active {
    color: #e6e6e6 !important;
}

.dropdown-item:focus {
    background-color: #151515;
    color: #ffffff !important;
}

.dropdown-item:active {
    background-color: #151515;
    color: #ffffff !important;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    max-height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: url('Images/hero picture.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Hero Buttons */
.hero-buttons {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    pointer-events: none;
}

.hero-buttons .btn {
    pointer-events: all;
}

.btn {
    padding: 14px 35px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 1px solid #d4af37;
    cursor: pointer;
        list-style-type: none;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Arial', sans-serif;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    text-align: center;
    position: relative;
    border-radius: 25px;
}

.btn-menu {
    background-color: #3d281f;
    color: #ffffff;
    border-color: #d4af37;
}

.btn-menu:hover {
    background-color: #4d3528;
    border-color: #f4d03f;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 2px 5px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.btn-book {
    background-color: #7a2520;
    color: #ffffff;
    border-color: #d4af37;
}

.btn-book:hover {
    background-color: #8a3530;
    border-color: #f4d03f;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6), 0 2px 5px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* Menu Page Hero */
.menu-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 360px;
    max-height: 620px;
    overflow: hidden;
}

.menu-hero-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    background-color: #000;
}

.menu-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35), rgba(0,0,0,0.15), rgba(0,0,0,0.5));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.menu-hero-title {
    font-size: 44px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.menu-hero-subtitle {
    margin-top: 8px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #f4d03f;
}

/* Menu Container */
.menu-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px 60px;
}

.menu-section { margin-bottom: 48px; }

.menu-heading {
    font-size: 28px;
    font-weight: 800;
    color: #3d281f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.menu-subheading {
    font-size: 18px;
    font-weight: 700;
    color: #7a2520;
    margin: 20px 0 8px;
}

.menu-note { color: #5a3e2b; font-size: 13px; opacity: 0.9; }

.menu-list { list-style: none; }

.menu-item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 10px 16px;
    padding: 10px 0;
    border-bottom: 1px dashed #e6e0d6;
}

.menu-item-name { font-weight: 600; color: #3d281f; }
.menu-item-price { font-weight: 700; color: #3d281f; white-space: nowrap; }

.menu-item-desc {
    grid-column: 1 / -1;
    font-size: 14px;
    color: #5a3e2b;
    line-height: 1.6;
    margin-top: -4px;
}

/* Two-column layout for menu sections (Food left, Drinks right) */
.menu-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.menu-col .menu-section {
    margin-bottom: 40px;
}

/* Elevated chalkboard background and panels for the menu page */
.menu-page {
    position: relative;
    background-image: url('Images/menus background picture.png');
    background-size: contain; /* show the whole image */
    background-position:center top; /* keep the top decorations visible */
    background-repeat: no-repeat; /* no tiling */
    background-attachment: scroll; /* avoid stretching on mobile */
    background-color: #000; /* fill the rest with black */
}

.menu-page::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 30% 10%, rgba(255,255,255,0.06), transparent 40%),
                radial-gradient(circle at 70% 90%, rgba(255,255,255,0.04), transparent 40%),
                rgba(0,0,0,0.55);
    z-index: -1;
}

.menu-page .menu-section {
    background: rgba(10, 10, 10, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    padding: 18px 20px;
    backdrop-filter: blur(4px);
}

/* Section corner badges */
.menu-section { position: relative; }
.menu-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 82px;
    height: 82px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.7);
}
.menu-badge.menu-badge--tl { left: -16px; right: auto; }
.menu-badge.menu-badge--br { bottom: -16px; top: auto; }
.menu-badge.menu-badge--bl { bottom: -16px; left: -16px; top: auto; right: auto; }

/* Inline badges for subheadings */
.menu-badge-inline {
    float: right;
    width: 58px;
    height: 58px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 6px 14px rgba(0,0,0,0.3);
    border: 2px solid rgba(255,255,255,0.7);
    margin: -6px 0 6px 12px;
}

.menu-page .menu-heading {
    color: #f5f5f5;
}

.menu-page .menu-subheading {
    color: #f4d03f;
}

.menu-page .menu-note {
    color: rgba(255,255,255,0.8);
}

.menu-page .menu-item {
    border-bottom-color: rgba(255,255,255,0.12);
}

.menu-page .menu-item-name,
.menu-page .menu-item-price {
    color: #fff;
}

.menu-page .menu-item-desc {
    color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
    .menu-hero { height: 38vh; min-height: 260px; }
    .menu-hero-title { font-size: 32px; }
}

@media (max-width: 992px) {
    .menu-grid-2 { grid-template-columns: 1fr; }
}
.promos-strip-caption {
    font-size: 12px;
    color: yellow;
    text-align: center;
    margin-top: 8px;
    font-weight: 600;
}
/* Top Dishes (compact thumbnails) */
.top-dishes {
    background: #f5f0e8;
    padding: 38px 0 48px;
    border-top: 1px solid #e3dbcf;
    border-bottom: 1px solid #e3dbcf;
}

.top-dishes-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.top-dishes-title {
    font-size: 18px;
    letter-spacing: 2px;
    color: #3d281f;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 14px;
    font-weight: 700;
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.dish-card {
    background: #ffffff;
    border: 1px solid #e6e0d6;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dish-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.dish-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.dish-caption {
    font-size: 15px bold;
    color: #5a3e2b;
    text-align: center;
    padding: 6px 6px 8px;
    letter-spacing: 0.5px;
   
}

/* Responsive tweaks for Top Dishes */
@media (max-width: 1024px) {
    .dishes-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .top-dishes { padding: 20px 0 22px; }
    .dishes-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

@media (max-width: 480px) {
    .dishes-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .top-dishes-title { font-size: 16px; }
}

/* Second Section */
.second-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-color: #1a1a1a;
    overflow: hidden;
    padding: 0px 0;
    margin-top: -1px;
}

.section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 0.8;
}

/* Add subtle overlay for better text readability - much lighter */
.section-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.section-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.worker-spot {
    position: absolute;
    right: 15px;
    top: 60px;
    z-index: 3;
    width: 190px;
    height: auto;
    pointer-events: none;
    background: transparent;
    will-change: transform;
}

.worker-photo {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.content-wrapper {
    text-align: center;
    padding: 40px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 20px;
    font-weight: 400;
    color: #f4d03f;
    margin-bottom: 60px;
    font-style: italic;
    letter-spacing: 1px;
    font-family: 'Georgia', 'Times New Roman', serif;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
    padding: 0 20px;
}

.content-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 25px 20px;
    padding-top: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    border-color: #d4af37;
}


.card-image {
    display: block;
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    margin: 0 auto 16px;
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #3d281f;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.card-description {
    font-size: 16px;
    line-height: 1.7;
    color: #5a3e2b;
    font-weight: 300;
    letter-spacing: 0.3px;
}

.section-cta {
    margin-top: 60px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.cta-text {
    font-size: 22px;
    font-weight: 500;
    color: #3d281f;
    margin-bottom: 25px;
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: 0.5px;
}

.btn-cta {
    padding: 16px 45px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: 2px solid #d4af37;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Arial', sans-serif;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    background-color: #3d281f;
    color: #ffffff;
    min-width: 250px;
}

.btn-cta:hover {
    background-color: #4d3528;
    border-color: #f4d03f;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-link {
        font-size: 10px;
        padding: 3px 4px;
    }
    
    .dropdown-menu {
        min-width: 200px;
    }
    
    .dropdown-item {
        font-size: 10px;
        padding: 8px 15px;
    }
    
    .section-title {
        font-size: 38px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .content-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
    
    .content-card {
        padding: 35px 25px;
    }

    .worker-spot {
        right: 16px;
        top: 50px;
        width: 170px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        position: relative;
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    .logo {
        order: 1;
    }
    
    .nav-links {
        order: 3;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #000000;
        flex-direction: column;
        align-items: stretch;
        padding: 15px 0;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
    .nav-links.active {
        max-height: 2000px;
    }
    
    .nav-separator {
        display: none;
    }
    
    .nav-link {
        display: block;
        padding: 12px 20px;
        font-size: 12px;
        border-bottom: 1px solid #333;
        width: 100%;
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0;
        margin-left: 20px;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        background-color: #0a0a0a;
        border: none;
        border-top: 1px solid #333;
        box-shadow: none;
        transition: max-height 0.3s ease;
        min-width: auto;
        width: calc(100% - 40px);
    }
    
    .nav-dropdown.active .dropdown-menu {
        max-height: 500px;
    }
    
    .dropdown-toggle::after {
        float: right;
        margin-top: 5px;
    }
    
    .dropdown-item {
        padding: 10px 30px;
        font-size: 11px;
        border-left: none;
        border-bottom: 1px solid #222;
    }
    
    .dropdown-item:hover {
        padding-left: 30px;
        border-left: none;
        background-color: #1a1a1a;
    }
    
    /* Mobile hero: overlay buttons on image */
    .hero {
        position: relative;
        width: 100%;
        height: 80vh;
        min-height: 520px;
        max-height: 780px;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        overflow: hidden;
    }

    .hero-background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        background-image: url('Images/mobile hero picture.png');
        background-size: contain;           /* show full image */
        background-position: top center;    /* keep top text visible */
        background-repeat: no-repeat;
        background-color: #000;            /* fill any empty space */
    }

    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        display: block;
    }
    
    .hero-buttons {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        width: 100%;
        max-width: 400px;
        padding: 0 20px;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 12px;
        min-width: auto;
    }

    /* Hide worker image on small screens to avoid overlap */
    .worker-spot {
        display: none;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 14px;
    }
    
    .logo-icon {
        height: 20px;
    }
    
    .nav-link {
        font-size: 11px;
        padding: 10px 15px;
    }
    
    .dropdown-item {
        font-size: 10px;
        padding: 8px 25px;
    }
    
    .second-section {
        min-height: 500px;
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }
    
    .content-card {
        padding: 30px 20px;
    }
    
    .card-title {
        font-size: 20px;
    }
    
    .card-description {
        font-size: 14px;
    }
    
    .section-cta {
        padding: 30px 15px;
    }
    
    .cta-text {
        font-size: 18px;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 280px;
        padding: 14px 30px;
        font-size: 12px;
    }
}

/* ===== Gallery Page ===== */
.gallery-page {
    background: #0b0b0b;
    color: #fff;
}

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

.gallery-header { text-align: center; margin-bottom: 24px; }
.gallery-title { font-size: 40px; font-weight: 800; letter-spacing: 1px; }
.gallery-subtitle { color: #f4d03f; margin-top: 6px; }

.gallery-filters { margin: 20px 0 28px; text-align: center; }
.filter-btn {
    display: inline-block;
    margin: 0 6px 8px;
    padding: 10px 16px;
    border: 1px solid #333;
    background: #141414;
    color: #ddd;
    cursor: pointer;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .5px;
    transition: all .2s ease;
}
.filter-btn:hover { border-color: #d4af37; color: #fff; }
.filter-btn.active { background: #d4af37; color: #141414; border-color: #d4af37; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 26px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
    box-shadow: 0 6px 16px rgba(0,0,0,.35);
    cursor: zoom-in;
}
.gallery-item img { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; }
.gallery-item video { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; }
.gallery-item figcaption {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 8px 10px; font-size: 12px; letter-spacing: .4px;
    background: linear-gradient( to top, rgba(0,0,0,.6), rgba(0,0,0,0) );
}
.gallery-item::after { content:''; position: absolute; inset: 0; transition: background .2s ease; }
.gallery-item:hover::after { background: rgba(0,0,0,.06); }
.gallery-item:hover img { transform: scale(1.03); transition: transform .25s ease; }

/* Lightbox */
.lightbox {
    position: fixed; inset: 0; background: rgba(0,0,0,.85);
    display: none; align-items: center; justify-content: center; flex-direction: column;
    z-index: 2000;
}
.lightbox.open { display: flex; }
.lightbox-image { max-width: 92vw; max-height: 75vh; border-radius: 8px; box-shadow: 0 12px 30px rgba(0,0,0,.6); }
.lightbox-caption { margin-top: 10px; color: #eee; font-size: 14px; }
.lightbox-close, .lightbox-prev, .lightbox-next {
    position: absolute; top: 16px; background: #141414; color: #fff; border: 1px solid #333;
    width: 38px; height: 38px; border-radius: 50%; cursor: pointer; display: grid; place-items: center;
}
.lightbox-close { right: 16px; font-size: 18px; }
.lightbox-prev { left: 16px; top: 50%; transform: translateY(-50%); font-size: 22px; }
.lightbox-next { right: 16px; top: 50%; transform: translateY(-50%); font-size: 22px; }
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { border-color: #d4af37; }

@media (max-width: 1024px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } .gallery-title{font-size:32px;} }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }


/* ===== Events & Functions ===== */
.events-page { background: #0b0b0b; color: #fff; }
.events-hero { position: relative; height: 45vh; min-height: 360px; display: grid; place-items: center; overflow: hidden; }
.events-hero-bg { position: absolute; inset: 0; background: radial-gradient(80% 80% at 50% 20%, rgba(255,255,255,0.05), rgba(0,0,0,0.85)), url('Images/Ambiance/Premium Atmosphere.jpeg') center/cover no-repeat; filter: saturate(1.05); }
.events-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.7)); }
.events-hero-inner { position: relative; z-index: 1; text-align: center; padding: 0 20px; }
.events-title { font-size: 44px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; text-shadow: 0 8px 30px rgba(0,0,0,0.6); }
.events-subtitle { margin-top: 8px; color: #f4d03f; letter-spacing: 1px; }
.events-hero .btn-cta { margin-top: 22px; }

.events-container { max-width: 1100px; margin: 40px auto 80px; padding: 0 20px; }
.events-section { margin-bottom: 40px; background: rgba(20,20,20,0.85); border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.35); padding: 22px; backdrop-filter: blur(4px); }
.events-heading { font-size: 28px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; color: #f5f5f5; }

.events-cards { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
.ev-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 18px; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.ev-card:hover { transform: translateY(-3px); box-shadow: 0 14px 28px rgba(0,0,0,.35); border-color: #d4af37; }
.ev-title { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.ev-desc { color: rgba(255,255,255,0.85); margin-bottom: 10px; }
.ev-list { padding-left: 18px; color: rgba(255,255,255,0.85); }
.ev-list li { margin: 6px 0; }

.features-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
.feature { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px; text-align: left; }
.feature h4 { color: #f4d03f; margin-bottom: 6px; }
.feature p { color: rgba(255,255,255,0.85); }

.ev-catering { columns: 2; gap: 20px; color: rgba(255,255,255,0.9); padding-left: 18px; }
.ev-catering li { break-inside: avoid; margin: 6px 0; }

.ev-form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; }
.ev-form label { color: #ddd; font-size: 14px; display: grid; gap: 6px; }
.ev-form input, .ev-form textarea { background: #111; color: #fff; border: 1px solid #333; padding: 12px 12px; border-radius: 8px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.ev-form input:focus, .ev-form textarea:focus { border-color: #d4af37; box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.form-full { grid-column: 1 / -1; }

/* WhatsApp button */
.btn-whatsapp { display: inline-block; margin-left: 12px; padding: 14px 28px; border-radius: 6px; background: #25D366; color: #0b0b0b; font-weight: 700; letter-spacing: 1px; border: 2px solid #128C7E; box-shadow: 0 6px 16px rgba(0,0,0,.25); }
.btn-whatsapp:hover { filter: brightness(1.03); transform: translateY(-1px); }

/* Highlights */
.ev-highlights { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 12px; }
.ev-highlights figure { position: relative; overflow: hidden; border-radius: 12px; background: #111; border: 1px solid #222; }
.ev-highlights img, .ev-highlights video { width: 100%; height: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; }
.ev-highlights figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 6px 8px; font-size: 12px; background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,0)); }

@media (max-width: 992px){
  .events-cards { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .ev-catering { columns: 1; }
  .ev-highlights { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 768px){
  .events-title { font-size: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .ev-highlights { grid-template-columns: repeat(2,1fr); }
}
