@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Oswald:wght@200..700&display=swap');

*{
    padding: 0;
    margin: 0;
    border: none;
}
/* styles for the header */
header{
    background: #800000;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10;
}
.logo{
    text-transform: uppercase;
    color: #fff;
    text-align: center;
    padding: 2px;
    font-weight: bold;
    width: 100%;
    font-family: 'oswald', lato;
}
.menu{
    position: absolute;
    padding: 0.1rem;
    right: 5%;
    bottom: 0%;
    z-index: 2;
}
/* shows the user which navigation screen they are active on*/
.menu a.active {
    border-bottom: 2px solid #d4af37;
    color: #d4af37;
}

.menu ul li{
    list-style: none;
    position: relative;
    padding: 8px 12px;
    display: inline-block;
}
.menu ul li a{
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-family: 'lato',"open sans" ;
}
.menu a:hover{
    color: #d4af37;
}
/* helps the main content not hide under the header*/
main{
    background-color: #fff;
    padding-top: 100px;
}
.about{
    text-align: center;
}
.about h2{
    font-size: 40px;
    font-family: "open sans", lato;
}
.about p{
    font-size: 20px;
    font-family: "lato", "open sans";
}
.hero{
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    text-align: center;
    margin-top: 20px;
}
.hero_image{
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    bottom: 30%;
    top: 20%;
    z-index: 5;
    object-fit: cover;
}
.hero img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
  }
  
.gallery-btn{
    display: block;
    width: fit-content;
    margin: 20px auto;
    padding: 12px 24px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: maroon;
    color: #fff;
    border-radius: 8px;
    transition: background 0.3s;
}
.gallery-btn:hover{
    background-color: #d4af37;
}
.info{
    font-size: 28px;
    margin-top: 8px;
    text-align: center;
}
.program-container{
    display: flex;
    flex-direction: column;
    align-items: center;

}
.program{
    width: 600px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin: 20px auto;
    gap: 20px;
}
.text a{
    color: #3a3a3a;
}
.program img{
    width: 45%;
    height: auto;
    border-radius: 8px;

}
.program-container a:hover{
    color: #d4af37;
}
.gallery h2{
    text-transform: capitalize;
    text-align: center;
    font-size: 300%;
    padding-top: 100px;
    font-family: "oswald", lato;
    color: #3f2805;
     
}
.images { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}
.images img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}
.videos { 
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.videos video {
    width: 100%;
    max-width: 300px;
    height: auto;
}

footer{
    margin-top: 130px;
    background-color: #3a3a3a;
    margin-bottom: 0;
}
.socials{
    padding: 12px 0;
    display: flex;
    justify-content: space-evenly;
    list-style: none;
}
.socials i{
    font-size: 130%;
    color: #ffff;
}
.socials i:hover{
    color: #3f2805;
}
footer p{
    text-align: center;
    color: #fff;
}
.contact {

    background-color: #3f2805;
    clear: left;
}

.contact-form h2 {
    color: rgb(243, 244, 245);
    margin-bottom: 20px;
}

.contact-form {

    color: rgb(243, 244, 245);
}
.join-button{
    color: #3f2805;
}
.join-button:hover{
    color: #d4af37;
}
.input {
    color: black;
    width: 100%;
    height: 30px;
    margin: 5px 10px 20px 0;
    border-radius: 5px;
    font-family: Lora, serif;
    font-size: 100%;
}
.opening-hours, .locations{
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 20px auto;
}
.opening-hours h2, .locations h2{
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}
.opening-hours p, .locations p{
    font-size: 1.2em;
    text-align: center;
}
.locations p strong{
    color: #000;
}
.info-container{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}
.main-contact{
    display: flex;
}
.main-contact > *{
    width: 50%;
    padding: 2rem;
}
.contact-info{
    text-align: center;
}

.contact-info div ul {
    list-style-type: none;
}
.program-container{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 20px;
    padding: 20px;
}
.program{
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}
.program img{
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.images, .videos{
    column-count: 3;
    column-gap: 10px;
}
footer{
    margin-top: 50px;
    padding: 20px;
    background-color: #3a3a3a;
    text-align: center;
}
.socials{
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.socials i{
    font-size: 24px;
    color: #fff;
    transition: color 0.3s;
}
.socials i:hover{
    color: #d4af37;
}


 /*Small small devices  (Large Phones)*/
@media only screen and (max-width: 768px) {
    header{
        flex-direction: column;
        align-items: center;
    }
    .menu{
        width: 300px;
        padding: 0;
        bottom: 0%;
        right: 0;
        text-align: center;
    }
    .menu li{
        text-align: center;
    }

    .main-contact{
        flex-direction: column;
     }
     
     
     .main-contact > *{
         width: 100%;
        
     }
}

/* Large devices (Tablets) */
@media only screen and (max-width: 992px) {
    .hero{
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
    }
    .hero_image{
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}


.welcome-main{
    height: 58vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.welcome-main p{
    text-align: center;
}