/*
Theme Name: Hotel Cepu Theme
Theme URI: https://buatwebsaja.com/
Author: buatwebsaja.com
Author URI: https://buatwebsaja.com/
Description: Tema kustom WordPress modern, profesional, ringan, responsif, dan mobile friendly untuk website hotel dengan panel admin global dan fitur kamar terintegrasi WhatsApp.
Version: 1.1.0
Text Domain: hotelcepu
*/

/* ==========================================================================
   1. DESIGN TOKENS & VARIABLES (LUXURY DARK & GOLD THEME)
   ========================================================================== */
:root {
    --color-bg-dark: #faf8f5;       /* Light Creamy Alabaster */
    --color-bg-card: #ffffff;       /* Soft White */
    --color-bg-card-hover: #fcfbfa; /* Pristine Soft Beige Hover */
    --color-gold: #ad8c5e;          /* Refined Luxury Gold */
    --color-gold-hover: #947348;    /* Deeper Gold */
    --color-gold-glow: rgba(173, 140, 94, 0.08);
    --color-text-white: #121722;    /* Deep Luxury Charcoal for Headings */
    --color-text-primary: #334155;  /* Soft Charcoal for Body */
    --color-text-secondary: #64748b;/* Slate for Subtext */
    --color-border: rgba(173, 140, 94, 0.15); /* Delicate Gold Border */
    --color-border-hover: rgba(173, 140, 94, 0.45);
    --color-primary: #121722;       /* Deep Luxury Charcoal/Navy for Banners */
    --color-accent: #ad8c5e;        /* Warm Gold Accent */
    
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 12px 35px rgba(173, 140, 94, 0.05), 0 2px 5px rgba(0, 0, 0, 0.01);
    --shadow-glow: 0 0 25px rgba(173, 140, 94, 0.08);
    --border-radius: 6px;           /* Slightly sharper corners for a tailored look */
    --border-radius-lg: 12px;
    --container-width: 1200px;
    
    --color-glass-bg: rgba(255, 255, 255, 0.75);
    --color-glass-border: rgba(173, 140, 94, 0.18);
}
/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    height: 100%;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-primary);
    background-color: var(--color-bg-dark);
    overflow-x: hidden;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

ul, ol {
    list-style: none;
}

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    background: none;
    border: none;
    outline: none;
}

button {
    cursor: pointer;
}

/* ==========================================================================
   3. TYPOGRAPHY & DECORATIONS
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    color: var(--color-text-white);
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.5em;
    letter-spacing: 0.5px;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; font-weight: 400; }
h3 { font-size: 1.65rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }

/* Elegant Section Title Underline Decoration */
.section-title {
    position: relative;
    padding-bottom: 1.5rem;
    margin-bottom: 3.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: var(--color-gold);
}

.section-title::before {
    content: '♦';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    font-size: 8px;
    z-index: 2;
}

/* ==========================================================================
   4. LAYOUT UTILITIES
   ========================================================================== */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 7rem 0;
}

.section-bg-alt {
    background-color: #f7f4ed;
}

.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ==========================================================================
   5. BUTTONS (LUXURY HOVER STATES)
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-gold);
    color: #000;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-gold-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(197, 168, 128, 0.4);
}

.btn-outline {
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background-color: var(--color-gold);
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(197, 168, 128, 0.2);
}

.btn-dark {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-white);
}

.btn-dark:hover {
    border-color: var(--color-text-white);
    transform: translateY(-3px);
}

.btn-wa {
    background-color: #128c7e;
    color: #fff;
    box-shadow: 0 4px 15px rgba(18, 140, 126, 0.25);
    border: 1px solid #128c7e;
}

.btn-wa:hover {
    background-color: #075e54;
    color: #fff;
    border-color: #075e54;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(18, 140, 126, 0.4);
}

/* ==========================================================================
   6. HEADER & NAVIGATION (GLASSMORPHISM)
   ========================================================================== */
.site-header {
    background-color: var(--color-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--color-glass-border);
    box-shadow: 0 4px 30px rgba(11, 15, 25, 0.02);
    transition: var(--transition-smooth);
}

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

.logo a {
    font-family: var(--font-serif);
    font-size: 2.1rem;
    font-weight: 400;
    color: var(--color-text-white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--color-gold);
    font-style: italic;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style: none;
}

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

