/* 
"Oswald"
"Zen Loop"
"Syne Tactile"
"EB Garamond"
"Cairo"
"Playfair Display"
 */
 :root{
    --primary-color: #FFFFFF;
    --secondary-color: #000000;
    --theme-color: #081024;
    --main-font: "Playfair Display", serif;
    --secondary-font: "Oswald", sans-serif;
    
 }
 body{
    font-family: var(--main-font);
    background-color: var(--theme-color);
 }
 .container{
    max-width: 1800px;
    margin: 0 auto;
    padding: 20px;
 }
 header{
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4)), url("/images/waterPartingGif.gif");
    background-size: cover;
    text-align: center;
    padding: 200px 0;
    color: var(--primary-color);
    background-repeat: no-repeat;
 
   
 }
header h1{
  
    font-style: normal;
    font-weight: 700;
    font-size: 96px;
    line-height: 1.5;
    text-align: center;
    margin:0;
    
    
}
header h2{
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.5;
    text-align: center;
    margin:0;
    
}
header h3{
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 5px;
    height: 30px;
    margin: 0;
}
header a{
    display: inline-block;
    margin-top: 20px;
    padding: 16px 32px;
    background-color:var(--primary-color);
    color: var(--secondary-color) ;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family:"cairo", serif;
}

section{
    max-width: 100%;
    margin: 0 auto;
    padding: 100px ;
}
section.secondary{
    background-color: #f8f8f8;
}
.text-center{
    text-align: center;
}
main{
    background-color: var(--primary-color);
}
main h2{
    font-weight: 700;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    margin:0;
    opacity: 0.3;
    color:#270044;
    text-transform: uppercase;
}
main h3{
    font-weight: 700;
    font-size: 33px;
    line-height: 1.5;
    text-align: center;
    margin:0;
    color:#270044;
}
main p{
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    /* text-align: center; */
    margin:0;
    color:#270044;
    opacity: 0.7;
}
.grid {
  display: grid;
  grid-gap: 64px;
}

.img-responsive {
  max-width: 100%;
  display: block;
}

.grid-2-column {
  grid-template-columns: 1fr 1fr;
}

.grid-3-columns {
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 0;
}
.grid-3-columns-1-narrow{
    grid-template-columns: 1fr 2fr 2fr;
    grid-gap: 70px;
}
.card{
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
main h4{
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
    margin:0;
    color:#270044;
}
main h5{
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    margin:0;
    color:#270044;
}
.btn{
    display: block;
    padding: 16px 20px;
    margin-top: 20px;
    background-color:var(--secondary-color);
    color: var(--primary-color) ;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 5px;
    line-height: 21px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-family: var(--main-font);
}
.img-responsive{
    width: 100%;
    height: auto;
}
.embed{
    width: 100%;
    aspect-ratio: 16/9;

}
footer{
    color: var(--primary-color);
    background-image: linear-gradient(rgba(39, 32, 68, 0.9), rgba(39, 32, 68, 0.5)), url("/images/Battel-image.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    
    /* padding: 100px 0; */
}
footer h3{
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
}
footer p{
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    opacity: 0.8;
}
footer ul{
    padding: 0;
    margin: 0;
}
footer li{
    list-style: none;
    margin:0;
    padding: 0;
}
footer a{
    color: var(--primary-color);
    text-decoration: none;
    opacity: 0.8;
}
.embed {
  width: 100%;
  aspect-ratio: 16/9;
}
.cast-member img {
    
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    aspect-ratio: 1/1;
    /* grid-gap :20px; */

}
.cast-member a {
    position: relative;
    display: block;
}

.cast-member .cast-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.75);
    color: white;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cast-member a:hover .cast-name {
    opacity: 1;
}

@media(max-width:960px){
    header{
        padding: 60px 0;
    }
    header h1{
        
        font-size: 48px;
    }
    header h2{
        font-size: 20px;
    }
    header h3{
        font-size: 12px;
    }
    header a{
        padding: 8px 16px;
        font-size: 12px;
    }
    .grid{
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }
    section{
        padding: 50px ;
    }
    .cast-member img {
    width: 50%;
    height: 50%;
    display: block;
    margin: 0 auto;
    
    

}
   
}
