/* Reserve Page Styles */
body {
    background-color: black !important;
    color: white !important;
}

.reserve-first-section>nav{
    background-color:transparent !important;
    position: absolute;
    top: 0;
    width: 100%;
}
.reserve-first-section{
    background-image: url('../img/IndexVIPTaxiAms.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 2;
}
.reserve-first-section:before{
    content: "";
    height: 100%;
    background-color: rgb(0, 0, 0);
    opacity: 0.4;
    position: absolute;
    width: 100%;
    z-index: -1;
}
.reserve-first-section .container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    color: white;
}
.reserve-first-section .container h1{
    font-size: 100px;
    color: white;
}
.reserve-second-section{
    background: black !important;
    color: white !important;
    padding: 2rem;
    border-radius: 10px;
    margin: 3rem 5rem;
}

/* Form styling */
.reserve-second-section .form-label {
    color: white !important;
}

.reserve-second-section .form-control,
.reserve-second-section .form-select {
    background-color: #333 !important;
    color: white !important;
    border: 1px solid #555 !important;
}

.reserve-second-section .form-control::placeholder {
    color: #ccc !important;
}

/* reserve - Section 3 */
.reserve-third-section{
    background-color: black !important;
    padding: 3rem 0;
    text-align: start;
    color: white !important;
}
.reserve-third-section-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}
.reserve-third-section-container section{
    margin:2rem 0; 
    width:45%; 
    color:white !important;
    background-color: black !important;
    padding: 20px;
    border-radius: 5px;
}

/* Button styles for reserve page */
.reserve-first-section button,
.reserve-first-section .btn,
.reserve-second-section button,
.reserve-second-section .btn,
.reserve-third-section button,
.reserve-third-section .btn,
.btn-primary {
    background-color: blue !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px;
    border-radius: 5px;
}

/* Make sure all text in reserve section is white */
.reserve-second-section,
.reserve-second-section h2,
.reserve-second-section p,
.reserve-second-section div {
    color: white !important;
    background-color: black !important;
}

@media only screen and (max-width:500px){
    .reserve-first-section .container h1{
        font-size: 60px;
        text-align: center;
        color: white;
    }
    .heading-text {
        font-size: 1.9rem;
        margin: 1rem 0;
        color: white;
    }  
    .reserve-second-section{
        background: black !important;
        padding: 10px;
        margin: 20px 10px;
        color: white !important;
    }
    .reserve-third-section-container {
        flex-direction: column;
    }
    .reserve-third-section-container section{
        width: 95%;
        margin: 1.5rem auto;
        color: white !important;
        background-color: black !important;
        padding: 15px;
    }
}