/* ==========================================================================
   AMSTERDAM LUXURY — OFFICIAL STYLESHEET
   Location: Agadir, Morocco
   Design Theme: Moroccan Fine Dining, Luxury Lounge & Live Dinner Show
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. GOOGLE FONTS & DESIGN TOKENS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@200;300;400;500;600;700&display=swap');

:root {
    /* Color Palette */
    --primary_color: #D9A15A;
    --secondary_color: #B98245;
    --gold_light: #F2CA85;
    --gold_glow: rgba(217, 161, 90, 0.25);
    --gold_border: rgba(217, 161, 90, 0.45);
    --gold_border_light: rgba(217, 161, 90, 0.22);

    --dark_color: #0A0A0A;
    --dark_body: #0E0C0B;
    --dark_brown: #16110E;
    --dark_card: #181310;
    --dark_surface: #1E1713;
    --dark_accent: #261D17;

    --cream_color: #F7EFE2;
    --cream_muted: #D5C9B5;
    --cream_dim: #ADA18E;
    --white_color: #FFFFFF;
    --glass_bg: rgba(22, 17, 14, 0.85);
    --glass_border: rgba(217, 161, 90, 0.28);

    /* Typography */
    --heading_font: 'Cormorant Garamond', Georgia, serif;
    --body_font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions & Shadows */
    --transition_fast: 0.25s ease;
    --transition_smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition_slow: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --luxury_shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    --gold_shadow: 0 10px 30px rgba(217, 161, 90, 0.25);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--dark_color);
    color: var(--cream_color);
    font-family: var(--body_font);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image:
        radial-gradient(circle at 15% 15%, rgba(217, 161, 90, 0.04) 0%, transparent 45%),
        radial-gradient(circle at 85% 85%, rgba(185, 130, 69, 0.04) 0%, transparent 45%);
}

::selection {
    background: var(--primary_color);
    color: var(--dark_color);
}

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

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

a:hover {
    color: var(--gold_light);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading_font);
    color: var(--white_color);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.02em;
}

p {
    margin-bottom: 1.25rem;
    color: var(--cream_muted);
    font-size: 1rem;
}

.text-muted {
    color: var(--cream_dim) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark_color);
}

::-webkit-scrollbar-thumb {
    background: var(--dark_accent);
    border-radius: 4px;
    border: 1px solid var(--gold_border_light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary_color);
}

/* --------------------------------------------------------------------------
   3. REUSABLE LUXURY UI ATOMS & UTILITIES
   -------------------------------------------------------------------------- */
.luxury_section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
}

.section_label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--primary_color);
    margin-bottom: 1rem;
}

.section_label::before,
.section_label::after {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.5px;
    background: var(--primary_color);
    opacity: 0.85;
}

.section_title {
    font-size: clamp(2.3rem, 4.8vw, 4rem);
    font-weight: 600;
    color: var(--white_color);
    margin-bottom: 1.25rem;
    line-height: 1.15;
}

.section_subtitle {
    font-size: clamp(1.02rem, 1.35vw, 1.18rem);
    color: var(--cream_muted);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

.gold_divider {
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary_color), transparent);
    margin: 1.5rem auto 2.5rem;
}

.gold_divider_left {
    width: 70px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary_color), transparent);
    margin: 1.5rem 0 2rem;
}

/* Luxury Buttons */
.luxury_btn_gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary_color) 0%, var(--secondary_color) 100%);
    color: #000000 !important;
    font-family: var(--body_font);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 1px solid var(--primary_color);
    border-radius: 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all var(--transition_smooth);
    box-shadow: 0 4px 20px rgba(217, 161, 90, 0.3);
    cursor: pointer;
}

.luxury_btn_gold::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
    z-index: -1;
}

.luxury_btn_gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(217, 161, 90, 0.5);
    color: #000000 !important;
}

.luxury_btn_gold:hover::before {
    left: 100%;
}

.luxury_btn_outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(22, 17, 14, 0.6);
    color: var(--cream_color) !important;
    font-family: var(--body_font);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 16px 36px;
    border: 1px solid var(--gold_border);
    border-radius: 0;
    position: relative;
    transition: all var(--transition_smooth);
    backdrop-filter: blur(8px);
    cursor: pointer;
}

.luxury_btn_outline:hover {
    background: var(--primary_color);
    color: #000000 !important;
    border-color: var(--primary_color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 161, 90, 0.35);
}

.luxury_btn_whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #1b4d3e;
    color: #ffffff !important;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 15px 32px;
    border: 1px solid rgba(37, 211, 102, 0.4);
    transition: all var(--transition_smooth);
    box-shadow: 0 6px 20px rgba(27, 77, 62, 0.4);
}

.luxury_btn_whatsapp:hover {
    background: #25D366;
    color: #0a0a0a !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.header_navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    padding: 24px 0;
    transition: all var(--transition_smooth);
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, transparent 100%);
}

.header_navbar.scrolled {
    padding: 14px 0;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--gold_border_light);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}

.brand_logo_link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    min-width: 0;
}

.brand_logo_img {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 50%;
    border: 1px solid var(--primary_color);
    box-shadow: 0 0 15px rgba(217, 161, 90, 0.35);
    flex-shrink: 0;
    transition: transform var(--transition_fast);
}

.brand_logo_link:hover .brand_logo_img {
    transform: rotate(10deg) scale(1.05);
}

.brand_text_box {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand_title {
    font-family: var(--heading_font);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white_color);
    line-height: 1;
    white-space: nowrap;
}

.brand_tagline {
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--primary_color);
    margin-top: 3px;
    white-space: nowrap;
}

