/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --stone-50: #fafaf9;
    --stone-100: #f5f5f4;
    --stone-300: #d6d3d1;
    --stone-400: #a8a29e;
    --stone-600: #57534e;
    --stone-700: #44403c;
    --stone-800: #292524;
    --stone-900: #1c1917;
    --amber-700: #b45309;
    --amber-800: #92400e;
    --amber-100: #fef3c7;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--stone-800);
    background-color: var(--stone-50);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Navigation */
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between; /* This is crucial */
    align-items: center;
    height: 80px;
}

/* Logo Styles - Left Aligned */
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    /* Force left alignment */
    margin-right: auto;
}

.logo-image {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--stone-800); /* This will be for "Valley" */
}

/* Create the gradient effect for "Lodges" */
.logo-text::after {
    content: " Lodges";
    background: linear-gradient(45deg, var(--amber-700), var(--amber-800));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.logo:hover .logo-image {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    /* This should naturally go to the right due to space-between */
}

.nav-link {
    text-decoration: none;
    color: var(--stone-600);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--amber-700);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px; 
    margin: -10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--stone-800);
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center; 
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    border-top: 1px solid var(--stone-300);
}

.mobile-nav-link {
    padding: 15px 20px;
    text-decoration: none;
    color: var(--stone-600);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--stone-100);
    transition: background 0.3s;
}

.mobile-nav-link:hover {
    background: var(--stone-50);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1542314831-068cd1dbfeeb?w=1920&h=1080&fit=crop') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    padding: 0 20px;
    max-width: 900px;
}

.hero-title {
    font-size: clamp(40px, 7vw, 70px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    margin-bottom: 30px;
    font-weight: 300;
    opacity: 0.9;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.btn-primary {
    background: var(--amber-700);
    color: white;
}

.btn-primary:hover {
    background: var(--amber-800);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(180, 83, 9, 0.3);
}

.btn-secondary {
    background: var(--stone-800);
    color: white;
    width: 100%;
}

.btn-secondary:hover {
    background: var(--stone-900);
}

.btn-booking {
    background: var(--amber-700);
    color: white;
    width: 100%;
}

.btn-booking:hover {
    background: var(--amber-800);
}

.btn-full {
    width: 100%;
}

/* Booking Section */
.booking-section {
    padding: 60px 0;
    background: white;
}

.booking-card {
    background: var(--stone-800);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.section-title-white {
    font-size: 36px;
    color: white;
    text-align: center;
    margin-bottom: 30px;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}


.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 5px;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--amber-700);
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(36px, 5vw, 48px);
    color: var(--stone-800);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 20px;
    color: var(--stone-600);
    max-width: 700px;
    margin: 0 auto;
}

/* Rooms Section */
.rooms-section {
    padding: 80px 0;
    background: var(--stone-50);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.room-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.room-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.room-card:hover .room-image img {
    transform: scale(1.1);
}

.room-price {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--amber-700);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 24px;
    font-weight: 600;
}

.room-price span {
    font-size: 14px;
}

.room-content {
    padding: 30px;
}

.room-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--stone-800);
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.room-features span {
    color: var(--stone-600);
    font-size: 14px;
}

.room-features span::before {
    content: "→ ";
    color: var(--amber-700);
}

/* Amenities Section */
.amenities-section {
    padding: 80px 0;
    background: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.amenity-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: background 0.3s;
    cursor: pointer;
}

.amenity-card:hover {
    background: var(--stone-50);
}

.amenity-icon {
    font-size: 36px; 
    margin-bottom: 5px;
}

.amenity-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--stone-800);
}

.amenity-card p {
    color: var(--stone-600);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background: var(--stone-50);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s;
}

.gallery-item:hover::after {
    background: rgba(0, 0, 0, 0.2);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
}

.contact-form-wrapper .form-group label {
    color: var(--stone-700);
}

.contact-form-wrapper .form-group input,
.contact-form-wrapper .form-group textarea {
    background: white;
    color: var(--stone-800);
    border: 1px solid var(--stone-300);
}

.contact-form-wrapper .form-group input:focus,
.contact-form-wrapper .form-group textarea:focus {
    border-color: var(--amber-700);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
    color: var(--stone-800);
}

