@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito+Sans:opsz@6..12&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Marcellus&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

*{
    margin: 0;
    padding: 0;
    font-family: Montserrat, sans-serif;

}

body{
    background-color: rgb(24, 24, 24);
    color: white;

}

a{
    color: white;
    font-family: Playfair Display, serif;
}

h1{
    font-family: Playfair Display, serif;
}

h2{
    font-family: Playfair Display, serif;
}



#header{
    width: 100%;
    height: auto;
    background-color: rgb(24, 24, 24);
    /*background-image: url(pictures/depeyize-gif.gif);
    background-size: cover;
    background-position: center;*/
}

.container{
    padding: 10px 7%;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo{
    font-size: 1.5rem;
    text-decoration: none;
}

nav ul li{
    display: inline-block;
    list-style: none;
    margin: 10px 20px;
}

nav ul li a{
    color: white;
    text-decoration: none;
    font-size: 1rem;
    position: relative;

}

nav ul li a::after{
    content: '';
    width: 0;
    height: 3px;
    background: white;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after{
    width: 100%;
}

#open-sidebar-button{
    display: none;
    background: none;
    border: none;
    padding: 1em;
    margin-left: auto;
    cursor: pointer;
  }
  #close-sidebar-button{
    display: none;
    background: none;
    border: none;
    padding: 1em;
    cursor: pointer;
    
  }
  #overlay{
    background: rgba(0, 0, 0, 0.5);
    position: fixed;
    inset: 0;
    z-index: 9;
    display: none;
  }
  .skip-link {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 1000;
    background-color: var(--accent-color); 
    color: #ffffff; 
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: opacity 0.3s ease;
  }
  
  .skip-link:focus {
    opacity: 1; 
    pointer-events: auto; 
    outline: 3px solid #ffffff; 
  }
  .logobackup{
        display: none;
  }

  .closedmenu {
    display: none; /* hidden by default on large screens */
    padding: 10px 7%; /* same as .container */
    background-color: rgb(24, 24, 24); /* match your header bg */
    height: 70px; /* approximate same height as your full nav */
    box-sizing: border-box; /* ensure padding doesn't expand height */
    justify-content: space-between; /* spread logo and button apart */
}

  @media screen and (max-width: 869px) {
    #open-sidebar-button, #close-sidebar-button{
      display: inline;
    }
    nav{
      position: fixed;
      top: min(7%);
      right: -100%;
      width: min(15em, 100%);
      z-index: 10;
      border-left: 1px solid var(--hover-color);
      transition: right 300ms ease-in-out;
    }
    nav.show{
      right: 0;
    }
    nav.show ~ #overlay{
      display: block;
    }
    nav ul{
      width: 100%;
      flex-direction: column;
    }
    nav a{
      width: 100%;
      padding-left: 2.5em;
    }
    nav a.active-link{
      border-bottom: none;
    }
    nav .home-li{
      margin-right: unset;
    }
    nav .logo{
        display: none;
    }

    .logobackup{
        display: flex;
        font-size: 1.5rem;
    }

    .closedmenu{
        display: flex;
        align-items: center;
        
    }
    #header {
        height: 0;
        overflow: hidden;
    }
    
    .contnav {
        padding: 0;
    }

    nav ul li{
        display: flex;
        list-style: none;
        margin: 10px 20px;
       
    }
    
  }


.landingImg{
   background-image: url(pictures/depeyize-gif.gif);
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   width: 100%;
   position: relative;
   padding-top: 56.25%;
   
} 

.landingText{
    position: absolute;
    top: 80%;
    left: 7%;
    transform: translate(-10%, -50%);
    font-size: 3vw;
    
}



@media screen and (min-width: 1130px){
    #about{
        padding: 80px 0;
        color: white;
    }
    
    .row{
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .about-col-1{
        flex-basis: 35%;
        margin: auto;
        display: flex;
    }
    
    .about-col-1 img{
        width: 100%;
        border-radius: 20px;
        display: flex;
        justify-content: center;
        
    }
    
    .about-col-2{
        flex-basis: 60%;
    }
}

@media screen and (max-width: 1130px){
    #about{
        padding: 30px 0;
        color: white;
    }
    
    .about-col-1 img{
        width: 90%;
        border-radius: 10px;
        align-content: center;
        height: auto;
        padding-left: 5%;
        display: flex;
        justify-content: center;

        
    }
    .about-col-2{
        padding-top: 30px;
        text-align: center;
    }
}




.sub-title{
    font-size: 2rem;
    font-weight: 600;
    color: white;
    
}

.sub-title a{
    color: white;
    text-decoration: none;
}

hr{
    margin: 10px;
    clear: both;
    display: block;
    border: solid 0.1px rgba(255, 255, 255, 0.152);
    background-color: rgba(255, 255, 255, 0.152);
    height: 0.1px;
    
}

.about-col-2 p a{
    margin-top: 25px;
    color: white;
}
 
#Films{
    padding: 30px;
}

.filmsText{
    text-align: center;
    margin-bottom: 0px;
}

.containerr{
    position: relative; 
    padding:3%
}


.filmIndex{
    width: 75%;
    height: auto;
    display: block; 
    opacity: 1;
    backface-visibility: hidden;
    margin-top: 0px;
    padding-left: 12.5%;
    
}

.overlay{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5 ease-in;
    
    
}

.containerr:hover .filmIndex{
    opacity: 0.6;
}

.containerr:hover .overlay{
    opacity: 1;
}

.text{
    color: white;
    font-size: 1.7rem;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: Playfair Display, serif;
}

.button-container{
    display: flex;
    align-items: center;
    justify-content: center;
}

.button{
    background-color: rgb(54, 52, 52);
    border: none;
    color: white;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-family: Playfair Display, serif;
    margin: 2px 4px;
    border-radius: 5px;
    cursor: pointer;
    
}

.photography{
    padding: 30px;
}

.photo-text{
    text-align: center;

}

.photo-index img{
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    height: auto;
    margin: auto;
    padding: 5%;
}

.bioImg{
    max-width: 65%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    margin-bottom: 20px;
    border-radius: 22px;
}

.about-text-page{
    
    padding-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 25px;
}

.about-page p{
    text-align: center;
}

@media screen and (min-width: 700px) {
    .rows{
        display: flex;
        justify-content: space-between;
        gap: 10px;
    }
    
    
    
    .column{
        flex: 1;
        padding: 0 10px;
        box-sizing: border-box;
    }
    
    .column img{
        margin-top: 20px;
        width: 100%;
        height: auto;
        
    }
}

@media screen and (max-width: 699px){
    .rows img{
        max-width: 85%;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 25px;
    margin-bottom: 25px;
    }
}




.video-show{
    margin-top: 5%;
    margin-bottom: 25px;
}

.film-titles{
    text-align: center;
    border-bottom: 25px;
    padding-bottom: 50px;
}

.photo-title{
    text-align: center;
    padding: 25px;
    margin: 0;
    margin-top: 25px;
}

.contact-info{
    padding-top: 20px;
}

.contact-index{
    padding-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 75%;
    margin: 0 auto;
    
    
}

.contact-text{
    flex: 1;
    padding: 0 10px;
    box-sizing: border-box;
    width: auto;
    font-size: 0.9rem;
}

