/* css reset */
body {
    margin: 0;
    padding: 0;
  }

/* add fonts to css */
@font-face {
    font-family: 'Times Ten';
    src: url('fonts/TimesTen.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Times Ten';
    src: url('fonts/TimesTenItalic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Times Ten';
    src: url('fonts/TimesTenBold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Times Ten';
    src: url('fonts/TimesTenBoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}


/* header */
#header-img{
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px){
    #header-img{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    }
}


/* nav */
#nav-bar-ul{
    display: flex;
    flex-direction: row;
    list-style: none;
    justify-content: space-around;
    font-family: 'Times Ten', serif;
    letter-spacing: 1.92px;
    font-size: 24px;
    font-weight: 300;
    margin: 0;
    padding: 30px;
}

.nav-link a{
    text-decoration: none;
    cursor: pointer;
    color: transparent;
    background: #E8B562;
   -webkit-background-clip: text;
   -moz-background-clip: text;
   background-clip: text;
   text-shadow: 0px 3px 3px rgba(255,255,255,0.5), 0 0 0 rgba(156,112,52,0.5);
}


#nav-bar{
    background-color: #FFF5E9;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 2000;
}

@media (max-width: 768px){
    #nav-bar{
        width:100%;
        height: auto;
        margin:0;
        padding: 0;
        position: sticky;
        top: 0;
        overflow: hidden;
        z-index: 2000;
    }

    #nav-bar-ul{
        display:flex;
        gap:10px;
        font-size: 10px;
        justify-content: center;
    }

}


/* video section */
#product-intro{
    display:flex;
    flex-direction: column;
    justify-content: center;
    background-color: #FDFEFF;
    margin: 0;
    padding: 0;
}

#quote-text{
text-align: center;
font-family: 'Times Ten', serif;
font-size: 22px;
font-weight: 400;
letter-spacing: 1.92px;
line-height: 50px;
margin-top: 50px;
margin-bottom: 40px;
color: #29323B;
}

#video-desc{
text-align: center;
font-family: 'Times Ten', serif;
font-size: 22px;
font-weight: 400;
letter-spacing: 1.92px;
line-height: 35px;
margin-top: 40px;
margin-bottom: 55px;
color: #29323B;
}

#product-video{
    display: flex;
    flex-direction:column;
    justify-content: center;
    margin: 0 auto;
}

@media (max-width: 768px){

    #product-intro{
        width: 100%;
        height: auto;
        margin:0;
        padding:0;
    }

    #product-video{
        width: 100%;
        height: auto;
        margin:0;
        padding:0;
}
    #video-desc{
        text-align: center;
        font-family: 'Times Ten', serif;
        font-size: 13px;
        font-weight: 400;
        line-height: 26px;
        color: #29323B;
}
    #quote-text{
        text-align: center;
        font-family: 'Times Ten', serif;
        font-size: 15px;
        font-weight: 400;
        line-height: 33px;
        color: #29323B;
}
}


/* tracklist */
#album-tracklist{
display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    margin-top: 0px;
}

#tracklist-img{
    display: flex;
    justify-content: center;
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    margin-top: 0px;
}

@media (max-width: 768px){

    #album-tracklist{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    }
    
    #tracklist-img{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
    }
}


/* shop section */
#product-shop{
    display:flex;
    flex-direction: column;
    align-items:center;
    margin:0;
    padding:0;
    background-color: #E5E5E5;
    width:100%;
    height: auto;
}

#product-cards{
    display: flex;
    flex-direction: column;
    font-family: 'Times Ten', serif;
    font-size: 20px;
    font-weight:400;
    letter-spacing: 1.92px;
    
}

table {
  border-collapse: separate; 
  border-spacing: 50px; 
}

td{
    background-color: #F1F1F1;
    text-align: center;
    font-family: 'Times Ten', serif;
    font-size: 20px;
    font-weight: 400;
    padding: 15px;
    width: 450px;
    color: #29323B;
}

td li{
    list-style: none;
    margin-right: 50px;
    line-height: 50px;
}

td button:hover{
    transform: translateY(-5px);
    box-shadow: 0px 0px 3px rgb(255, 218, 169);
    border: white groove 1px;
}

td button{
    margin-top: 60px;
    margin-bottom: 15px;
    font-family: 'Times Ten', serif;
    font-size: 26px;
    letter-spacing: 9px;
    font-weight: 400;
    color: white;      
    text-shadow: 0px 0px 3px rgb(255, 218, 169);
    background: #7C8FA0;  
    padding: 0.5rem 1rem;
    cursor: pointer;
    box-shadow:none;
    border-style: initial;
    transform: none;
    width: 350px;
    height: 130px;
}

