body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
    background-color: #fff;
}
.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 20px;
}
.site-header {
    border-bottom: 1px solid #ebebeb;
    padding: 20px 0;
}
.nav-container {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.logo {
    font-weight: bold;
    font-size: 1.5rem;
    color: #CBBD93;
    text-decoration: none;
}
nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
}
nav a:hover {
    color: #CBBD93;
}
.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    gap: 8px;
    border-radius: 16px;
    overflow: hidden;
    margin: 30px 0;
}
.gallery-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}
.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.gallery-grid img:hover {
    transform: scale(1.02);
}
.hero-section h1 {
    font-size: 2rem;
    margin-bottom: 5px;
}
.tagline {
    color: #717171;
    font-size: 1.1rem;
    margin-top: 0;
}
.description-section {
    margin-top: 40px;
    line-height: 1.6;
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 30px;
}
.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #b0b0b0;
    border-radius: 8px;
    box-sizing: border-box;
}
.submit-btn {
    background-color: #CBBD93;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
}
.submit-btn:hover {
    background-color: #CBBD93;
}
.status-msg {
    background-color: #f7f7f7;
    padding: 10px;
    border-radius: 6px;
    color: #008a05;
    margin-bottom: 15px;
}
.site-footer {
    text-align: center;
    border-top: 1px solid #ebebeb;
    padding: 20px;
    margin-top: 60px;
    color: #717171;
}
/* Lightbox Popup Background */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

/* Lightbox Full Screen Image */
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    /* Prevents users from dragging the photo to their desktop */
    user-select: none;
    -webkit-user-drag: none; 
}

/* Close Button (X) */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
}

