/* =======================================================
   === SHARED LAYOUT STYLES (Navbar, Footer, Fonts) ===
   ======================================================= */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&family=Lato:wght@400;700&display=swap');

/* Global Font */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* === Navbar Styles === */
.navbar-brand img {
    height: 40px;
}

/* Dark Navbar Background */
.bg-footer-color {
    background-color: #212121 !important; 
}

/* Nav Links (Gold #9E8A2F) */
.nav-link-custom-color {
    color: #9E8A2F !important; 
    text-decoration: none;
    padding-bottom: 5px;
    border-bottom: 3px solid transparent; 
    border-radius: 0 !important;          
    transition: border-color 0.2s ease;   
}

.nav-link-custom-color:hover,
.nav-link-custom-color:focus,
.nav-link-custom-color.active {
    border-bottom-color: #9E8A2F; 
}

/* Dropdown Symbol */
.dropdown-toggle::after {
    color: #9E8A2F;
    vertical-align: middle;
}

/* Dropdown Menu */
.dropdown-menu {
    background-color: #9E8A2F !important;
    border-radius: 0 !important; 
    margin-top: 0; 
}

.dropdown-item-custom-color {
    color: #ffffff !important; 
}

.dropdown-item-custom-color:hover {
    background-color: #7a6b24 !important; 
    color: #ffffff !important; 
}

/* Log-in Button */
.btn-custom {
    background-color: #9E8A2F !important; 
    color: #ffffff !important;            
    border: none;
    padding: 0.45rem 1rem;
    font-weight: bold;
    border-radius: 3px;
    display: inline-flex;       
    align-items: center;        
    justify-content: center;    
    gap: 0.5rem;                
}

.btn-custom:hover {
    background-color: #7a6b24 !important; 
    color: #ffffff !important;
}

/* Footer Styles */
.footer {
    color: #f8f9fa;
    background-color: #212121;
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.footer a:hover {
    color: white;
}

.footer a.text-white-50 {
    transition: color 0.3s ease;
}

.footer a.text-white-50:hover {
    color: #ffffff !important; 
}

/* Footer Social Icons */
.social-icon-btn {
    width: 50px; 
    height: 50px;
    background-color: #9E8A2F; 
    color: #ffffff;            
    font-size: 1.5rem; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: background-color 0.3s ease; 
    border: none;              
}

.social-icon-btn:hover {
    background-color: #7a6b24; 
    color: #ffffff;            
}

/* =========================================
   === BOOKING PAGE SPECIFIC STYLES ===
   ========================================= */

/* --- Header Banner --- */
.header-banner-booking {
    height: 100vh; /* Full screen height */
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-banner-booking::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8); /* Opacity increased to 0.8 */
}

.header-banner-booking .container {
    z-index: 1;
}

.header-banner-booking h1 {
    position: relative;
    z-index: 1;
    font-size: 5rem;   
    font-weight: 700; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* Style for the lead paragraph to increase size */
.header-banner-booking .lead {
    font-size: 1.5rem; 
    margin-top: 1rem;
}

/* --- Typography --- */
.booking-heading {
    /* Font family removed to match contact page's inherited system font */
    font-size: 1.8rem; 
    font-weight: 700; 
    color: #9E8A2F; 
}

/* Section Title using System Font */
.booking-section-title {
    color: #9E8A2F; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-weight: 700;
    text-transform: uppercase; 
}

/* --- Icons & Highlights --- */
.checklist-icon {
    color: #9E8A2F;
    margin-right: 10px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background-color: #9E8A2F;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* --- Form Styling --- */
.booking-form-wrapper {
    padding: 3rem;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
}

.form-label {
    /* Font family removed to use default system font (as requested previously) */
    font-weight: bold;
    font-size: 0.9rem;
    color: #555;
}

.custom-input {
    border-radius: 5px;
    padding: 0.75rem;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
}

.custom-input:focus {
    border-color: #9E8A2F;
    box-shadow: 0 0 0 0.25rem rgba(158, 138, 47, 0.25); 
    background-color: #fff;
}

/* --- Buttons --- */
.btn-cta {
    background-color: #9E8A2F;
    color: white;
    font-weight: bold;
    padding: 12px;
    border: none;
    transition: background-color 0.3s;
    text-transform: uppercase; 
}

.btn-cta:hover {
    background-color: #7d6d25;
    color: white;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .header-banner-booking h1 {
        font-size: 2rem; 
    }
    .header-banner-booking {
        height: 50vh;
    }
    .booking-heading {
        font-size: 2rem;
    }
    .booking-form-wrapper {
        padding: 1.5rem;
    }
}