.nav_menu_list {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav_item_link {
    font-family: var(--body_font);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cream_color) !important;
    position: relative;
    padding: 6px 0;
    transition: color var(--transition_fast);
}

.nav_item_link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--primary_color);
    transition: width var(--transition_fast);
}

.nav_item_link:hover,
.nav_item_link.active {
    color: var(--primary_color) !important;
}

.nav_item_link:hover::after,
.nav_item_link.active::after {
    width: 100%;
}

.nav_cta_btn {
    padding: 10px 24px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

.header_reserve_btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    white-space: nowrap;
    width: auto !important;
    max-width: none;
    flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   4. LUXURY MENU TOGGLE & SIDEBAR DRAWER
   -------------------------------------------------------------------------- */
.header_menu_toggle_btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(22, 17, 14, 0.85);
    border: 1px solid var(--gold_border);
    border-radius: var(--border_radius_pill);
    padding: 9px 20px;
    color: var(--primary_color);
    font-family: var(--body_font);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    white-space: nowrap;
    width: auto !important;
    flex-shrink: 0;
    transition: all var(--transition_fast);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.header_menu_toggle_btn:hover {
    background: rgba(38, 28, 22, 0.95);
    border-color: var(--primary_color);
    color: var(--gold_light);
    box-shadow: 0 0 25px rgba(217, 161, 90, 0.35);
    transform: translateY(-1px);
}

.toggle_bars_icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 20px;
    height: 13px;
}

.toggle_bars_icon .bar {
    width: 100%;
    height: 1.5px;
    background: var(--primary_color);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.toggle_bars_icon .bar_mid {
    width: 70%;
    margin-left: auto;
}

.header_menu_toggle_btn:hover .toggle_bars_icon .bar_mid {
    width: 100%;
}

.header_menu_toggle_btn:hover .toggle_bars_icon .bar {
    background: var(--gold_light);
}

/* Sidebar Drawer Navigation */
.luxury_sidebar_drawer,
.mobile_nav_drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 440px;
    height: 100vh;
    background: linear-gradient(180deg, rgba(14, 11, 9, 0.985) 0%, rgba(8, 7, 6, 0.99) 100%);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1px solid var(--gold_border);
    z-index: 1200;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
    transition: right 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.9);
}

.luxury_sidebar_drawer.open,
.mobile_nav_drawer.open {
    right: 0;
}

.drawer_backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 1190;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition_smooth);
}

.drawer_backdrop.open {
    opacity: 1;
    visibility: visible;
}

.drawer_header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gold_border_light);
}

.drawer_brand_box {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.drawer_brand_logo {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--primary_color);
    object-fit: cover;
}

.drawer_brand_title {
    font-family: var(--heading_font);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--white_color);
    display: block;
    line-height: 1.1;
}

.drawer_brand_sub {
    font-size: 0.58rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary_color);
    display: block;
    margin-top: 3px;
}

.drawer_close_btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gold_border_light);
    border-radius: var(--border_radius_pill);
    padding: 6px 14px;
    color: var(--cream_muted);
    font-family: var(--body_font);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition_fast);
}

.drawer_close_btn:hover {
    color: var(--primary_color);
    border-color: var(--primary_color);
    background: rgba(217, 161, 90, 0.12);
}

.drawer_body_content {
    flex: 1;
    padding: 10px 10px 10px 0px;
    overflow-y: auto;
}

.drawer_links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.drawer_link {
    display: flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 8px;
    font-family: var(--heading_font);
    font-size: 1.45rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--cream_color) !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(217, 161, 90, 0.06);
    transition: all var(--transition_fast);
}

.drawer_link_num {
    font-family: var(--body_font);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: var(--primary_color);
    opacity: 0.75;
    width: 32px;
}

.drawer_link_text {
    flex: 1;
}

.drawer_link_arrow {
    font-size: 1rem;
    color: var(--primary_color);
    opacity: 0;
    transform: translateX(-8px);
    transition: all var(--transition_fast);
}

.drawer_link:hover,
.drawer_link.active {
    color: var(--primary_color) !important;
    background: rgba(217, 161, 90, 0.09);
    border-color: rgba(217, 161, 90, 0.25);
    transform: translateX(6px);
}

.drawer_link:hover .drawer_link_arrow,
.drawer_link.active .drawer_link_arrow {
    opacity: 1;
    transform: translateX(0);
}

.drawer_info_box {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--gold_border_light);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.drawer_info_item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--cream_muted);
}

.drawer_footer {
    padding-top: 20px;
    border-top: 1px solid var(--gold_border_light);
}

.drawer_social_row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 14px;
}

.drawer_social_icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--gold_border_light);
    color: var(--cream_color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all var(--transition_fast);
}

.drawer_social_icon:hover {
    background: var(--primary_color);
    color: var(--dark_color);
    border-color: var(--primary_color);
    transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. INNER PAGE HERO BANNER
   -------------------------------------------------------------------------- */
.page_header_section {
    position: relative;
    min-height: 440px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark_color);
    background-size: cover;
    background-position: center;
    padding-top: 130px;
    padding-bottom: 70px;
    text-align: center;
    border-bottom: 1px solid var(--gold_border_light);
}

.page_header_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.94) 100%);
    z-index: 1;
}

.page_header_content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.page_breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--primary_color);
    margin-bottom: 15px;
}

.page_breadcrumb a {
    color: var(--cream_muted);
}

.page_breadcrumb a:hover {
    color: var(--primary_color);
}

.page_header_title {
    font-size: clamp(2.6rem, 5.5vw, 4.5rem);
    font-weight: 700;
    color: var(--white_color);
    margin-bottom: 14px;
}

