body{
    margin:0;
    padding:0;
    margin-top:80px;
}

/* CSS for the intro section ---------------------------------------------------------------------------*/

.introsection{
    padding: 50px;
    font-size: 2em;
    text-align:justify;
}

/* CSS for the vission, mission, values ---------------------------------------------------------------------------*/

.vmv-section {
    display: flex;
    justify-content: space-between;
    gap: 0;
}
.vmv-box {
    flex: 1;
    padding: 20px;
    color: #FFF0d1;
    text-align: center;
    font-size:2em;
}
.vmv-box:nth-child(1) { background-color: #795757; } 
.vmv-box:nth-child(2) { background-color: #664343; } 
.vmv-box:nth-child(3) { background-color: #3b3030; } 

/* CSS for the FAQ ---------------------------------------------------------------------------*/

.faq-section{
    margin:50px 20%;
}

.faq-box{
    background-color:#664343;
    padding:20px;
    margin:10px;
    border-radius:10px;
    color:#fff0d1;
    font-size:1.5em;
}

.faq-section #faqheader{
    text-align: center;
    font-size:3em;
    color:#3b3030;
}

/* CSS for the video teaser ---------------------------------------------------------------------------*/


.videoteaser-section{
    background-color:#3b3030;
    padding:20px;
}
#videoteaser {
    width: 100%;
    height: 80vh; /* Adjust based on your layout */
    max-width: 1280px;
    max-height: 720px;
    display: block;
    margin: 0 auto;
    border: none;
}

/* CSS for behind the scenes header ---------------------------------------------------------------------------*/

.bts-header{
    width:100%;
    height:100%;
    background-color: #3B3030;
    box-sizing:border-box;
    color: #FFF0d1;
    margin-bottom:55px;
}

.bts-header-text{
    background-color: #664343;
    color: #FFF0d1;
    padding:20px;
}

.bts-header h1{
    text-align: center;
    font-size:3em;
}

.bts-header p{
    font-size: 2em;
    text-align: center;

}

/* CSS for behind the scenes ---------------------------------------------------------------------------*/

.bts-container{
    display:grid;
    grid-template-columns: repeat(3, 1fr); /* 3 items per row */
    gap: 20px; /* Space between items */
    justify-content: center; /* Centers the grid */
    padding: 50px; /* Adds some spacing */
}

.bts-box{
    width: 90%; /* Makes each box take up full column width */
    aspect-ratio: 1 / 1; /* Ensures it's a perfect square */
    background-color: #ddd; /* Temporary background for visualization */
    display: flex;
    justify-content: center;
    align-items: center;
    
}

.bts-box a {
    width: 100%;
    height: 100%;
    display: flex;
}

.bts-box img{
    width: 100%; /* Makes image fill the box */
    height: 100%;
    object-fit: cover; /* Ensures image fits without distortion */
    transition: transform 0.3s ease-in-out;
}

.bts-box:hover img {
    transform: scale(1.1); /* Enlarges the image on hover */
}

/* CSS for website responsiveness ---------------------------------------------------------------------------*/

/* (601px - 768px) */
@media only screen and (max-width: 768px) {
    .vmv-section {
        flex-direction: column;
    }

    .bts-container{
        grid-template-columns: repeat(2, 1fr);
        
    }

    .btx-box{
        width:100%;
    }
}