/* Force body to prevent overflow */
body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

/* Light Theme: Off-white/Cream + Golden Accent */
body {
    font-family: 'Playfair Display', 'Segoe UI', serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #fdfcf0; /* Cream background */
    color: #2c2c2c; /* Darker text for high contrast */
}

/* Header */
header { margin-bottom: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    border-bottom: 2px solid #d4af37;
    padding: 0 1rem;
}

header h1 { color: #2c2c2c; margin: 0; font-size: 1.8rem; cursor: pointer; }

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 2px;
    cursor: pointer;
}
.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #d4af37;
}

header nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header nav ul {
    list-style: none;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

header nav.active {
    max-height: 300px;
}

header a { 
    font-size: 0.8rem; 
    color: #2c2c2c; 
    text-decoration: none; 
    text-transform: uppercase;
    font-weight: bold;
}

/* Forms & Inputs */
input, textarea {
    background: #fff;
    border: 2px solid #d4af37;
    color: #333;
    padding: 12px;
    border-radius: 8px;
    margin: 10px auto;
    width: 90%;
    max-width: 400px;
    display: block;
    font-size: 1rem;
}

input::placeholder, textarea::placeholder {
    color: #888;
}

/* Booking Section */ 
#booking { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 20px; 
    padding: 3rem 1rem; 
} 

.booking-step {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

/* Navigation dropdown transition */
header nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid #d4af37;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

header nav.active {
    max-height: 400px;
}

/* Unified Elegant Theme: Golden text on black background */
button, .action-btn, .nav-btn-round {
    background: #000;
    color: #d4af37;
    border: 1px solid #d4af37;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

button:hover, .action-btn:hover, .nav-btn-round:hover {
    background: #d4af37;
    color: #000;
    box-shadow: 0 4px 10px rgba(212, 175, 55, 0.2);
}

/* Enhanced Carousel Styling */
#hero {
    position: relative;
    width: 100vw !important;
    height: 60vh !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0;
    top: 0;
}

#hero:hover .nav-btn-round {
    opacity: 1;
}

.nav-btn-round {
    opacity: 0;
    transition: opacity 0.3s ease;
    background: rgba(0,0,0,0.3) !important;
    border: none !important;
}

#carousel-images {
    width: 100%;
    height: 100vh;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.4);
    text-align: center;
    pointer-events: none;
}

.carousel-overlay button {
    pointer-events: auto;
}

/* Responsive adjustments */
.booking-step {
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Flexbox for action buttons in booking */
.booking-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap; /* Allows wrapping on very small screens */
}

/* Ensure inputs match button width */
input, textarea {
    width: 100%;
    max-width: 350px;
    box-sizing: border-box;
}

section {
    padding: 3rem 1rem;
    text-align: center;
    max-width: 100vw;
    margin: 0 auto;
}

/* Responsive */
@media (min-width: 768px) {
    header { margin-bottom: 0;
        height: 40px;
        justify-content: space-between;
    }
    header div {
        flex-direction: row;
        justify-content: space-between;
    }
    header h1 { order: 1; }
    header .desktop-nav { order: 2; display: block !important; }
    header nav {
        position: static;
        max-height: none;
        background: transparent;
        border: none;
        width: auto;
        box-shadow: none;
    }
    header nav ul {
        flex-direction: row;
        justify-content: flex-end;
        gap: 20px;
    }
    .menu-toggle { display: none; }
}
.booking-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.action-btn {
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid #d4af37;
    background: #000;
    color: #d4af37;
    cursor: pointer;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    min-width: 140px;
}

/* Carousel - Clean Injection */
#hero {
    position: relative;
    width: 100vw !important;
    height: 60vh !important;
    overflow: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    left: 0;
    top: 0;
}
header { margin-bottom: 0;
    z-index: 1001;
}
#carousel-images {
    width: 100%;
    height: 100%;
    position: relative;
}
.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
    z-index: 1;
}
.carousel-slide.active { opacity: 1; z-index: 2; }
.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 20px 15px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}
.carousel-nav:hover { background: rgba(255, 255, 255, 0.4); }
.carousel-nav.prev { left: 20px; }
.carousel-nav.next { right: 20px; }
.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 5;
    width: 90%;
}
.hero-title {
    color: #ffd700;
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 30px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 200;
    font-family: 'Playfair Display', serif;
}
.hero-cta {
    background: #ffd700;
    color: #000;
    border: 2px solid #ffd700;
    padding: 10px 30px;
    font-size: 0.9rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 400;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}
.hero-cta:hover {
    background: transparent;
    color: #ffd700;
    border-color: #ffd700;
    letter-spacing: 0.35em;
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}
.hero-cta:hover { background: white; color: black; }