.page_header_desc {
    font-size: 1.08rem;
    color: var(--cream_muted);
    max-width: 660px;
    margin: 0 auto;
    font-weight: 300;
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   6. HERO SECTION (HOMEPAGE)
   -------------------------------------------------------------------------- */
.hero_section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark_color);
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero_bg_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
    animation: hero_zoom 25s infinite alternate ease-in-out;
    z-index: 1;
}

@keyframes hero_zoom {
    0% {
        transform: scale(1.03);
    }

    100% {
        transform: scale(1.12);
    }
}

.hero_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(14, 12, 11, 0.35) 0%, rgba(10, 10, 10, 0.88) 85%),
        linear-gradient(180deg, rgba(10, 10, 10, 0.7) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 2;
}

.hero_content_wrapper {
    position: relative;
    z-index: 3;
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.hero_badge_box {
    margin-bottom: 1.5rem;
}

.hero_badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 24px;
    background: rgba(23, 18, 15, 0.75);
    border: 1px solid var(--gold_border);
    backdrop-filter: blur(10px);
    font-size: 0.76rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary_color);
}

.hero_main_title {
    font-size: clamp(2.8rem, 6.8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.03em;
}

.hero_tagline_text {
    font-family: var(--heading_font);
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    font-style: italic;
    color: var(--gold_light);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
}

.hero_desc_text {
    font-size: clamp(0.98rem, 1.25vw, 1.18rem);
    color: var(--cream_color);
    max-width: 720px;
    margin: 0 auto 2.5rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero_actions_box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero_scroll_indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--cream_muted);
    text-decoration: none;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    transition: color var(--transition_fast);
}

.hero_scroll_indicator:hover {
    color: var(--primary_color);
}

.scroll_mouse_icon {
    width: 22px;
    height: 36px;
    border: 1.5px solid var(--gold_border);
    border-radius: 12px;
    position: relative;
}

.scroll_wheel_dot {
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 6px;
    background: var(--primary_color);
    border-radius: 2px;
    animation: scroll_wheel 2s infinite;
}

@keyframes scroll_wheel {
    0% {
        opacity: 1;
        transform: translate(-50%, 0);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 14px);
    }
}

/* --------------------------------------------------------------------------
   7. BRAND STORY & ABOUT SECTION
   -------------------------------------------------------------------------- */
.about_section {
    background-color: var(--dark_brown);
    position: relative;
}

.about_image_frame {
    position: relative;
    padding: 16px;
}

.about_image_frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 65%;
    height: 65%;
    border-top: 2px solid var(--primary_color);
    border-left: 2px solid var(--primary_color);
    z-index: 1;
    pointer-events: none;
}

.about_image_frame::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 65%;
    height: 65%;
    border-bottom: 2px solid var(--primary_color);
    border-right: 2px solid var(--primary_color);
    z-index: 1;
    pointer-events: none;
}

.about_main_img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
    transition: transform var(--transition_smooth);
    box-shadow: var(--luxury_shadow);
}

.about_image_frame:hover .about_main_img {
    transform: scale(1.02);
}

.about_floating_badge {
    position: absolute;
    bottom: -15px;
    left: -15px;
    background: rgba(18, 14, 12, 0.96);
    border: 1px solid var(--primary_color);
    padding: 20px 26px;
    z-index: 3;
    box-shadow: var(--luxury_shadow);
    backdrop-filter: blur(12px);
    text-align: center;
}

.badge_number {
    font-family: var(--heading_font);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary_color);
    line-height: 1;
    display: block;
}

.badge_text {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--cream_color);
    margin-top: 4px;
    display: block;
}

.about_content_box {
    padding-left: 30px;
}

.about_feature_item {
    display: flex;
    gap: 10px;
}

.about_lead_text {
    font-size: 1.18rem;
    color: var(--white_color);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about_feature_mini_card {
    background: var(--dark_card);
    border: 1px solid var(--gold_border_light);
    padding: 22px 20px;
    height: 100%;
    transition: all var(--transition_smooth);
    border-radius: 0;
}

.about_feature_mini_card:hover {
    border-color: var(--primary_color);
    background: var(--dark_surface);
    transform: translateY(-3px);
}

.mini_card_icon {
    font-size: 1.5rem;
    color: var(--primary_color);
    margin-bottom: 10px;
}

.mini_card_title {
    font-family: var(--heading_font);
    font-size: 1.25rem;
    color: var(--white_color);
    margin-bottom: 4px;
}

.mini_card_sub {
    font-size: 0.84rem;
    color: var(--cream_muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. RESTAURANT EXPERIENCE (4 LUXURY CARDS)
   -------------------------------------------------------------------------- */
.experience_section {
    background-color: var(--dark_color);
    position: relative;
}

.experience_card {
    background: var(--dark_card);
    border: 1px solid var(--gold_border_light);
    padding: 42px 32px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all var(--transition_smooth);
    display: flex;
    flex-direction: column;
}

.experience_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary_color), transparent);
    opacity: 0;
    transition: opacity var(--transition_smooth);
}

.experience_card:hover {
    transform: translateY(-8px);
    border-color: var(--gold_border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), var(--gold_shadow);
    background: var(--dark_surface);
}

.experience_card:hover::before {
    opacity: 1;
}

.experience_card_number {
    font-family: var(--heading_font);
    font-size: 2.5rem;
    color: rgba(217, 161, 90, 0.25);
    font-weight: 700;
    position: absolute;
    top: 25px;
    right: 25px;
    line-height: 1;
    transition: color var(--transition_fast);
}

