/* Booking Page Styles */

/* Hero Section */
.booking-hero {
    height: 50vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 70px;
}

.booking-hero-content {
    max-width: 800px;
    padding: 2rem;
}

.booking-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s forwards;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.booking-hero p {
    font-size: 1.2rem;
    animation: fadeInUp 0.8s forwards;
    animation-delay: 0.3s;
    opacity: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Booking Section */
.booking-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.booking-info h2, .booking-form-container h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.booking-info h2::after, .booking-form-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.booking-info p {
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.booking-details {
    margin-bottom: 2rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background: rgba(255, 107, 107, 0.1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.detail-item h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.detail-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.booking-image {
    margin-top: 2rem;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.booking-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.booking-image:hover img {
    transform: scale(1.05);
}

/* Booking Form */
.booking-form-container {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.booking-btn {
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.booking-btn:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Active nav link */
.nav-links a.active {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .booking-container {
        grid-template-columns: 1fr;
    }
    
    .booking-info {
        order: 2;
    }
    
    .booking-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .booking-hero h1 {
        font-size: 2.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .booking-form-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .booking-hero h1 {
        font-size: 2rem;
    }
    
    .booking-hero p {
        font-size: 1rem;
    }
    
    .booking-section {
        padding: 3rem 1rem;
    }
} 