/* CSS Reset */
:root{
  --gradient: linear-gradient(0deg,rgba(230, 161, 108, 1) 0%, rgba(232, 237, 183, 1) 38%, rgba(190, 228, 230, 1) 76%, rgba(133, 160, 230, 1) 100%);
}
*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
p {
  text-wrap: pretty;
  max-width: 65ch;
}
h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/* Base Styles */
body{
    font-family: 'barlow condensed', sans-serif;
    font-size: 1.3em;
    background-color: rgb(27, 19, 19);
    color: #e6bc9f;
}
h1{
    font-size: 2.5em;
    font-family: 'calistoga', sans-serif;
}
h2{
    font-size: 2em;
    font-family: 'calistoga', sans-serif;
}
h3{
    font-size: 1.5em;
    font-family: 'barlow condesnsed', sans-serif;
    font-weight: 600;
}
h4{
    font-size: 1.5em;
    font-family: 'barlow condensed', sans-serif;
    font-weight: 400;
}
a{
    color: #e6bc9f;
    text-decoration: none;
    transition: color 0.3s ease;
}

/*header*/
header{
  display: flex;
  justify-content: flex-end;
  min-height: 400px;
  background-image: var(--gradient);
  background-size: 400% 400%;
  animation:sunrise 10s ease infinite;
}
@keyframes sunrise {
  0% { background-position: top; }
  50% { background-position: bottom; }
  100% { background-position: top; }
}
header img{
  max-height: 70vh;
  padding: 20px 0px 0px 0px;
}

/* navigation */
.sidenav {
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}
.sidenav a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 2em;
    color: #e6bc9f;
    display: block;
    transition: 0.3s;
}
.sidenav a:hover {
    color: #ff6347;
}
.sidenav .closebtn {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    margin-left: 50px;
    padding: 10px 15px;
    background-color: #e6bc9f;
    border: none;
    border-radius: 10px;
}
#openNav {
    font-size: 30px;
    cursor: pointer;
    background-color: rgb(27, 19, 19);
    color: #e6bc9f;
    padding: 10px 15px;
    border: none;
    position: fixed;
    top: 20px;
    left: 20px;
    border-radius: 10px;
}
#openNav:hover {
    background-color: #444;
}
.social-icons {
  display: flex;
  gap: 1rem;
}
.social-icons a img{
  height: 60px;
  width: 60px;
  background-color: #e6bc9f;
  border-radius: 10px;
  margin-top: 20px;
}
.contact{
  display: flex;
  flex-direction: column;
}
.contact h3{
  font-size: 1.5em;
  font-family: 'calistoga', sans-serif;
  padding: 20px 8px 8px 32px;
}
.contact p{
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 1.2em;
  color: #e6bc9f;
  
}




/* gallery */
.gallery{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: .25rem;
  margin: 80px;
}
.gallery-item{
  cursor: pointer;
  width: 100%;
  height: auto;
  transition: transform 0.2s;
}
.showcase{
  width: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #e6bc9f;
  color: rgb(27, 19, 19);
  transition: 0.5s;
  z-index: 999;
  padding-top: 60px;
  
}
.showcase h2{
  margin-top: 80px;
  margin-bottom: 0px;
  font-size: clamp(1.8rem, -0.875rem + 8.333vw, 2.5em);
}

.showcase.active {
  width: 100%;
  opacity: 1;
  padding: 10px 80px;
  overflow: auto;
}
#showcasebtn{
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    margin-left: 50px;
    padding: 20px 20px;
    color: #e6bc9f;
    background-color: rgb(27, 19, 19);
    border: none;
    border-radius: 10px;
}
.showcase-flexbox{
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: space-evenly;
  gap: 1rem;
  width: 100%;
}
.showcase-flexbox img{
  max-height: 400px;
  max-width: 100%;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.5s;
}
.showcase-flexbox img:active{
  transform: scale(1.8);
  z-index: 10;
}
.rough-flexbox{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: space-around;
  gap: 1rem;
  flex: 1 1 100%;
  margin-top: 1rem;
}
.rough-flexbox img{
  max-height: 200px;
  max-width: 100%;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.5s;
}
.rough-flexbox img:active{
  transform: scale(1.8);
  
}
.showcase-flexbox p{
  max-width: 65ch;
  font-size: 1.2em;
  text-align: start;
  padding: 20px;
}
video{
  height: auto;
  min-width:33%;
  border-radius: 20px;
}
#videodescription{
  max-width:30ch;
}
#martyheadline{
  word-wrap: none;
}
#emonight{
  height: 400px;
  width: auto;
  border-radius: 20px;
}
#haildestroyer{
  height: 400px;
  width: auto;
  border-radius: 20px;
}

hr{
  width: 100%;
  height: 2px;
  background-color: #e6bc9f;
  border: none;
  margin: 20px 0;
}
.bio{
  margin: 80px ;
  display: flex;
  flex-wrap: wrap;
  
}
.bio p{
  
  max-width: 50ch;
  font-size: 1.2em;
  text-align: start;
  padding: 20px;
}
.bio img{
  min-width: 200px;
  max-width: 45%;
  object-fit: contain;
  border-radius: 20px;
  margin: 20px;
}

/* footer */
footer{
  display: flex;
  color: #e6bc9f;
  padding: 20px;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
.footer-contact{
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 0.5em;
}
.footer-contact h3{
  font-size: 1.5em;
  font-family: 'calistoga', sans-serif;
}
.footer-contact a:hover {
    color: #ff6347;
}
.footer-nav{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav a{
  font-size: 2em;
  margin: 5px 0;
  font-weight: 600;
}
.footer-nav a:hover {
    color: #ff6347;
}
.legal p{
  font-size: 0.5em;
  text-align: right;
  align-self: flex-end;
  margin-top: 20px;
}

@media(max-width:480px){
  main{
    margin: auto;
  }
  .gallery{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: .5rem;
  margin: .5rem 0rem;

  }
  .showcase.active {
  width: 100%;
  opacity: 1;
  padding: .5rem 2rem;
  overflow: auto;
  }
  .showcase-flexbox p{
  max-width: 65ch;
  font-size: 1em;
  text-align: start;
  padding: 20px;
}
}