.experience_card:hover .experience_card_number {
    color: rgba(217, 161, 90, 0.55);
}

.experience_icon_box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold_border);
    background: rgba(23, 18, 15, 0.8);
    color: var(--primary_color);
    font-size: 1.6rem;
    margin-bottom: 25px;
    transition: all var(--transition_smooth);
}

.experience_card:hover .experience_icon_box {
    background: var(--primary_color);
    color: var(--dark_color);
    transform: scale(1.08);
}

.experience_title {
    font-size: 1.65rem;
    color: var(--white_color);
    margin-bottom: 15px;
}

.experience_desc {
    font-size: 0.95rem;
    color: var(--cream_muted);
    line-height: 1.7;
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   9. SIGNATURE MENU & DETAILED MENU ITEMS (NO PRICING)
   -------------------------------------------------------------------------- */
.menu_section {
    background-color: var(--dark_brown);
    position: relative;
}

.menu_tabs_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.menu_tab_btn {
    background: transparent;
    border: none;
    color: var(--cream_muted);
    font-family: var(--body_font);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 12px 24px;
    position: relative;
    cursor: pointer;
    transition: all var(--transition_fast);
}

.menu_tab_btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary_color);
    transition: width var(--transition_fast);
}

.menu_tab_btn:hover {
    color: var(--cream_color);
}

.menu_tab_btn.active {
    color: var(--primary_color);
}

.menu_tab_btn.active::after {
    width: 80%;
}

.menu_card {
    background: var(--dark_card);
    border: 1px solid var(--gold_border_light);
    overflow: hidden;
    transition: all var(--transition_smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu_card:hover {
    transform: translateY(-6px);
    border-color: var(--gold_border);
    box-shadow: var(--luxury_shadow);
}

.menu_img_box {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.menu_card_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.menu_card:hover .menu_card_img {
    transform: scale(1.08);
}

.menu_category_tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(14, 12, 11, 0.9);
    border: 1px solid var(--gold_border);
    color: var(--primary_color);
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 5px 14px;
    backdrop-filter: blur(6px);
}

.menu_content_box {
    padding: 26px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu_header_row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 12px;
}

.menu_item_title {
    font-size: 1.48rem;
    color: var(--white_color);
    margin-bottom: 0;
}

.menu_item_badge_tag {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--primary_color);
    border: 1px solid var(--gold_border_light);
    padding: 3px 10px;
    background: rgba(217, 161, 90, 0.08);
    white-space: nowrap;
}

.menu_item_desc {
    font-size: 0.92rem;
    color: var(--cream_muted);
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.menu_item_footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--gold_border_light);
    padding-top: 16px;
}

.menu_item_badge {
    font-size: 0.76rem;
    color: var(--gold_light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.menu_order_btn {
    background: transparent;
    border: none;
    color: var(--primary_color);
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    transition: color var(--transition_fast);
}

.menu_order_btn:hover {
    color: var(--white_color);
}

/* Detailed Menu List Style (for menu.html) */
.menu_category_block {
    margin-bottom: 65px;
}

.menu_category_heading {
    font-size: 2.2rem;
    color: var(--primary_color);
    border-bottom: 1px solid var(--gold_border);
    padding-bottom: 14px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.menu_list_item {
    padding: 22px 18px;
    border-bottom: 1px solid var(--gold_border_light);
    background: var(--dark_card);
    transition: all var(--transition_fast);
    height: 100%;
}

.menu_list_item:hover {
    background: var(--dark_surface);
    border-color: var(--gold_border);
    transform: translateX(4px);
}

.menu_list_header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 15px;
    margin-bottom: 8px;
}

.menu_list_title {
    font-size: 1.4rem;
    color: var(--white_color);
    margin-bottom: 0;
}

.menu_list_tag {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--primary_color);
    border: 1px solid var(--gold_border_light);
    padding: 3px 8px;
    background: rgba(217, 161, 90, 0.08);
    white-space: nowrap;
}

.menu_list_desc {
    font-size: 0.94rem;
    color: var(--cream_muted);
    margin-bottom: 0;
    line-height: 1.65;
}

/* --------------------------------------------------------------------------
   10. EDITORIAL MAGAZINE SECTION
   -------------------------------------------------------------------------- */
.editorial_section {
    background: linear-gradient(135deg, var(--dark_color) 0%, var(--dark_brown) 100%);
    position: relative;
    padding: 120px 0;
    border-top: 1px solid var(--gold_border_light);
    border-bottom: 1px solid var(--gold_border_light);
}

.editorial_image_wrapper {
    position: relative;
}

.editorial_main_img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    box-shadow: var(--luxury_shadow);
    filter: brightness(0.95) contrast(1.05);
}

.editorial_quote_card {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: rgba(20, 16, 13, 0.96);
    border: 1px solid var(--primary_color);
    padding: 30px;
    max-width: 320px;
    box-shadow: var(--luxury_shadow);
    backdrop-filter: blur(12px);
}

.editorial_quote_text {
    font-family: var(--heading_font);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--cream_color);
    line-height: 1.5;
    margin-bottom: 10px;
}

.editorial_quote_author {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary_color);
    margin-bottom: 0;
}

.editorial_content_col {
    padding-left: 50px;
}

.editorial_eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--primary_color);
    margin-bottom: 1rem;
    display: block;
}

.editorial_headline {
    font-size: clamp(2.4rem, 4.8vw, 4.2rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white_color);
    margin-bottom: 1.5rem;
}

.editorial_p {
    font-size: 1.08rem;
    color: var(--cream_muted);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.editorial_spec_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 2.5rem;
    border-top: 1px solid var(--gold_border_light);
    border-bottom: 1px solid var(--gold_border_light);
    padding: 20px 0;
}

