#bgbanner {
    background: url('../images/homepagebg.jpeg');
    background-repeat: no-repeat;
    background-size: cover;
}

/* .bannerContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
} */
#banner1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: #0b4550ab;
}

#banner2 {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    background-color: #0b4550ab;
    height:90vh; overflow: scroll;
    display:flex;
    padding-top: 10vh;
    /* padding-bottom:20vh */
}

.homebtn {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 205, 230);
    color: #0B4450;
    font-size: 1.5rem;
    border-radius: 10px;
    box-shadow: #063039;
    margin: 5px;
    padding: 8px;
    transition-duration: 0.3s;
}

.homebtn:hover {
    background-color: #c86d99;
    color: white;
}
.homebtn-yellow {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 250, 182);
    color: #0B4450;
    font-size: 1.5rem;
    border-radius: 10px;
    box-shadow: #063039;
    margin: 5px;
    padding: 8px;
    transition-duration: 0.3s;
}

.homebtn-yellow:hover {
    background-color: #aea743;
    color: white;
}

.homebtn2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(255, 255, 255);
    color: #0B4450;
    font-size: 1.5rem;
    border-radius: 10px;
    box-shadow: #063039;
    margin: 5px;
    padding: 8px;
    transition-duration: 0.3s;
}

.homebtn2:hover {
    background-color: #0B4450;
    color: white;
}

.homebtn-sm {
    text-align: center;
    background-color: rgb(255, 205, 230);
    color: #0B4450;
    border-radius: 8px;
    margin: 5px;
    padding: 3px;
    transition-duration: 0.3s;
}

.homebtn-sm:hover {
    background-color: #0B4450;
    color: white;
}
.homebtn-sm2 {
    text-align: center;
    background-color: var(--clr-on-secondary);
    color: var(--clr-secondary);
    border-radius: 0.4rem;
    border: 1px solid var(--clr-secondary);
    transition-duration: 0.3s;
    box-shadow: 0 0 0.3rem -0.1rem var(--clr-secondary);
    padding: 10px;
}

.homebtn-sm2:hover {
    background-color: var(--clr-secondary-dark);
}

.separation-lg {
    margin-bottom: 20px;
    width: 100%;
}

.bannerbox {
    max-width: 40vw;
    color: rgb(251, 251, 251);
    transition-duration: 0.3s;
    padding:20px;
    margin:20px;
    background-color: rgba(255, 196, 238, 0.153);
    border-radius: 30px;
    backdrop-filter: blur(3px);
    box-shadow:  5px 5px rgba(0, 0, 0, 0.3);
    perspective: 1000px; /* Defines the viewing distance for the 3D effect */
    display: none;
}

.bannerbox:hover {
    transform: scale(1.05) translateY(-5px); /* Scale up and move slightly up */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}
.featurebox {
    max-width: 40vw;
    color: rgb(10, 13, 69);
    transition-duration: 0.3s;
    padding:20px;
    margin:20px;
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow:  5px 5px rgba(0, 0, 0, 0.3);
    display:flex;
    text-align: center;
}

.featurebox:hover {
    transform: scale(1.05) translateY(-5px); /* Scale up and move slightly up */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}
.articlebox {
    color: rgb(10, 13, 69);
    transition-duration: 0.3s;
    padding:20px;
    margin:20px;
    background-color: rgb(255, 255, 255);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    box-shadow:  5px 5px rgba(0, 0, 0, 0.3);
    display:flex;
    text-align: center;
}

.articlebox:hover {
    transform: scale(1.05) translateY(-5px); /* Scale up and move slightly up */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
}


.homeheader {
    color:rgb(255, 254, 183);
    font-size: 6rem;
    font-weight: bold;
}
.homesubheader {
    color:white;
    text-align: center;
    font-size: 2rem
}
@media (max-width:1080px){
    .bannerbox {
        max-width: 80vw;
        display: none;
    }
    .homeheader {
        font-size: 5rem;
    }
    .homesubheader {
        font-size: 1.5em;
    }

}
@media (max-width:480px){
    .homeheader {
        font-size: 3.5rem;
    }
}
@media (min-width:1080px){
    /* #bannerbtn {
        display: none;
    } */
}


.bannerbox:hover {
    color: white;
}

#bannerbtn {
    background-color: white;
    color: #0B4450;
    font-size: 1.5rem;
    border-radius: 10px;
    box-shadow: #063039;
    margin: 5px;
    padding: 8px;
    transition-duration: 0.3s;
}
#bannerbtn:hover {
    background-color: #0B4450;
    color: white;
}

/* footer styles */
:root {
    --bg: #222222;
    --fg: #ffffff;
    --muted: #bbbbbb;
    --accent: #4dd0e1;
    --maxw: 1200px;
    --gap: 20px;
}



/* Footer */
footer.site-footer {
    background: var(--bg);
    color: var(--fg);
}

.footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 32px 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gap);
}

.footer-col h3 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    color: var(--fg);
}

.footer-col p,
.footer-col a,
.footer-col li,
.footer-col address,
.footer-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.footer-col a {
    color: var(--fg);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.footer-col a:hover,
.footer-col a:focus {
    color: var(--accent);
    border-bottom-color: var(--accent);
    outline: none;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

address {
    font-style: normal;
    white-space: pre-line;
}

.footer-sep {
    height: 1px;
    background: #333333;
    margin: 8px 0 0 0;
    border: 0;
}

.footer-note {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 16px;
    font-size: 0.9rem;
    color: var(--muted);
}

.legal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.legal a {
    color: var(--muted);
    text-decoration: none;
    border-bottom: 1px dotted #555;
}

.legal a:hover,
.legal a:focus {
    color: var(--accent);
    border-bottom-color: var(--accent);
    outline: none;
}



/* Responsive layout */
@media (min-width: 600px) {
    .footer-inner {
    padding: 36px 24px;
    }
    .footer-grid {
    grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    #banner2 {
        display: none;
    }
}

@media (min-width: 900px) {
    .footer-inner {
    padding: 40px 32px;
    }
    .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    }
    .footer-note {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    }

}