.nav-menu a {
    font-weight: 400;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition-smooth);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--color-gold);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 80%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    color: var(--color-gold);
    transition: var(--transition-smooth);
}

.nav-toggle svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-toggle svg line {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    transform-origin: center;
}

.nav-toggle.open svg {
    transform: rotate(90deg);
}

.nav-toggle.open line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.open line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ==========================================================================
   7. HERO SECTION (KEN BURNS EFFECT)
   ========================================================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

/* Animated Zoom Background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    animation: kenBurns 20s infinite alternate;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(11, 15, 25, 0.4) 0%, rgba(11, 15, 25, 0.9) 100%),
                linear-gradient(to right, rgba(11, 15, 25, 0.8), transparent);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
    animation-fill-mode: both;
    font-family: var(--font-serif);
    font-style: italic;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
    animation-fill-mode: both;
}

/* ==========================================================================
   8. CARD COMPONENTS (LUXURY HOVER GLOWS)
   ========================================================================== */
.card {
    background-color: var(--color-bg-card);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    border: 1px solid var(--color-border);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--shadow-glow);
}

.card-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.card-img::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(11, 15, 25, 0.8), transparent);
    z-index: 1;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

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

.card:hover .card-img::after {
    opacity: 0.9;
}

.card-content {
    padding: 2.2rem;
    background-color: var(--color-bg-card);
    transition: var(--transition-smooth);
}

.card:hover .card-content {
    background-color: var(--color-bg-card-hover);
}

.card-price {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-gold);
    margin-bottom: 0.75rem;
    font-family: var(--font-serif);
}

.card-title {
    margin-bottom: 1.25rem;
}

.card-title a {
    color: var(--color-text-white);
}

.card-title a:hover {
    color: var(--color-gold);
}

.card-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: var(--color-text-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 0.75rem 0;
    margin-bottom: 1.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.card-meta svg {
    width: 14px;
    height: 14px;
    fill: var(--color-gold);
}

/* ==========================================================================
   9. FOOTER & FLOATING ACTIONS (CLEAN LUXURY)
   ========================================================================== */
.site-footer {
    background-color: var(--color-bg-dark);
    color: var(--color-text-secondary);
    padding: 7rem 0 3rem 0;
    font-size: 0.95rem;
    border-top: 1px solid var(--color-border);
    margin-top: auto;
}
.site-footer h3 {
    font-size: 1.8rem;
    color: var(--color-text-white);
    margin-bottom: 1.5rem;
}

.site-footer h4 {
    font-size: 1.25rem;
    color: var(--color-text-white);
    margin-bottom: 1.75rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 3.5rem;
    margin-bottom: 5rem;
}

.footer-about p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-links li {
    margin-bottom: 0.85rem;
}

.footer-links a {
    color: var(--color-text-secondary);
}

.footer-links a:hover {
    color: var(--color-gold);
    padding-left: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

/* Floating Actions with Wave Animation */
.floating-actions {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: var(--transition-smooth);
    color: white;
    position: relative;
}

.floating-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: inherit;
    opacity: 0.4;
    z-index: -1;
    animation: wavePulse 2.5s infinite;
}

.floating-btn:hover {
    transform: scale(1.15) rotate(10deg);
}

.floating-btn.wa {
    background-color: #25d366;
}

.floating-btn.phone {
    background-color: #007bff;
}

.floating-btn svg {
    width: 26px;
    height: 26px;
    fill: currentColor;
}

/* ==========================================================================
   10. INTERACTIVE GALLERY & LIGHTBOX
   ========================================================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(7, 10, 17, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 50px rgba(0,0,0,0.8);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: var(--color-gold);
    font-size: 2.5rem;
    cursor: pointer;
    font-family: var(--font-serif);
    transition: var(--transition-smooth);
}

.lightbox-close:hover {
    color: var(--color-text-white);
    transform: rotate(90deg);
}

/* ==========================================================================
   11. BREADCRUMBS & INNER PAGE ELEMENTS
   ========================================================================== */
.breadcrumbs {
    padding: 1.5rem 0;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border);
}

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

.breadcrumbs span {
    margin: 0 0.75rem;
    color: var(--color-border);
}

/* Form Styles for Admin Settings & Public Form */
.booking-strip-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) 150px;
    gap: 1.5rem;
    align-items: end;
}

input[type='text'], 
input[type='email'], 
input[type='number'], 
input[type='date'], 
textarea, 
select {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-white);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    width: 100%;
    font-family: var(--font-main);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.01);
}