.contact-item p {
    color: var(--stone-600);
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--stone-900);
    color: white;
    padding: 60px 0;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
}

.footer-text {
    color: var(--stone-400);
    margin-bottom: 20px;
}

.footer-copyright {
    color: var(--stone-600);
    font-size: 14px;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* --- Modal Styling for Amenities --- */
.amenity-modal {
    display: none; 
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.7); 
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: fadeIn 0.3s ease-out;
}
.close-btn {
    color: var(--stone-600);
    float: right;
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: color 0.3s;
}

.close-btn:hover,
.close-btn:focus {
    color: var(--amber-700);
    text-decoration: none;
}

#modal-details h3 {
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--stone-100);
    padding-bottom: 5px;
}

#modal-details p {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--stone-700);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- New Styles for Side-by-Side Maps in Modal --- */
.map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.map-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--amber-700);
}

.map-label {
    font-size: 14px;
    color: var(--stone-600);
    margin-bottom: 10px;
    font-style: italic;
}

.map-item iframe {
    width: 100%;
    height: 150px;
    border-radius: 6px;
}

@media (max-width: 550px) {
    .map-grid {
        grid-template-columns: 1fr;
    }
}
/* --- Styles for the Modal Transportation Form --- */
.transport-form-container {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--stone-300);
}

.transport-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 10px;
}

.form-group-transport {
    display: flex;
    flex-direction: column;
}

.form-group-transport-full {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: column;
}

.form-group-transport label {
    font-size: 14px;
    color: var(--stone-700);
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group-transport input,
.form-group-transport select,
.form-group-transport textarea {
    padding: 10px;
    border: 1px solid var(--stone-300);
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 550px) {
    .transport-form-layout {
        grid-template-columns: 1fr;
    }
}
/* --- Styling for the SECOND (Booking) Modal --- */
.transport-content {
    max-width: 500px;
    padding: 25px; 
}

/* Styles for the Transport Form Layout */
.transport-form-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

/* --- New Flexbox Header for Transport Modal --- */
.transport-header-action-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--stone-100);
}

/* Grouping the icon and title */
.transport-icon-title-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Modifying the main title class (added in JS) to fit the new layout */
.modal-main-title {
    font-size: 24px;
    margin: 0;
    padding: 0;
    border-bottom: none;
}

/* New compact button style */
.btn-book-compact {
    padding: 8px 15px; 
    font-size: 14px;
    white-space: nowrap; 
    min-width: 100px; 
    font-weight: 500;
    border-radius: 50px; 
}
/* --- Styling for the Form Submission Button --- */
.btn-form-round {
    border-radius: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .booking-form {
        grid-template-columns: 1fr;
    }

    .rooms-grid,
    .amenities-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 36px;
    }
    
    /* CRITICAL FIX: Mobile Menu Visibility and Positioning */
    .mobile-menu.active {
        display: flex;
        flex-direction: column;
        
        /* Fixes menu to drop down below the fixed navbar */
        position: fixed;
        top: 80px; /* Aligns exactly below the 80px high navbar */
        left: 0;
        width: 100%;
        
        /* Takes up the rest of the screen height */
        height: calc(100vh - 80px); 
        
        overflow-y: auto; 
        background: white; 
        z-index: 999; 
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    /* --- MOBILE MENU BUTTON ANIMATION --- */
    .mobile-menu-btn.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.is-open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}
/* --- AMENITY MODAL FORM CONTROLS ENHANCEMENT --- */

/* Target input and select elements within the form layout */
.transport-form-layout input[type="text"],
.transport-form-layout input[type="number"],
.transport-form-layout select {
    /* Increase vertical padding to make elements taller */
    padding: 10px 12px; 
    /* Slightly increase font size for better readability */
    font-size: 16px; 
    /* Ensure height is consistent and element is comfortable to tap */
    height: 45px; 
}

/* Ensure the submit button also feels substantial */
.btn-form-round {
    padding: 12px 20px !important;
    font-size: 16px !important;
}