.spec_value {
    font-family: var(--heading_font);
    font-size: 1.85rem;
    color: var(--primary_color);
    font-weight: 700;
    display: block;
    line-height: 1;
}

.spec_label {
    font-size: 0.74rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream_muted);
    margin-top: 6px;
    display: block;
}

/* --------------------------------------------------------------------------
   11. SIGNATURE COCKTAILS SECTION
   -------------------------------------------------------------------------- */
.cocktail_section {
    background-color: var(--dark_color);
    position: relative;
}

.cocktail_card {
    background: linear-gradient(180deg, rgba(30, 23, 19, 0.9) 0%, rgba(16, 13, 11, 0.98) 100%);
    border: 1px solid var(--gold_border_light);
    padding: 16px 15px;
    height: 100%;
    position: relative;
    transition: all var(--transition_smooth);
    display: flex;
    flex-direction: column;
}

.cocktail_card:hover {
    transform: translateY(-8px);
    border-color: var(--primary_color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), var(--gold_shadow);
}

.cocktail_icon_wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--gold_border);
    color: var(--primary_color);
    font-size: 1.3rem;
    margin-bottom: 20px;
    background: rgba(217, 161, 90, 0.1);
}

.cocktail_title {
    font-size: 1.6rem;
    color: var(--white_color);
    margin-bottom: 8px;
}

.cocktail_ingredients {
    font-size: 0.86rem;
    color: var(--primary_color);
    font-style: italic;
    margin-bottom: 12px;
}

.cocktail_desc {
    font-size: 0.92rem;
    color: var(--cream_muted);
    line-height: 1.65;
    margin-bottom: 20px;
    flex-grow: 1;
}

.cocktail_footer_meta {
    border-top: 1px solid var(--gold_border_light);
    padding-top: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cocktail_tag {
    font-size: 0.74rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold_light);
    font-weight: 500;
}

.cocktail_glass_type {
    font-size: 0.74rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cream_muted);
    font-weight: 400;
}

/* --------------------------------------------------------------------------
   12. GALLERY SECTION & LIGHTBOX MODAL (UNIFORM SQUARE GRID)
   -------------------------------------------------------------------------- */
.gallery_section {
    background-color: var(--dark_brown);
    position: relative;
}

.gallery_filter_wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.gallery_filter_btn {
    background: rgba(20, 16, 13, 0.7);
    border: 1px solid var(--gold_border_light);
    color: var(--cream_muted);
    font-family: var(--body_font);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 22px;
    cursor: pointer;
    transition: all var(--transition_fast);
}

.gallery_filter_btn:hover,
.gallery_filter_btn.active {
    background: var(--dark_surface);
    color: var(--primary_color);
    border-color: var(--primary_color);
    box-shadow: 0 4px 15px rgba(217, 161, 90, 0.25);
}

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

.gallery_item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--dark_color);
    border: 1px solid var(--gold_border_light);
    transition: all var(--transition_smooth);
}

.gallery_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
    filter: brightness(0.92) contrast(1.04);
}

.gallery_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.1) 0%, rgba(10, 10, 10, 0.4) 40%, rgba(10, 10, 10, 0.94) 100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: opacity var(--transition_smooth);
}

.gallery_zoom_icon {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(14, 12, 11, 0.9);
    border: 1px solid var(--primary_color);
    color: var(--primary_color);
    font-size: 1.15rem;
    transform: scale(0.7);
    transition: transform var(--transition_smooth);
}

.gallery_item:hover {
    border-color: var(--primary_color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), var(--gold_shadow);
    transform: translateY(-4px);
}

.gallery_item:hover .gallery_img {
    transform: scale(1.08);
    filter: brightness(1.02) contrast(1.06);
}

.gallery_item:hover .gallery_overlay {
    opacity: 1;
}

.gallery_item:hover .gallery_zoom_icon {
    transform: scale(1);
}

.gallery_caption_title {
    font-size: 1.25rem;
    color: var(--white_color);
    margin-bottom: 4px;
    transform: translateY(8px);
    transition: transform var(--transition_smooth);
}

.gallery_caption_cat {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary_color);
    font-weight: 500;
    transform: translateY(8px);
    transition: transform var(--transition_smooth);
}

.gallery_item:hover .gallery_caption_title,
.gallery_item:hover .gallery_caption_cat {
    transform: translateY(0);
}

/* Lightbox Modal Custom Styling */
.modal_backdrop_custom {
    background-color: rgba(10, 10, 10, 0.95);
}

.lightbox_modal_content {
    background: var(--dark_brown);
    border: 1px solid var(--primary_color);
    border-radius: 0;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.lightbox_modal_header {
    border-bottom: 1px solid var(--gold_border_light);
    padding: 15px 25px;
}

.lightbox_modal_body {
    padding: 0;
    text-align: center;
    background: #000;
}

.lightbox_img {
    max-height: 75vh;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}

.lightbox_modal_footer {
    border-top: 1px solid var(--gold_border_light);
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --------------------------------------------------------------------------
   13. DINNER SHOW / EVENTS SPECIALTY CARDS
   -------------------------------------------------------------------------- */
.show_schedule_card {
    background: var(--dark_card);
    border: 1px solid var(--gold_border_light);
    padding: 34px 28px;
    transition: all var(--transition_smooth);
    height: 100%;
}

.show_schedule_card:hover {
    border-color: var(--primary_color);
    transform: translateY(-5px);
    box-shadow: var(--luxury_shadow);
    background: var(--dark_surface);
}

.show_time_badge {
    display: inline-block;
    background: rgba(217, 161, 90, 0.12);
    border: 1px solid var(--primary_color);
    color: var(--primary_color);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    padding: 5px 14px;
    margin-bottom: 18px;
}

.vip_package_card {
    background: linear-gradient(180deg, var(--dark_surface) 0%, var(--dark_card) 100%);
    border: 1px solid var(--gold_border);
    padding: 44px 32px;
    text-align: center;
    transition: all var(--transition_smooth);
    position: relative;
}

.vip_package_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.9), var(--gold_shadow);
}