.gold-text{
    color: #B38542;
    font-family: 'Times Ten', serif;
    font-size: 20px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 40px;
}

.product-img{
    width: 400px;
    height: auto;
}

@media (max-width: 768px){
  table, thead, tbody, th, td, tr { 
    display: block; 
    width: 100%; 
}
  tr { 
    margin-bottom: 1rem; 
}
  td { 
    box-sizing: border-box; 
    width: 100% !important; 
    padding: 0.75rem; }

  table { 
    border-collapse: separate; 
    border-spacing: 50px; 
}

.product-img{
    width: 400px;
    height: auto;
}
}


/* form section */
#form-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-image: url('../images/Form Background.png');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: auto;
    margin:0;
    padding: 0; 
}

#form-section h2{
    font-family: 'Times Ten', serif;
    font-size: 30px;
    color: white;
    text-shadow: 0px 0px 3px rgb(255, 218, 169);
    font-weight: 400;
    letter-spacing: 11px;
    margin:0;
    padding: 50px;
    margin-top: 9px;
}


form{
    width: 600px;
    margin-bottom: 60px;
    border-style: initial;
}


input[type="text"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 0.8rem;
  font-family: 'Times Ten', serif;
  color:white;
  background-color: rgba(217, 217, 217, 0.45);
  text-shadow: 0px 0px 3px rgb(255, 218, 169);
  font-size: 15px;;
  margin-bottom:23px;
  margin-top: 15px;
  border-style: initial;
}

label{
    font-family: 'Times Ten', serif;
    color: white;
    font-size: 15px;
    font-weight: 200;
    letter-spacing: 5px;
    text-shadow: 0px 3px 3px rgb(0, 0, 0, 0.6);
}

form button{
    font-family: 'Times Ten', serif;
    font-size: 15px;
    letter-spacing: 1.92px;
    font-weight: 400;
    color: white;      
    text-shadow: 0px 0px 3px rgb(255, 218, 169);
    background: rgba(217, 217, 217, 0.45);  
    padding: 0.5rem 1rem;
    cursor: pointer;
    box-shadow:none;
    border-style: initial;
    border: white groove 1px;
    box-shadow: 0px 0px 3px rgb(255, 218, 169);
    transform: none;
}

form button:hover{
    transform: translateY(-5px);
}

::placeholder{
    color:white;
}


@media (max-width: 768px){
    #form-section { 
    width:100%;
    background-position: center;
  }

  #form-section h2{
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    max-width:300px;
    letter-spacing: 6px;
  }

  form{
    width: 100%;
    max-width: 300px;
    margin: 0 auto 40px;
    padding: 0 12px;
    box-sizing: border-box;
  }

  input[type="text"],
  input[type="email"],
  select,
  textarea {
    font-size: 14px;
    padding: 0.6rem;
  }

  label{
    font-size: 14px;
    letter-spacing: 4px;
  }

  form button{;
    max-width: 100px;
    font-size: 15px;
    padding: 0.75rem;
    letter-spacing: 1.92px;
  }
}


/*Footer styles*/
footer{
    background-color: #000000;
    width:100%;
    margin:0;
    padding:0;
}

footer p{
    display: flex;
    justify-content: center;
    font-family:'Times Ten', serif;
    color: white;
    font-size:18px;
    margin:0;
    padding:30px;
    text-shadow: 0px 0px 3px rgb(255, 218, 169);
}

@media (max-width: 768px){
    footer{
        width: 100%;
        height: auto;
    }
}

/* Fade-in and fade-out animation on load */

body {
  opacity: 1;
  transition: 1s opacity;
}

body.fade-out {
  opacity: 0;
  transition: none;
}

/* Scroll fade animation */
.image-reveal{
    animation: imageReveal both;
    animation-timeline: view(100% 1%);
}

@keyframes imageReveal{
    from{
        filter: saturate(0) contrast (4) brightness(.1) blur (10px);
        opacity:0;
    }
    to{

        filter: none;
        opacity: 1;
    }
}

/* Mouse light effect (used AI to make this!) */
#mouse-light {
  position: fixed;
  top: 0; left: 0;
  width: var(--mouse-light-size,220px);
  height: var(--mouse-light-size,220px);
  pointer-events: none;
  transform: translate3d(-50%,-50%,0);
  background: radial-gradient(circle at 50% 40%,
    rgba(255,255,220,0.70) 0%,
    rgba(255,200,100,0.18) 30%,
    rgba(255,200,100,0.04) 60%,
    transparent 75%);
  filter: blur(28px);
  mix-blend-mode: screen;
  opacity: 0;
  z-index: 9999;
  will-change: transform, opacity;
  transition: opacity 220ms linear;
}