/* Ensure the 'Another' text input is also comfortable */
#anotherInputGroup input {
    height: 45px;
}
.social-icon {
    color: white;
    margin: 0 12px;
    font-size: 26px;
    transition: 0.3s ease;
}

.social-icon:hover {
    color: var(--amber-700);
    transform: translateY(-3px);
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.icon {
    font-size: 28px;
    text-decoration: none;
    transition: 0.3s ease;
}

/* Facebook Real Blue */
.icon.facebook {
    color: #1877F2;
}

.icon.facebook:hover {
    transform: translateY(-3px);
    color: #5393f7;
}

/* Instagram Gradient */
.icon.instagram {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    -webkit-background-clip: text;
    background-clip: text; /* standard property for broader compatibility */
    -webkit-text-fill-color: transparent;
}

.icon.instagram:hover {
    transform: translateY(-3px);
}

/* TikTok Official Style */
.icon.tiktok {
    color: white;
    position: relative;
}

.icon.tiktok:hover {
    transform: translateY(-3px);
    text-shadow: 
        2px 2px 8px #25F4EE,
        -2px -2px 8px #FE2C55;
}
/* --- Contact Form Validation Styling --- */
.input-error {
    border: 2px solid #e63946 !important;
    background: #ffe5e5 !important;
}

.error-text {
    color: #e63946;
    font-size: 13px;
    margin-top: 5px;
}

/* Success Popup */
.success-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #22c55e;
    color: white;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: fadeInOut 3s ease forwards;
    font-size: 15px;
    z-index: 9999;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(-10px); }
    15% { opacity: 1; transform: translateY(0); }
    85% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(-10px); }
}
/* Shake animation for invalid inputs */
@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-5px); }
    40% { transform: translateX(5px); }
    60% { transform: translateX(-5px); }
    80% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

.input-error {
    border: 2px solid #e63946 !important;
    background: #ffe5e5 !important;
    animation: shake 0.3s ease;
}
/* --- WiFi Modal Form Styling --- */
.modal-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    color: var(--amber-800);
    margin-bottom: 15px;
    font-weight: 600;
}

.form-label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: var(--stone-700);
    font-size: 0.95rem;
}

.form-input {
    width: 80%;
    padding: 10px 15px;
    margin-bottom: 10px;
    border: 1px solid var(--stone-300);
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-color: var(--amber-700);
    box-shadow: 0 0 0 3px var(--amber-100);
}

textarea.form-input {
    resize: vertical;
}

/* Full Width Button for Modal */
.btn-full-width {
    width: 100%;
    margin-top: 10px;
    padding: 12px 20px;
    font-size: 1rem;
}

.btn-secondary-flat {
    background-color: transparent;
    border: 1px solid var(--stone-400);
    color: var(--stone-700);
}

.btn-secondary-flat:hover {
    background-color: var(--stone-100);
    color: var(--stone-800);
}

/* Ensure the hr divider looks neat */
hr {
    border: none;
    height: 1px;
    background-color: var(--stone-300);
    margin: 20px 0;
}
#wifi-report-section p {
    font-size: 0.8rem; /* Reduce paragraph font size */
    line-height: 0.5;
    margin-bottom: 12px; /* Reduce paragraph spacing */
}
/* Conferencing Modal Styles */
.conferencing-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.conferencing-content li {
    margin-bottom: 8px;
    color: var(--stone-700);
}

.conferencing-content .facility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 15px 0;
}

.conferencing-content .facility-item {
    background: var(--stone-50);
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid var(--amber-700);
}

.conferencing-content .facility-item strong {
    color: var(--amber-800);
    display: block;
    margin-bottom: 5px;
}
/* Enhanced Rooms Section Styles */
.room-description {
    color: var(--stone-600);
    font-size: 14px;
    line-height: 1.5;
    margin: 15px 0;
    border-left: 3px solid var(--amber-100);
    padding-left: 12px;
    font-style: italic;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.room-features span {
    color: var(--stone-600);
    font-size: 13px;
    display: flex;
    align-items: center;
}

.room-features span::before {
    content: "✓ ";
    color: var(--amber-700);
    font-weight: bold;
    margin-right: 5px;
}

.room-price {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--amber-700);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(180, 83, 9, 0.3);
}