.package_experience_tag {
    font-family: var(--heading_font);
    font-size: 1.4rem;
    color: var(--primary_color);
    margin: 15px 0 20px;
    letter-spacing: 0.05em;
}

.package_features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
    text-align: left;
}

.package_features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gold_border_light);
    font-size: 0.92rem;
    color: var(--cream_muted);
    display: flex;
    align-items: center;
    gap: 12px;
}

.package_features li i {
    color: var(--primary_color);
}

/* --------------------------------------------------------------------------
   14. PRIVATE EVENTS & SALONS
   -------------------------------------------------------------------------- */
.salon_card {
    background: var(--dark_card);
    border: 1px solid var(--gold_border_light);
    overflow: hidden;
    transition: all var(--transition_smooth);
    height: 100%;
}

.salon_card:hover {
    border-color: var(--primary_color);
    transform: translateY(-6px);
    box-shadow: var(--luxury_shadow);
    background: var(--dark_surface);
}

.salon_img_box {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: #000;
}

.salon_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.salon_card:hover .salon_img {
    transform: scale(1.08);
}

.salon_capacity {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(14, 12, 11, 0.92);
    border: 1px solid var(--gold_border);
    color: var(--primary_color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.salon_content {
    padding: 32px 28px;
}

/* --------------------------------------------------------------------------
   15. SOCIAL MEDIA / INSTAGRAM FEED
   -------------------------------------------------------------------------- */
.social_section {
    background-color: var(--dark_color);
    position: relative;
}

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

.instagram_card {
    position: relative;
    height: 260px;
    overflow: hidden;
    border: 1px solid var(--gold_border_light);
}

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

.instagram_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 12, 11, 0.85);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transition: opacity var(--transition_fast);
    color: var(--white_color);
}

.instagram_card:hover .instagram_img {
    transform: scale(1.08);
}

.instagram_card:hover .instagram_overlay {
    opacity: 1;
}

.instagram_icon {
    font-size: 2rem;
    color: var(--primary_color);
}

.instagram_handle {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    color: var(--cream_color);
}

/* --------------------------------------------------------------------------
   16. ATMOSPHERE SECTION
   -------------------------------------------------------------------------- */
.atmosphere_section {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    text-align: center;
    padding: 100px 0;
}

.atmosphere_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(14, 12, 11, 0.75) 0%, rgba(10, 10, 10, 0.95) 100%);
    z-index: 1;
}

.atmosphere_content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.atmosphere_title {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    color: var(--white_color);
    margin-bottom: 1.5rem;
}

.atmosphere_text {
    font-size: 1.12rem;
    color: var(--cream_color);
    line-height: 1.85;
    margin-bottom: 2.5rem;
}

/* --------------------------------------------------------------------------
   17. RESERVATION SECTION & PORTAL
   -------------------------------------------------------------------------- */
.reservation_section {
    background-color: var(--dark_brown);
    position: relative;
}

.reservation_card_box {
    background: var(--dark_card);
    border: 1px solid var(--gold_border);
    padding: 55px 45px;
    box-shadow: var(--luxury_shadow);
    position: relative;
}

.reservation_card_box::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary_color), transparent);
}

.form_label_custom {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--cream_color);
    margin-bottom: 8px;
    display: block;
}

.form_control_custom {
    background: rgba(14, 12, 11, 0.85);
    border: 1px solid var(--gold_border_light);
    color: var(--white_color) !important;
    border-radius: 0;
    padding: 14px 18px;
    font-size: 0.92rem;
    font-family: var(--body_font);
    transition: all var(--transition_fast);
}

.form_control_custom:focus {
    background: rgba(20, 16, 13, 0.95);
    border-color: var(--primary_color);
    box-shadow: 0 0 15px rgba(217, 161, 90, 0.3);
    outline: none;
}

.form_control_custom::placeholder {
    color: rgba(213, 201, 181, 0.6);
}

select.form_control_custom option {
    background: var(--dark_brown);
    color: var(--white_color);
}

.reservation_direct_info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding-left: 30px;
}

.direct_info_box {
    margin-bottom: 30px;
}

.direct_info_label {
    font-size: 0.76rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary_color);
    margin-bottom: 6px;
    display: block;
}

.direct_info_value {
    font-family: var(--heading_font);
    font-size: 1.55rem;
    color: var(--white_color);
    text-decoration: none;
    transition: color var(--transition_fast);
}

.direct_info_value:hover {
    color: var(--primary_color);
}

/* --------------------------------------------------------------------------
   18. CONTACT & LOCATION SECTION (INCL. GOOGLE MAPS)
   -------------------------------------------------------------------------- */
.contact_section {
    background-color: var(--dark_color);
    position: relative;
}

.contact_info_card {
    background: var(--dark_card);
    border: 1px solid var(--gold_border_light);
    padding: 40px;
    height: 100%;
}

.contact_info_item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact_info_item:last-child {
    margin-bottom: 0;
}

