﻿.hero-section {
    position: relative;
    height: 350px;
    background-image: url('/Asset/assets/img/information-guide/airport-hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    margin-top: 120px;
}

    .hero-section .overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .hero-section .hero-content {
        position: relative;
        color: white;
        padding: 0 50px;
        max-width: fit-content;
        z-index: 1;
    }

    .hero-section h1 {
        font-size: 2.5rem;
        margin-bottom: 10px;
        font-weight: 700;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .hero-section p {
        font-size: 1.2rem;
        max-width: fit-content;
    }


.feedback-form {
    text-align: center !important;
    padding: 24px;
}

.form-container {
    max-width: 1336px;
    margin: 10px auto;
    padding: 24px 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-size: 1.05rem;
}


/* Non-mobile screens (768px and up) */
@media (min-width: 768px) {

    .hero-section {
        height: 250px;
        margin-top: 140px;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

    .form-left-column {
        border-right: 1px solid #dee2e6; /* Border to separate left column */
        padding-right: 20px; /* Right padding */
    }

    .form-right-column {
        padding-left: 20px; /* Left padding */
    }

    .form-container {
       padding: 8px;
    }

    .feedback-form {
        padding: 12px;
    }
}


/* Mobile screens (less than 576px) */
@media (max-width: 576px) {
    .hero-section {
        height: 180px;
        padding: 0 20px;
    }

        .hero-section h1 {
            font-size: 1.2rem;
        }

        .hero-section p {
            font-size: 1rem;
        }

        .hero-section .hero-content {
            padding: 0px;
        }

    .form-container .row > div {
        margin-bottom: 15px; /* Spacing between fields */
    }

    .feedback-form {
        padding: 6px;
    }
}

/* Form input styling */
.form-control {
    border-radius: 0.1rem; /* Rounded corners */
    margin-bottom: 15px; /* Bottom spacing */
}

/* Message textarea styling */
textarea.form-control {
    min-height: 150px; /* Increased minimum height to 200px */
    resize: vertical; /* Allow vertical resize only */
}

/* Label styling */
.form-label {
    font-weight: 500; /* Medium bold */
    margin-bottom: 5px; /* Bottom spacing */
}