input:focus, 
textarea:focus, 
select:focus {
    border-color: var(--color-gold);
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(173, 140, 94, 0.1), 0 4px 12px rgba(173, 140, 94, 0.05);
}

/* ==========================================================================
   12. KEYFRAMES & RESPONSIVE DESIGN
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes kenBurns {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.12);
    }
}

@keyframes wavePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    h1 { font-size: 3.5rem; }
    .hero h1 { font-size: 3.5rem; }
    .section { padding: 5rem 0; }
}

@media (max-width: 768px) {
    .site-header .container {
        height: 80px;
    }
    
    .logo a {
        font-size: 1.8rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: rgba(250, 248, 245, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.75rem;
        padding: 2rem 0;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        border-top: 1px solid var(--color-border);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.03);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        font-size: 1.25rem !important;
        letter-spacing: 3px !important;
        font-weight: 400 !important;
        color: var(--color-text-white) !important;
        padding: 0.75rem 2rem !important;
        display: block;
        text-align: center;
        width: 100%;
        transition: var(--transition-smooth);
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-menu a:hover,
    .nav-menu .current-menu-item a {
        color: var(--color-gold) !important;
        background-color: rgba(173, 140, 94, 0.05);
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero { min-height: 80vh; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    
    .floating-actions {
        display: none;
    }

    .booking-strip-form {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
}

/* ==========================================================================
   13. ADDITIONAL FORM INPUTS & BOOKING CUSTOM STYLE
   ========================================================================== */
/* Covered by general inputs styling rules */

/* ==========================================================================
   14. MOBILE BOTTOM NAVIGATION (sticky)
   ========================================================================== */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    z-index: 1000;
    height: 65px;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.06);
}

.mobile-bottom-nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.mobile-bottom-nav li {
    flex: 1;
    height: 100%;
}

.mobile-bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    height: 100%;
    gap: 4px;
}

.mobile-bottom-nav a svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.mobile-bottom-nav a:hover,
.mobile-bottom-nav .active a {
    color: var(--color-gold);
}

@media (max-width: 768px) {
    .mobile-bottom-nav {
        display: block;
    }
    body {
        padding-bottom: 75px; /* prevent layout overlap with bottom bar */
    }
}

/* ==========================================================================
   15. NOTA / INVOICE & RECEIPT LAYOUTS
   ========================================================================== */
.nota-card {
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    max-width: 800px;
    margin: 3rem auto;
    box-shadow: var(--shadow-premium);
}

.nota-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.nota-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2.5rem;
}

.nota-table th, .nota-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    font-size: 0.95rem;
}

.nota-table th {
    font-weight: 600;
    color: var(--color-text-white);
    background-color: rgba(255, 255, 255, 0.01);
}

.nota-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

/* ==========================================================================
   16. PRINT RULES FOR RECEIPTS
   ========================================================================== */
@media print {
    body {
        background-color: #ffffff !important;
        color: #000000 !important;
    }
    .site-header, .site-footer, .breadcrumbs, .floating-actions, .mobile-bottom-nav, .no-print, .btn, button {
        display: none !important;
    }
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .nota-card {
        border: none !important;
        box-shadow: none !important;
        background-color: #ffffff !important;
        color: #000000 !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    .nota-table th, .nota-table td {
        border-color: #cccccc !important;
        color: #000000 !important;
    }
    .nota-table th {
        background-color: #f2f2f2 !important;
    }
    h1, h2, h3, h4, h5, h6, p, td, th, span, strong, div {
        color: #000000 !important;
    }
}

/* ==========================================================================
   17. BOOKING PAGE GRID LAYOUT
   ========================================================================== */
.grid-booking-page {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 991px) {
    .grid-booking-page {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

/* ==========================================================================
   18. PREMIUM INNER PAGE BANNER
   ========================================================================== */
.inner-page-banner {
    background-image: url('images/hero_neutral.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 6.5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.inner-page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at center, rgba(18, 23, 34, 0.4) 0%, rgba(18, 23, 34, 0.85) 100%);
    z-index: 1;
}

.inner-page-banner .container {
    position: relative;
    z-index: 2;
}

.inner-page-banner h1 {
    font-family: var(--font-serif);
    font-size: 3.25rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.inner-page-banner p {
    color: var(--color-gold);
    font-family: var(--font-main);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

