:root {
    --primary-blue: #0077b6;
    --secondary-blue: #00b4d8;
    --light-bg: #f0f7fa;
    --text-dark: #1d3557;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../hero.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    border-bottom: 5px solid var(--secondary-blue);
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.booking-container {
    max-width: 800px;
    margin: -50px auto 50px auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.1);
}

.btn-booking {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-booking:hover {
    background-color: #023e8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--secondary-blue);
    margin: 10px auto;
}

.info-text {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
}

.logo-custom {
    max-height: 80px;
    width: auto;
    filter: drop-shadow(2px 2px 10px rgba(0, 0, 0, 0.5));
}

@media (max-width: 767.98px) {
    .hero-section {
        height: 220px;
    }
}

footer p {
    margin-bottom: 0 !important;
}

footer small {
    display: block;
    margin-top: 3px;
}