.contact_icon_box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold_border);
    background: rgba(23, 18, 15, 0.8);
    color: var(--primary_color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact_item_title {
    font-family: var(--heading_font);
    font-size: 1.25rem;
    color: var(--white_color);
    margin-bottom: 4px;
}

.contact_item_text {
    font-size: 0.92rem;
    color: var(--cream_muted);
    margin-bottom: 0;
}

.map_container {
    position: relative;
    height: 100%;
    min-height: 420px;
    border: 1px solid var(--gold_border);
    overflow: hidden;
    background: var(--dark_brown);
    box-shadow: var(--luxury_shadow);
    transition: border-color var(--transition_smooth);
}

.map_container:hover {
    border-color: var(--primary_color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), var(--gold_shadow);
}

.map_iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    filter: invert(90%) hue-rotate(180deg) contrast(1.2);
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.luxury_footer {
    background-color: var(--dark_color);
    border-top: 1px solid var(--gold_border);
    padding: 85px 0 35px;
    position: relative;
}

.footer_brand_logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--primary_color);
    object-fit: cover;
    margin-bottom: 20px;
}

.footer_brand_title {
    font-size: 1.85rem;
    color: var(--white_color);
    margin-bottom: 12px;
}

.footer_brand_desc {
    font-size: 0.92rem;
    color: var(--cream_muted);
    max-width: 320px;
    line-height: 1.75;
}

.footer_heading {
    font-family: var(--heading_font);
    font-size: 1.4rem;
    color: var(--white_color);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer_heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary_color), transparent);
}

.footer_links_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer_link_item {
    font-size: 0.9rem;
    color: var(--cream_muted) !important;
    transition: all var(--transition_fast);
    display: inline-block;
}

.footer_link_item:hover {
    color: var(--primary_color) !important;
    transform: translateX(6px);
}

.footer_newsletter_desc {
    font-size: 0.92rem;
    color: var(--cream_muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter_form {
    position: relative;
}

.newsletter_input {
    background: rgba(22, 17, 14, 0.95);
    border: 1px solid var(--gold_border);
    color: #FFFFFF !important;
    border-radius: 0;
    padding: 14px 18px;
    padding-right: 56px;
    font-size: 0.92rem;
    width: 100%;
    transition: border-color var(--transition_fast);
}

.newsletter_input:focus {
    border-color: var(--primary_color);
    box-shadow: 0 0 15px rgba(217, 161, 90, 0.3);
    outline: none;
}

.newsletter_input::placeholder {
    color: rgba(213, 201, 181, 0.7);
}

.newsletter_submit_btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 52px;
    background: linear-gradient(135deg, var(--primary_color) 0%, var(--secondary_color) 100%);
    border: none;
    color: #000000;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all var(--transition_fast);
}

.newsletter_submit_btn:hover {
    background: var(--gold_light);
    box-shadow: 0 0 15px rgba(217, 161, 90, 0.4);
}

.footer_social_icons {
    display: flex;
    gap: 14px;
    margin-top: 25px;
}

.footer_social_btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold_border_light);
    color: var(--cream_color) !important;
    font-size: 1.1rem;
    transition: all var(--transition_fast);
}

.footer_social_btn:hover {
    background: var(--primary_color);
    color: #000000 !important;
    border-color: var(--primary_color);
    transform: translateY(-3px);
}

.footer_bottom_bar {
    border-top: 1px solid var(--gold_border_light);
    margin-top: 60px;
    padding-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright_text {
    font-size: 0.82rem;
    color: var(--cream_muted);
    margin-bottom: 0;
}

.legal_links {
    display: flex;
    gap: 20px;
}

.legal_link {
    font-size: 0.8rem;
    color: var(--cream_muted) !important;
}

.legal_link:hover {
    color: var(--primary_color) !important;
}

/* --------------------------------------------------------------------------
   20. FLOATING ACTIONS & TOAST
   -------------------------------------------------------------------------- */
.floating_actions_wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating_btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
    transition: all var(--transition_smooth);
    cursor: pointer;
    text-decoration: none;
}

.floating_btn_whatsapp {
    background: #25D366;
    color: #ffffff !important;
}

.floating_btn_whatsapp:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.floating_btn_instagram {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #ffffff !important;
}

.floating_btn_instagram:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 10px 30px rgba(214, 36, 159, 0.6);
}

.floating_btn_top {
    background: var(--dark_brown);
    border: 1px solid var(--gold_border);
    color: var(--primary_color) !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating_btn_top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating_btn_top:hover {
    background: var(--primary_color);
    color: #000000 !important;
}

.toast_custom {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1100;
    background: var(--dark_brown);
    border: 1px solid var(--primary_color);
    padding: 16px 24px;
    box-shadow: var(--luxury_shadow);
    color: var(--white_color);
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateY(100px);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition_smooth);
}

.toast_custom.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.toast_icon {
    font-size: 1.4rem;
    color: var(--primary_color);
}

.toast_msg_title {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--white_color);
    margin-bottom: 2px;
}