/* Make grid thumbnails look clickable */
.gallery-grid img {
    cursor: pointer;
}
/* Calendar Styles */
.calendar-section {
    max-width: 800px;
    margin: 40px auto;
}
.calendar-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.btn-nav {
    background-color: #222;
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
}
.btn-nav:hover {
    background-color: #CBBD93;
}
.calendar-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 6px;
    margin-bottom: 20px;
}
.calendar-table th {
    padding: 10px;
    text-align: center;
    font-weight: 600;
    color: #717171;
}
.calendar-table td {
    height: 80px;
    width: 14.28%;
    border-radius: 12px;
    position: relative;
    vertical-align: top;
    padding: 10px;
    box-sizing: border-box;
}
.day-num {
    font-weight: bold;
    font-size: 1.1rem;
}
.calendar-table td.empty {
    background-color: #f7f7f7;
    border: 1px dashed #e0e0e0;
}
.calendar-table td.available {
    background-color: #eaf7ed;
    border: 1px solid #b2dba1;
    color: #1e4620;
}
.calendar-table td.booked {
    background-color: #fff0f1;
    border: 1px solid #ffccd1;
    color: #c13542;
    text-decoration: line-through;
}
/* Legend styling */
.calendar-legend {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}
.legend-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #555;
}
.legend-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-right: 8px;
    display: inline-block;
}
.available-box { background-color: #eaf7ed; border: 1px solid #b2dba1; }
.booked-box { background-color: #fff0f1; border: 1px solid #ffccd1; }

/* Booking Form Styling */
.booking-container {
    max-width: 700px;
    margin: 40px auto;
    background: #fff;
    border: 1px solid #ebebeb;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}
.booking-form .form-group {
    margin-bottom: 20px;
}
.booking-form .form-row {
    display: flex;
    gap: 20px;
}
.booking-form .form-row .form-group {
    flex: 1;
}
.booking-form select {
    width: 100%;
    padding: 12px;
    border: 1px solid #b0b0b0;
    border-radius: 8px;
    background-color: white;
    font-size: 1rem;
}
.book-btn {
    width: 100%;
    font-size: 1.1rem;
    padding: 14px;
}
/* Error and Success Banners */
.status-alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}
.success-msg {
    background-color: #eaf7ed;
    border: 1px solid #b2dba1;
    color: #1e4620;
}
.error-msg {
    background-color: #fff0f1;
    border: 1px solid #ffccd1;
    color: #c13542;
}
/* Modern, Premium Input Styling */
.standard-contact-form  {
    display: block;          /* Ensures margin behaves predictably */
    margin-top: 40px;        /* Pushes ONLY the form box down from the top header row */
    margin-bottom: 0;        /* Prevents extra gaps from forming inside or below */
    
    background: #fff;
    border: 1px solid #ebebeb;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.standard-contact-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222222;
}

/* Enhancing inputs, dropdown selects, and textareas */
.standard-contact-form input[type="text"],
.standard-contact-form input[type="email"],
.standard-contact-form input[type="tel"],
.standard-contact-form select,
.standard-contact-form textarea {
    width: 100%;
    padding: 16px;
    font-family: inherit;
    font-size: 1rem;
    color: #222222;
    background-color: #ffffff;
    border: 1px solid #b0b0b0;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Expanding the Message Textarea Box explicitly */
.standard-contact-form textarea {
    min-height: 180px; /* Forces a spacious layout immediately */
    resize: vertical;  /* Allows guests to drag it larger vertically only */
    line-height: 1.5;
}

/* Subtle, Modern Interactive Focus Effects */
.standard-contact-form input:focus,
.standard-contact-form select:focus,
.standard-contact-form textarea:focus {
    border-color: #222222;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.1);
}

/* Premium Styling for Dropdown Select Menus */
.standard-contact-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://w3.org' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

/* Airbnb-Style Crimson Call-to-Action Button */
.standard-contact-form .submit-btn {
    width: 100%;
    background-color: #CBBD93;
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.standard-contact-form .submit-btn:hover {
    background-color: #a79a72;
}

.standard-contact-form .submit-btn:active {
    transform: scale(0.98);
}

/* Booking Page Layout & Explicit Top Form-Box Spacing */
.booking-page-wrapper {
    max-width: 700px;
    margin: 40px auto;
}
.booking-intro {
    margin-bottom: 30px;
}
.standard-booking-form {
    display: block;
    margin-top: 40px; /* Generates a spacious row of breathing room above the form layout box */
    margin-bottom: 0;
    
    background: #fff;
    border: 1px solid #ebebeb;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

/* Reusing Form Group Structure safely */
.standard-booking-form .form-group {
    margin-bottom: 24px;
}
.standard-booking-form .form-row {
    display: flex;
    gap: 20px;
}
.standard-booking-form .form-row .form-group {
    flex: 1;
}

/* Premium Typography Overrides */
.standard-booking-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #222222;
}
.standard-booking-form input[type="text"],
.standard-booking-form input[type="email"],
.standard-booking-form input[type="tel"],
.standard-booking-form input[type="date"],
.standard-booking-form select,
.standard-booking-form textarea {
    width: 100%;
    padding: 16px;
    font-family: inherit;
    font-size: 1rem;
    color: #222222;
    background-color: #ffffff;
    border: 1px solid #b0b0b0;
    border-radius: 8px;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* Explicit Large Textarea Scaling */
.standard-booking-form textarea {
    min-height: 180px; /* Forces spacious layout immediately */
    resize: vertical;
    line-height: 1.5;
}

/* Dynamic Interaction Highlights */
.standard-booking-form input:focus,
.standard-booking-form select:focus,
.standard-booking-form textarea:focus {
    border-color: #222222;
    outline: none;
    box-shadow: 0 0 0 2px rgba(34, 34, 34, 0.1);
}

/* Vector Arrow Dropdown Fix for Select lists */
.standard-booking-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://w3.org' viewBox='0 0 24 24' fill='none' stroke='%23222222' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

/* Action Button Core Scaling */
.standard-booking-form .submit-btn {
    width: 100%;
    background-color: #CBBD93;
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}
.standard-booking-form .submit-btn:hover { background-color: #a79a72; }
.standard-booking-form .submit-btn:active { transform: scale(0.98); }
