@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap"); /* import font */
@import url("https://fonts.googleapis.com/css2?family=Varela Round"); /* import font */

/* Reset */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  background-color: transparent;
  font-family: "Roboto", sans-serif;
}
a{
  text-decoration: none;
}
ul{
  list-style: none;
}

/* Header */
.header{
  background-color: transparent;
  box-shadow: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 3;
}


/* Nav menu */
.nav{
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #4e3b34ff;
  overflow: hidden;
}
.menu a{
  display: block;
  color: #fff;
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;
  transition: 0.5s;
  padding: calc((100px - 1.2vw) / 2.5) 30px 0;
}
.menu a:hover{
  color: #c9571cff;
}
.nav{
  max-height: 0;
  transition: max-height .5s ease-out;
}


/* Menu Icon */
.hamb{
  cursor: pointer;
  float: right;
  padding: calc((100px - 1.2vw) / 1.7) 30px;
}/* Style label tag */

.hamb-line {
  background: #fff;
  display: block;
  height: 2px;
  position: relative;
  width: 24px;

} /* Style span tag */

.hamb-line::before,
.hamb-line::after{
  background: #fff;
  content: '';
  display: block;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  width: 100%;
}
.hamb-line::before{
  top: 5px;
}
.hamb-line::after{
  top: -5px;
}

.side-menu {
  display: none;
} /* Hide checkbox */



/* Toggle menu icon */
.side-menu:checked ~ nav{
  max-height: 100%;
}
.side-menu:checked ~ .hamb .hamb-line {
  background: transparent;
}
.side-menu:checked ~ .hamb .hamb-line::before {
  transform: rotate(-45deg);
  top:0;
}
.side-menu:checked ~ .hamb .hamb-line::after {
  transform: rotate(45deg);
  top:0;
}






/* Sub nav */
.subnav{
  background-color: transparent;
  border: transparent;  
  position: relative;
  display: block;
}

/* Dropdown Button */
.subnavbtn {  
  text-decoration: none;
  color: #fff;
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;   
  transition: 0.5s; 
  padding: calc((100px - 1.2vw) / 2.5) 30px 0;
}
.subnavbtn:hover{
  /*-webkit-text-stroke: 1px #c9571cff;*/
  color: #c9571cff;
}
.subnav-content {
  background-color: #fff;
  z-index: 2;
  display: none;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); 
  max-width: none;
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 10px 20px 0;
}
.subnav-content a {
  color: #4e3b34ff;
  text-decoration: none;
  padding: 10px;
}
.subnav:hover .subnav-content{
  display: block;
}
.subnav:hover .subnav-contentb{
  display: block;
}
.subnav-contentb {
  background-color: #fff;
  z-index: 2;
  display: none;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); 
  max-width: none;
  font-style: normal;
  font-weight: bold;
  font-size: 1.5rem;
  padding: 10px 20px 0;
}
.subnav-contentb a {
  color: #4e3b34ff;
  text-decoration: none;
  padding: 10px;
}


/* Style the video: 100% width and height to cover the entire window */
#myVideo {
  position: fixed;
  right: 0;
  top: 0;
  z-index: -2;
  min-width: 100%;
  min-height: 100%;
}




.content{
  text-align: center;
  z-index: 1;
  position: absolute;
  padding: 20px;
  top: calc(min(calc(250px + 20vw), 800px) / 3.5);
}

.content h1{
  color: #fff; 
  transition: 0.5s;
  padding: min(10px, 1vw) 0;
  font-style: normal;
  font-size: clamp(2.5rem, 5vw, 6rem); 
  text-shadow: #4e3b34ff 2px 2px 5px; 
}
.content h1:hover{
  -webkit-text-stroke: 1px #c9571cff; 
  transition: 0.5s;
}
.content h2{  
  color: #fff; 
  padding: min(10px, 1vw) 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-style: italic; 
  text-shadow: #4e3b34ff 2px 2px 5px; 
}
.content a{
  text-decoration: none;
  display: inline-block;
  color: #fff;
  font-style: normal;
  font-size: clamp(1.5rem, 2vw, 2rem);
  border: 2px solid #fff;
  padding: 20px;
  border-radius: 50px;
  margin-top: clamp(22px, 1vw, 10px);
  transition: 0.5s;
}
.content a:hover{
  background-color: #c9571cff;
  color: #fff;
  border: 2px solid #c9571cff;
}



/* Responsiveness */
@media (min-width: 1300px) {
  .nav{
      max-height: none;
      top: 0;
      position: relative;
      float: right;
      width: fit-content;
      background-color: transparent;
  }
  .menu li{
      float: left;
  }
  .menu a:hover{
      background-color: transparent;
      color: #c9571cff;
  }

  .hamb{
      display: none;
  }

  /* Sub nav */
  .subnav-content {
      display: none;
      background-color: #fff;
      max-width: 160px;
      position: relative;
  }
  .subnav-content a {
      color: #c9571cff;
  }

  /* Sub nav */
  .subnav-contentb {
    display: none;
    background-color: #fff;
    max-width: 280px;
    position: relative;
  }
  .subnav-contentb a {
      color: #c9571cff;
  }
}



.content-subpage-body{
  z-index: 1;
  position: absolute;
  top: min(calc(250px + 20vw), 800px);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  color: #4e3b34ff;   
  background: #fff;
  width: 100%;
  height: 500%;
  padding-top: min(1vh, 20px);
  padding-bottom: 0;
  padding-left: 8%;
  padding-right: 8%;
}
.content-subpage-body h1{  
  padding: min(10px, 1vw);
  font-style: normal;
  font-size: clamp(2.5rem, 5vw, 6rem);  
}
.content-subpage-body h2{  
  padding: min(10px, 1vw);
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-style: italic; 
}
.content-subpage-body img{
  width: 50%;
  object-fit: cover;  
  border: 3px solid #fff;
  border-radius: 10px;
}
.text-box {  
  max-width: 1000px;
}
.text-box h2{  
  font-style: normal;
  font-size: clamp(1.5rem, 2vw, 2rem);
}
.text-box p{
  font-style: normal;
  font-size: clamp(1rem, 1vw, 2rem);
}