.room-price span {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.9;
}

/* Room Card Hover Effects */
.room-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.room-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.room-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--amber-700), var(--amber-800));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.room-card:hover::before {
    transform: scaleX(1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .rooms-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .room-features {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    
    .room-price {
        font-size: 18px;
        padding: 6px 12px;
    }
}

@media (min-width: 1200px) {
    .rooms-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* FORCE LEFT ALIGNMENT - Add this at the very end of styles.css */
.nav-container {
    justify-content: space-between !important;
}

.logo {
    margin-right: auto !important;
    margin-left: 0 !important;
    order: 1 !important;
}

.nav-menu {
    order: 2 !important;
}

.mobile-menu-btn {
    order: 3 !important;
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--stone-800); /* Black for "Valley" */
    white-space: nowrap;
}

/* Gradient for "Lodges" */
.logo-text::after {
    content: " Lodges";
    background: linear-gradient(45deg, #f59e0b, #dc2626); /* Amber to Red */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
/* Mobile responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 22px;
    }
}
.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--stone-800); /* Black for "Valley" */
    white-space: nowrap;
}

.logo-text::after {
    content: " Lodges";
    background: linear-gradient(45deg, #f59e0b, #dc2626); /* Amber to Red */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .logo-text {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 22px;
    }
}
/* Navigation Menu - Align with button */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center; /* This ensures vertical alignment */
    height: 100%; /* Take full height of nav container */
}

.nav-link {
    text-decoration: none;
    color: var(--stone-600);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center; /* Center text vertically */
    height: 100%; /* Match the button height */
}

/* Book Now button in nav */
.nav-menu .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px; /* Set specific height */
    padding: 12px 25px; /* Adjust padding for better alignment */
    margin: 0; /* Remove any default margins */
}
/* Booking Section - Updated for inline button */
.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    align-items: end; /* This aligns all items to the bottom */
}

/* Remove the specific styling for the button form group */
.form-group[style*="grid-column: span 1"] {
    /* Remove any inline styles that might be affecting it */
    grid-column: auto !important;
    display: flex !important;
    align-items: flex-end !important;
}

/* Ensure the button takes full height and aligns properly */
.btn-booking {
    height: 45px; /* Match the input field height */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
}
/* Mobile Responsive Fix for Shuttle Booking Form */
@media (max-width: 768px) {
    .transport-form-layout {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        padding: 0 10px !important;
    }
    
    .form-group-transport {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
    
    .form-group-transport-full {
        grid-column: 1 / -1 !important;
        width: 100% !important;
    }
    
    /* Ensure inputs don't overflow */
    .transport-form-layout input,
    .transport-form-layout select,
    .transport-form-layout textarea {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Modal container adjustments */
    #transportBookingModal .modal-content {
        margin: 20px 10px !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
    }
    
    /* Specific fix for date time input on mobile */
    input[type="datetime-local"] {
        min-height: 44px !important; /* Better touch target */
    }
}

/* Additional mobile fixes for very small screens */
@media (max-width: 480px) {
    .transport-form-layout {
        gap: 12px !important;
    }
    
    #transportBookingModal .modal-content {
        margin: 10px 5px !important;
        padding: 15px !important;
    }
    
    .form-group-transport label,
    .form-group-transport-full label {
        font-size: 14px !important;
    }
}

/* Ensure modal is properly sized on mobile */
#transportBookingModal {
    align-items: flex-start !important; /* Allow scrolling on very tall content */
    padding-top: 20px !important;
}

#transportBookingModal .modal-content {
    max-height: 85vh !important;
    overflow-y: auto !important;
}
/* Mobile viewport fix */
.mobile-modal-open {
    position: fixed;
    width: 100%;
    height: 100%;
}

.mobile-modal-open #transportBookingModal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
}
/* Desktop spacing compression */
@media (min-width: 769px) {
  body {
    letter-spacing: 0.2px;
    font-size: 0.95rem;
  }
}

/* Mobile spacing compression */
@media (max-width: 768px) {
  .container, section, .content {
    padding-left: 10px;
    padding-right: 10px;
  }
}

