/* Six-Strings Guitar Shop - Style Sheet */
/* Jerod Hollen - November 20th, 2020 - CSCI 102 */

/* Font Colors - #de9623 #6b3636 #FCE19A*/

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=New+Rocker&family=Texturina:ital,wght@0,400;0,700;1,300&display=swap');

/* Universal Selector */
*{
    margin: 0;
    padding: 0; 
    box-sizing: border-box;
}

/* Body Selector */
body{
    font-family: 'Texturina';
    font-weight: 300;
    line-height: 27px;
    background: linear-gradient(90deg, rgba(54,52,56,1) 32%, rgba(92,90,87,1) 100%); 
}

/* Header Selector */
header{
    background: linear-gradient(90deg, rgba(54,52,56,1) 32%, rgba(92,90,87,1) 100%); 
    height: 100px;
    border-bottom: 1px solid black;
    position: relative;
}

/* Logo Style */
.logo{
    margin-left: 35px;
    padding: 5px;
}

.logo video{
    width: 90px;
    height: 90px;
    border-radius: 50px;
    border: 3px solid #FFC700;
}

.topnav .icon{
    display: none;
}

/* nav Selector */
nav{
    margin-top: 30px;
}

.nav-flex{
    display: flex;
    justify-content: space-between;

}

/* nav a Selector */
nav a{
    font-weight: 500;
    font-size: 2em;
    font-family: 'New Rocker';
    padding: 10px 40px;
    text-decoration: none;
    color: #05414a;
    text-shadow: -0.5px 0 #ffc700, 0 0.5px #ffc700, 0.5px 0 #ffc700, 0 -0.5px #ffc700;
    border-radius: 15px;
    
}

nav a:active{
    color: #FFC700 !important; 
    text-shadow: -0.5px 0 black, 0 0.5px black, 0.5px 0 black, 0 -0.5px black !important;
}

nav a:hover{
    color: white;
    transition-timing-function: ease;
    transition-delay: 50ms;
    text-decoration: none;
    border: 1px solid black;
    text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
    background: linear-gradient(90deg, rgba(18,128,148,1) 0%, rgba(4,57,65,1) 35%, rgba(103,191,213,1) 100%); 
}

/* nav a:visited{
    color: #5dbcd2;
    text-shadow: -0.5px 0 #FCC700, 0 0.5px #FCC700, 0.5px 0 #FFC700, 0 -0.5px #FFC700;
} */



/* Banner Style */
.banner{
    height: 87.81vh;
    background-image: url(../images/banner.jpg);
    background-size: cover;
    border-bottom: 1px solid black;
}

/* Banner Content Style */
.banner-content{
    width: 100%;
    line-height: 80px;
    text-align: left;
    padding-top: 150px;
    padding-left: 30px;
}


/* banner-content h1 style */
.banner-content h1{
    color: black;
    font-weight: 700;
    font-family: 'New Rocker';
    text-shadow: -2px 0 white, 0 2px white, 2px 0 white, 0 -2px white;
    font-size: 4em;
}

/* banner-content p */
.banner-content p{
    color: white;
    font-weight: 400;
    font-family: 'New Rocker';
    text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
    font-size: 2em;
    margin-left: 140px;
}

/* main element Selector */
main{
    width: 100%;
    margin: auto;
    font-family: 'Texturina';
}

.col-12{
    background: linear-gradient(90deg, rgba(18,128,148,1) 0%, rgba(4,57,65,1) 35%, rgba(103,191,213,1) 100%);   
    text-align: center;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    width: 100%;
}

.col-12 h1{
    font-family: 'New Rocker';
    font-weight: 700;
    width: 100%;
    color: #fff;
    font-size: 72px;
    text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
    margin-top: 10px;
}


.col, .col-sm-12, .col-lg-6, .col-lg-12{
    padding: 30px;
    
}
.col-sm-12 img, .col-lg-6 img{
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 1px solid black;
    box-shadow: 0 20px 60px black;
}

