/* Booking Section */
.booking-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.booking-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Booking Form Styles */
.booking-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.booking-form h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.form-section h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e67e22;
    outline: none;
}

.submit-btn {
    background: #e67e22;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background: #d35400;
}

/* Booking Info Styles */
.booking-info {
    position: sticky;
    top: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.info-card h3 {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.benefits-list i {
    color: #e67e22;
    font-size: 1.2rem;
}

.contact-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-option i {
    font-size: 1.5rem;
    color: #e67e22;
}

.contact-option h4 {
    margin: 0;
    color: #2c3e50;
}

.contact-option p {
    margin: 0;
    color: #666;
}

/* Responsive Design */
@media (max-width: 992px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }

    .booking-info {
        position: static;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .booking-form {
        padding: 2rem;
    }
}

/* Hero Section */
.booking-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    color: white;
    overflow: hidden;
}

.booking-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.booking-hero .hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.booking-hero .hero-content {
    position: relative;
    padding-top: 150px;
    text-align: center;
}

.booking-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.booking-hero .hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Add this to your existing media queries */
@media (max-width: 768px) {
    .booking-hero h1 {
        font-size: 2.5rem;
    }
    
    .booking-hero .hero-subtitle {
        font-size: 1rem;
    }
} 