.toast_msg_sub {
    font-size: 0.8rem;
    color: var(--cream_muted);
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   21. RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* Large Tablets & Small Laptops (992px to 1199px) */
@media (max-width: 1199.98px) {
    .header_navbar {
        padding: 16px 0;
    }

    .brand_title {
        font-size: 1.3rem;
    }

    .brand_tagline {
        font-size: 0.58rem;
        letter-spacing: 0.24em;
    }
}

/* Medium Tablets & Below (<= 991.98px) */
@media (max-width: 991.98px) {
    .nav_menu_list {
        display: none !important;
    }

    .header_navbar {
        padding: 14px 0;
    }

    .header_navbar.scrolled {
        padding: 10px 0;
    }

    .brand_logo_img {
        width: 42px;
        height: 42px;
    }

    .brand_title {
        font-size: 1.25rem;
        letter-spacing: 0.12em;
    }

    .brand_tagline {
        font-size: 0.54rem;
        letter-spacing: 0.2em;
    }

    .header_reserve_btn {
        padding: 9px 16px;
        font-size: 0.72rem;
        letter-spacing: 0.1em;
    }

    .header_menu_toggle_btn {
        padding: 8px 16px;
        font-size: 0.72rem;
        gap: 8px;
        letter-spacing: 0.16em;
    }

    .luxury_section {
        padding: 80px 0;
    }

    .about_content_box {
        padding-left: 0;
        margin-top: 50px;
    }

    .about_main_img {
        height: 420px;
    }

    .about_floating_badge {
        bottom: -15px;
        left: 10px;
        padding: 15px 20px;
    }

    .editorial_content_col {
        padding-left: 0;
        margin-top: 50px;
    }

    .editorial_main_img {
        height: 420px;
    }

    .editorial_quote_card {
        right: 10px;
        bottom: -20px;
        padding: 20px;
    }

    .gallery_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

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

    .reservation_direct_info {
        padding-left: 0;
        margin-top: 40px;
    }

    .reservation_card_box {
        padding: 35px 25px;
    }
}

/* Mobile Devices & Phablets (<= 767.98px) */
@media (max-width: 767.98px) {
    .header_navbar {
        padding: 12px 0;
    }

    .header_navbar.scrolled {
        padding: 8px 0;
    }

    .brand_logo_link {
        gap: 10px;
    }

    .brand_logo_img {
        width: 38px;
        height: 38px;
    }

    .brand_title {
        font-size: 1.15rem;
        letter-spacing: 0.1em;
    }

    .brand_tagline {
        font-size: 0.5rem;
        letter-spacing: 0.16em;
    }

    .header_reserve_btn {
        padding: 8px 14px;
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        gap: 6px;
        width: auto !important;
    }

    .header_menu_toggle_btn {
        padding: 8px 14px;
        font-size: 0.68rem;
        letter-spacing: 0.14em;
        gap: 7px;
    }

    .toggle_bars_icon {
        width: 17px;
        height: 12px;
    }

    .luxury_section {
        padding: 60px 0;
    }

    .page_header_section {
        min-height: 320px;
        padding-top: 100px;
    }

    .hero_section {
        padding-top: 100px;
        min-height: 90vh;
    }

    .hero_main_title {
        font-size: clamp(2rem, 8vw, 3.4rem);
        margin-bottom: 1.2rem;
    }

    .hero_desc_text {
        font-size: 0.95rem;
        margin-bottom: 1.8rem;
    }

    .hero_actions_box {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }

    .hero_actions_box .luxury_btn_gold,
    .hero_actions_box .luxury_btn_outline {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.78rem;
    }

    .about_feature_mini_card {
        margin-bottom: 10px;
    }

    .editorial_spec_grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .atmosphere_section {
        padding: 80px 0;
    }

    .atmosphere_title {
        font-size: clamp(1.8rem, 6vw, 2.6rem);
    }

    .atmosphere_content .luxury_btn_gold,
    .atmosphere_content .luxury_btn_whatsapp {
        width: 100%;
    }

    .floating_actions_wrapper {
        bottom: 16px;
        right: 16px;
        gap: 8px;
    }

    .floating_btn {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }

    .footer_bottom_bar {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .legal_links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }
}

/* Compact Mobile (<= 575.98px) */
@media (max-width: 575.98px) {
    .header_navbar .container-fluid {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .brand_logo_link {
        gap: 8px;
    }

    .brand_logo_img {
        width: 35px;
        height: 35px;
    }

    .brand_title {
        font-size: 1.05rem;
        letter-spacing: 0.08em;
    }

    .brand_tagline {
        font-size: 0.46rem;
        letter-spacing: 0.12em;
    }

    .header_reserve_btn {
        padding: 7px 11px;
        font-size: 0.65rem;
        letter-spacing: 0.06em;
        gap: 5px;
        width: auto !important;
    }

    .header_menu_toggle_btn {
        padding: 7px 11px;
        font-size: 0.65rem;
        letter-spacing: 0.1em;
        gap: 6px;
    }

    .toggle_bars_icon {
        width: 15px;
        height: 10px;
    }

    .luxury_sidebar_drawer,
    .mobile_nav_drawer {
        width: 100%;
        max-width: 100%;
        padding: 24px 18px;
    }

    .drawer_link {
        font-size: 1.25rem;
        padding: 8px 10px;
    }

    .gallery_grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .instagram_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .reservation_card_box {
        padding: 24px 16px;
    }

    .contact_info_card {
        padding: 24px 16px;
    }

    .map_container {
        height: 300px;
    }

    .menu_tab_btn {
        padding: 8px 14px;
        font-size: 0.7rem;
    }
}

/* Ultra Small Screens (<= 380px) */
@media (max-width: 430px) {

    .header_navbar .container-fluid {
        padding-left: 12px !important;
        padding-top: 6px !important;
        padding-right: 12px !important;
        padding-bottom: 6px !important;
    }

    .drawer_brand_title {
        font-size: 16px;
    }

    .drawer_brand_sub {
        font-size: 8px;
    }

    .brand_logo_img {
        width: 40px;
        height: 40px;
    }

    .brand_title {
        font-size: 20px;
    }

    .header_reserve_btn {
        display: none;
        padding: 6px 8px;
        font-size: 0.62rem;
        gap: 4px;
    }

    .header_menu_toggle_btn {
        padding: 6px 9px;
        font-size: 0.62rem;
    }

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

/* Disable AOS Animations on Mobile (<= 480px) */
@media (max-width: 480px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }
}