/* Button Stuff */
.button {
    display: block;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
  }

  /* Additional Button Stuff */
  .button:hover, .hvr-grow:focus, .hvr-grow:active {
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
    text-decoration: none;
  }

  .location{
      text-align: center;
  }

  .location h5{
    background: linear-gradient(90deg, rgba(54,52,56,1) 32%, rgba(92,90,87,1) 100%);
    color: white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    font-family: 'New Rocker';
    padding: 10px;
    margin-bottom: 0;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
  }



  .location img{
      border-radius: 0 0  15px 15px;
      border-top: none;
      box-shadow: 0 10px 60px black;
      height: 400px;
  }

  .sign{
      color: black;
      box-shadow: 0 5px 20px black;
      background: radial-gradient(circle, rgba(255,199,0,1) 39%, rgba(222,150,35,1) 100%);
      border-radius: 10px;
      text-decoration: none;
      text-align: center;
      width: 40%;
      margin-left: auto;
      margin-right: auto;
  }

  .sign:hover{
      color: white;

  }
  
  .directions{
      border-radius: 5px;
      border: 1px solid black;
      box-shadow: 0 5px 20px black;
      background: linear-gradient(90deg, rgba(18,128,148,1) 0%, rgba(4,57,65,1) 35%, rgba(103,191,213,1) 100%);  
      text-decoration: none;
      text-align: center;
      color: white;
      font-size: 20px;
      text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
      margin-top: 10px;
      margin-left: 25%;
      height: 35px;
      width: 50%;
  }

  .directions:hover{
      color: #FFC700;
      background: linear-gradient(90deg, rgba(18,128,148,1) 0%, rgba(4,57,65,1) 35%, rgba(103,191,213,1) 100%);  
  }

  

  .name{
      font-style: italic;
  }

/* Left Column Layout */
.design{
    background: radial-gradient(circle, rgba(255,199,0,1) 39%, rgba(222,150,35,1) 100%);
    text-align: center;
    padding: 7%;
    border-radius: 15px;
    box-shadow: 0 20px 60px black;
    border: 1px solid black;
    height: 100%;
}

.design.form{
    text-align: left;
    position: absolute;
    max-height: 90%;
    width: 80%;
    top: 15px;
    bottom: 15px;
    left: 10px;
    right: 10px;
    padding: 10px;
    margin: auto;
    overflow: scroll;
}

#bg-image img{
    width: 100%;
    height: 700px;
    border-radius: 15px;
}

#bg-image{
    position: relative;
    padding: 0px;
    margin: 20px 0px;
}


/* design h1 selector */
.design h1, .design h3{
    padding: 15px;
    margin-bottom: 0;
    background: linear-gradient(90deg, rgba(18,128,148,1) 0%, rgba(4,57,65,1) 35%, rgba(103,191,213,1) 100%); 
    border-radius: 15px 15px 0 0;
    border: 1px solid black;
    box-shadow: 0 10px 20px black;
    font-family: 'New Rocker';
    color: black;
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

.design h2{
    padding: 10px;
    font-family: 'New Rocker';
    box-shadow: 0 10px 20px black;
    color: black;
    border: 1px solid black;
    border-radius:  15px;
    margin-top: 30px;
    background: linear-gradient(90deg, rgba(54,52,56,1) 32%, rgba(92,90,87,1) 100%); 
    text-shadow: -1px 0 white, 0 1px white, 1px 0 white, 0 -1px white;
}

/* design p selector */
.design p{
    margin-bottom: 0;
    font-weight: 300;
    font-family: 'Texturina';
    line-height: 2.5em;
    padding: 15px;
    box-shadow: 0 10px 20px black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    border-radius: 0 0 15px 15px;
    background: rgb(54,52,56);
    background: linear-gradient(90deg, rgba(54,52,56,1) 32%, rgba(92,90,87,1) 100%); 
    color: white;
    text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}


/* design dl */
.design dl{
    line-height: 30px;
    box-shadow: 0 10px 20px black;
    padding: 5px;
    border: 1px solid black;
    font-family: 'Texturina';
    border-radius: 0 0 15px 15px;
    background: linear-gradient(90deg, rgba(54,52,56,1) 32%, rgba(92,90,87,1) 100%); 
}

/* design dt */
.design dt{
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
    color: white;
    text-shadow: -2px 0 black, 0 2px black, 2px 0 black, 0 -2px black;
}

.design dd{
    
    color: white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    font-size: 15px;
}

ol, ul, li{
    margin: 0;
    padding: 0;
}
.design ol{
    padding: 20px;
    line-height: 30px;
    text-align: left;
    border-radius: 0 0 15px 15px;
    border-left: solid 1px black;
    border-right: solid 1px black;
    border-bottom: solid 1px black;
    background: linear-gradient(90deg, rgba(54,52,56,1) 32%, rgba(92,90,87,1) 100%); 
}

.design li{
    color: white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    padding: 10px;
}


/* lessons */
.lessons{
    background: none;
    border: none;
    box-shadow: none;
    padding: 20px;
    width: 500px;
}

.lessons img{
    margin-top: 15px;
    border-radius: 15px;
    border: 1px solid black;
    box-shadow: 0 10px 20px black;
}

.lessons h1{
    padding: 0;
}


.lessons dl{
    border-top: none;
    overflow: scroll;
}


/* link selector */
.link{
    text-decoration: none;
    line-height: 3em;
    color: #FFC700;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    
}

.link:hover{
    color: white;
}


.table-container{
    box-shadow: 0 10px 20px black;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-radius: 0 0 15px 15px;
    padding: 0px 30px 30px 30px;
    background: linear-gradient(90deg, rgba(54,52,56,1) 32%, rgba(92,90,87,1) 100%); 
    display: flex;
    justify-content: center;
}

#price-container{
    margin-top: 30px;
}

