body{
  background: #ffffff;
  color: #515151;
  margin: 0 auto;
  padding: 0px;
  width: 100%;
  font-family: abril fatface;
}

a{
 text-decoration: none;
}

/*** HEADER ***/
header{
 height: 400px;
 background-position: center;
 background-repeat: no-repeat;
 background-size: cover;
 position: relative;
 background-image: url("the-rockstar-medium.jpg");
 z-index: 1;
}

.navbar{
 height: 60px;
 display: flex;
 align-items: center;
 padding: 5px;
}

.sticky{
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #0a0a10;
  opacity: 0.7;
}

.navbar.sticky + .accordion {
  margin-top: 58px;
}

div.hamburger{
 display: flex;
 width: 30px;
 height: 30px;
 flex-direction: column;
 justify-content: space-between;
}

.hamburger div{
 width: 30px;
 height: 5px;
 background: #ffffff;
 border-radius: 5px;
}

.navbar img{
 width: 100px;
 margin: 0px 5px 0px 5px;
}

nav {
 display: none; 
}

nav a{
 color: #ffffff;
 text-decoration: none;
 margin-left: 16px;
 display: inline-block;
}

nav a::after{
 content: '';
 display: block;
 width: 0;
 height: 2px;
 transition: .3s;
 background: #ffffff;
 text-decoration: none;
}

nav a:hover::after {
  width: 100%;
  background: solid 1px;
}

/*WEEK3 MUSTE HAVE*/
.week3-musthave{
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  background: #ffffff;
}

/*SIGN UP*/
.sign-up{
  margin:  20px;
  width: 350px;
  height: 370px;
  border-radius: 5px;
  color: #ffffff;
  background: url(https://image.freepik.com/free-photo/3d-grunge-room-interior-with-spotlight-smoky-atmosphere-background_1048-11333.jpg);
  opacity: 0.7;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

h3{
  font-family: Impact;
  font-size: 18px;
}

p{
  font-family: Helvetica, sans-serif;
  font-size: 12px;
  padding: 5px;
}

.sign-up a{
  color: #ffffff;
}

.data-container{
  display: grid;
  place-items: center;
}

.data-container input{
  width: 250px;
  background-color: rgba(255, 255, 255, 0.1);
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-radius: 3px;
  color: #ffffff;
}

.other-container{
  text-align: center;
  margin-top: -10px
}

.colors{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.colors label{
  padding-right: 15px;
  cursor: pointer;
}

label > input[type="radio"] {
  display: none;
}

label > input[type="radio"] + *::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 1rem;
  height: 1rem;
  margin-right: 0.3rem;
  border-radius: 50%;
  border-style: solid;
  border-width: 0.1rem;
  border-color: #ffffff;
}

label > input[type="radio"]:checked + *::before {
  background: radial-gradient(#1C2A32 0%, #1C2A32 40%, transparent 50%, transparent);
  border-color: #8C6F80;
}
label > input[type="radio"]:checked + * {
  color: #8C6F80;
}

button{
  width: 70px;
  height: 30px;
  background: none;
  color: #ffffff;
  border-radius: 4px;
  font-size: 15px;
  margin-top: 5px;
}
  
/*ACCORDION*/
.accordion {
 width: 400px;
 margin: 3%;
 padding: 60px;
}

.accordion-container {
  border-bottom: solid 1px #dddddd;
  margin-bottom: 15px;
}

span{
  font-family: abril fatface;
  color: #999999;
}

.accordion-container p{
  font-family: Georgia;
  font-size: 14px;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  color: #515151;
}

.accordion-text {
  border-top: 2px solid #999;
  margin: 0;
  padding: 15px;
}

.accordion-text-container {
  height: 0;
  overflow: hidden;
  transition: height .3s ease;
}

.accordion-text-container.active {
  height: 130px;
  color: #51414a;
}

/***GRID***/
.container{
  position: relative;
  height: 1100px;
  margin: 0 auto;
  max-width: 1500px;
  z-index: -1;
}

.container .gallery{
  position: relative;
  height: 1000px;
  width: 98%;
  margin: auto;
  padding: 45px 0;
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 2vh;
  grid-auto-flow: dense;
}

.container .gallery .image{
 position: relative;
 height: 100%;
 width: 100%;
 overflow: hidden;
 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.container .gallery .image:first-child{
  grid-column-start: span 2;
  grid-row-start: span 2;
}

.container .gallery .image:nth-child(2n+3){
  grid-row-start: span 2;
}

.container .gallery .image img{
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* SOCIAL MEDIA ROW */ 
.icon-row{
  background-image: linear-gradient(#51414a, #0a0a10);
  height: 100px;
  width: 100%;
  z-index: -1;
 }
  
 .social-menu ul{
  position: absolute;
  left: 50%;
  padding: 20px;
  margin-top: 45px;
  transform: translate(-50%,-50%);
  display: flex;
 }
  
 .social-menu ul li {
  list-style: none;
  margin: 0px 15px;
 }
  
 .social-menu ul li:nth-child(1) a:hover{
  background-color: #ffffff;
 }
  
 .social-menu ul li:nth-child(2) a:hover{
  background-color: #ffffff;
 }
  
 .social-menu ul li .fa {
  font-size: 30px;
  line-height: 60px;
  color: #ffffff;
 }
  
 .social-menu ul li .fa:hover{
  color: #000000;
 }
  
 .social-menu ul li a {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #000000;
  text-align: center;
  transition: .6s;
  box-shadow: 0 5px 4px rgba(0,0,0,.5);
 }
  
 .social-menu ul li a:hover {
  transform: translate(0,-10px);
 }

/*** FOOTER ***/
footer {
 height: 100px;
 background-color: #0a0a10;
 margin-bottom: 0px;
}

footer a {
 color: #ffffff;
 margin-bottom: 5px;
 display: flex;
 align-items: center;
 justify-content: center;
}

.footer-logo {
 margin-right: 5px;
 width: 100px;
 }

/*** MEDIA QUERIES ***/
@media (max-width: 414px){  
  header{
    height: 200px;
    width: 100%;
  }
}

@media (max-width: 840px){
  .week3-musthave{
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
   }

   .sign-up{
     width: 90%;
     margin: 5%;
   }

   .accordion{
     font-size: 6px;
     width: 80%;
     margin: 0px;
     padding: 10%;
  }
}

@media (min-width: 600px){
 .navbar{
    justify-content: space-between;
  }
 
  nav {
    display: inline-block;
  }
 
  div.hamburger{
    display: none;
  }

  .nav-logo {
   order: 2;
  }
 
  .nav-left {
    order: 1;
  }
  
  .nav-right{
    order: 3;
  }
  
  .container .gallery {
    display: grid;
    grid-template-columns: auto auto auto;
  }
} 

@media (min-width:1025px){
  .navbar{
   justify-content: flex-start;
  }

  .nav-logo {
   order: 1;
  }

  .container .gallery{
  display: grid;
  grid-template-columns: auto auto auto auto;
 }

 .week3-musthave{
   max-width: 1200px;
   margin: 0 auto;
  }
}