body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
}

.row {
    flex-shrink: 0; 
    margin: 0; /* Removes Bootstrap's default horizontal overflow */
}

:root {
    --green: #84B179;
    --green-light: #A2CB8B;
    --green-very-light: #C7EABB;
    --green-transparent: #E8F5BD;
}

/** Sidebar **/
#sidebar-container{
    /* border: 2px red solid; */
    background-color: var(--green-very-light);
    padding: 1.25rem;
}

.sidebar-box{
    margin-top: 1.25rem;
    margin-bottom: 1.45rem;
    background-color: white;
    border-radius: 10px;     
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); 
    border: none;           
    overflow: hidden;        
    display: flex;
    justify-content: center;
    background-color: var(--green-light);
}


.sidebar-box:hover{
    cursor: pointer;
    background-color: var(--green);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(132, 177, 121, 0.3);
}

.sidebar-box > h3:hover{
    color:black;
}

.sidebar-box > h3 {
    display: block;
    color: white;
    width: 100%;
    padding: 0.50rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}


/** Main */

#main-container{
    /* border: 2px yellow solid; */
}


/** Home component **/

.home-container{
    position: relative;
    height:100%;
}

.text-banner{
    position: absolute;
    top: 45%;
    left: 5%;
    font-size: 2.75rem;
    color: white;
    font-weight: bold;
    text-align: center;
}

#banner{
    width: 100%;      
    height: 100%;     
    object-fit:scale-down; 
    object-position: center; 
}

/** Home - Mobile **/
@media (max-width: 767px) {
    .btn-success {
        background-color: var(--green);
        border: none;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;
        padding: 1rem;
    }
    #sidebar-container {
        padding: 0.5rem 1rem;
    }
    .sidebar-box {
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
.home-container {
        height: 40vh; /* Shorter banner on mobile */
    }

    #banner {
        font-size: 2rem;
        top:100%;
    }

    .text-banner {
        font-size: 1.8rem;
        top: 50%;
        background: rgba(0, 0, 0, 0.2); 
    }
}



/** Inquiry - desktop **/

.submit:hover{
    cursor: pointer;
    background-color: var(--green);
    transform: translateX(8px);
    box-shadow: 0 4px 15px rgba(132, 177, 121, 0.3);
    color:black;
}



/** Footer **/

.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--green-light);
    flex-grow: 1;      /* Fill the remaining height */
    padding: 2rem 0;   /* Keeps icons from touching the very bottom */
}