#price{
    margin-top: 25px;
}

#price td, #price th{
    padding: 6px 40px;
}

table{
    box-shadow: 0 2px 10px black;
    border-collapse: collapse;
    border-radius: 15px;
    background: linear-gradient(90deg, rgba(193,183,203,1) 0%, rgba(224,219,211,1) 100%);
    align-self: center;
    padding: 20px;
}

td, th{
    border-radius: 15px;
    border-left:solid black 1px;
    border-top:solid black 1px;
    padding: 6px 150px;
    border-right: none;
    border-bottom: none;
    color: black;
}

tr{
    border-right: none;
    height: 30px;
}

th {
    border-top: none;
    border-right: none;
    font-weight: 700;
}

td:first-child, th:first-child {
     border-left: none;
     border-right: none;
}

#caption{
    font-weight: 700;
    font-size: 1.2em;
    color: white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    caption-side: top;
    text-align: center;
}

#wrapper{
    min-height: 100%;
    height: auto;
    height: 100%;
    margin: 0 auto -142px;
}


footer{
    background: linear-gradient(90deg, rgba(18,128,148,1) 0%, rgba(4,57,65,1) 35%, rgba(103,191,213,1) 100%);
    border-top: 2px solid black;
    width: 100%;
    text-align: center;
    font-family: 'Texturina';
    
}

footer .copy{
    font-size: 20px;
    color: white;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    padding: 15px;
}




.btn.btn-primary{
    background: linear-gradient(90deg, rgba(54,52,56,1) 32%, rgba(92,90,87,1) 100%); 
    border: 1px solid black;
}

.btn.btn-primary:hover{
    border: 1px solid black;
}


/* Mobile media query */
@media(max-width: 600px){
    .topnav a{display: none;}
    .topnav a.icon {
        display: flex;
        padding-left: 15px;
        padding-top: 10px;
        height: 50px;
        background: none;
        color: #ffc700;
        
    }
    .topnav.responsive {position: relative;}
    .topnav.responive.icon a.icon {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }

    nav{
        margin: 15px;
        position: absolute;
        top: 10px;
        right: 0;
        z-index: 1;
        background: linear-gradient(90deg, rgba(18,128,148,1) 0%, rgba(4,57,65,1) 35%, rgba(103,191,213,1) 100%); 
        border-radius: 15px;
        border: 1px solid black;
    }

    nav a{
        color: white;
        text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black
    }
    
    
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
        
    }

    .banner{
        display: none;
    }
    
    .col-12 h1{
        font-size: 50px;
    }

    .design.form{

    }


}

@media(max-width: 1024px){

    .logo{
        margin-left: 10px;
        margin-top: 5px;
        background-image: url(../images/logo.png);
        background-size: contain;
        height: 85px;
        width: 90px;
        border-radius: 50%;
        border: 3px solid #FCC700;
    }

    .logo video{
        display: none;
    }

    nav a{
        padding: 5px;
        margin-right: 13px;
    }

    .banner{
        display: none;
    }

    #price td, #price th{
        padding: 4px;
    }

    td, th{
        padding: 6px 10px;
    }
}