/* Box Model Hack */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

/******************************************
/* BASE STYLES
/*******************************************/

body {
  font-family: Arial, Helvetica, sans-serif;
}

ul li {
  list-style: none;
}

a {  
  color:#4a4242;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/******************************************
/* LAYOUT
/*******************************************/
header { 
  color: red;
  background: #fff;
  /* height: 49px; */
  padding: 30px;
  text-align: center;
  position: sticky;
  width: 100%;
  /* margin-bottom: 5rem; */
}

.logo {
  float: left;
  width: 20%;
  margin-left: 5rem;
  cursor: pointer;
}

.logo div {
  width: 23px;
}

header nav {
  float: left;
  width: 50%;
}

nav li {
  float: left;
  width: 15%;
}

nav a:hover {
  text-decoration: underline;
}

.cta.column a {
  background: gray;
  padding: 5px;
  color: #fff;
  border-radius: 5px;
}

.cta.column a:hover {
  background: #845252;
  transition: all .9s ease-in;
}

@media screen and (max-width: 900px) {
  .logo {
    margin-left: 4rem;
  }

  nav, .cta {
    display: none;
  }

  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: #000;
    display: block;
  }
  
  #mobile-menu {
    cursor: pointer;
    position: absolute;
    top: 16%;
    right: 12%;
    transform: translate(5%, 20%);
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* Main */
main > section {
  overflow: hidden;
}

.hero {
  background-image: url("../img/pexels-cottonbro-3998414.jpg");
  /* background-position: center; */
  background-size: 100%;
  background-repeat: no-repeat;
  color: #fff;
  height: 35rem;
  padding-top: 8rem;
  padding-left: 4rem;
}

.hero > p + p {
  background-color: #000;
  width: 8rem;
  padding: 10px;
  font-size: 12px;
  margin: 10px 0 35px;
}

.hero > h2 + h2 {
  margin: 7px 0 20px;;
}

.hero > p + p a {
  color: #fff;
}

@media screen and (max-width: 510px) {
  .hero {
    padding-top: 5rem;
    padding-left: 2rem;
  }
}

@media screen and (max-width: 900px) {
  .hero {
    background-size: cover;
  }
}

.box {
  height: 12rem;
  background-color: rgb(0, 0, 0);
  width: 11rem;
  padding: 10px 0px 10px 0;
}

.box * {
  font-size: 12px;
  padding: 9px 0;
}

.first-p {
  padding: 20px 0 20px 10px;
  border-left: 2px solid;
} 

.box strong {
  font-size: large;
}

.button {
  background-color: antiquewhite;
  width: 7rem;
  padding: 10px;
  margin-left: 10px;
}

.box h2, .box p {
  padding-left: 9px;
}

/* feature */
.feature-container {
  display: flex;
  justify-content: space-between;
  width: 44rem;
  margin: 10px auto;
} 

.feature {
  display: flex;
flex-direction: column;
align-items: center;
margin-right: 10px;
}

.feature .img {
  width: 45px;
  margin: 15px auto;
} 

.feature p {
  text-align: center;
}

@media screen and (max-width: 720px) {
  .feature-container {
    display: flex;
   flex-direction: column;
    width: auto;
  }

  .feature {
    width: 14rem;
    margin: 10px auto;
    border: 2px solid #bdc3c7;
    border-radius: 50%;
    padding: 30px;
  }
}

/* video */
.video {
  background: aquamarine;
  clear: both;
  overflow: hidden;
}

.text-side {
  float: left;
  width: 50%;
  text-align: center;
}

.text-side h1, .text-side small {
  margin-left: 10px;
}

.video .button {
  width: 8rem;
  margin: 25px auto;
}

.video-thumb {
  width: 13rem;
  overflow: hidden;
  margin: 4rem auto;
  text-align: center;
}

.video-thumb img {
  max-width: 100%;
}

@media screen and (max-width: 900px){
  .video {
    overflow: hidden;
  }

  .video-thumb {
    width: 100%;
  }

  .video article {
    float: none;
    width: 80%;
    margin: 2rem auto;
    text-align: center;
  }
  
  .video .button {
    margin: 17px auto;
  }
}

/* staff */
.staff {
  margin: 0 20px;
}

 .staff > div {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
}

.staff h3  {
  text-align: center;
  margin: 10px;
}
/* dicount */
.discount {
  width: 76%;
  margin: 0 auto;
  background-image: url('../img/pexels-igor-starkov-785537.jpg');
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 26rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.discount-text {
  margin-left: 3rem;
}

.discount-text p {
  padding: 10px 0;
  color: #25ca2f;
}

.discount-btn {
  background: #000;
font-size: 13px;
width: 10.2rem;
padding: 10px;
outline: none;
cursor: pointer;
border: none;
}

.discount-btn:hover {
  color: #fff;
  transition: all .8s ease-in-out;
}

@media screen and (max-width: 690px) {
  .discount {
    height: auto;
  }
  .discount-text {
    margin-left: 0.5rem;
    padding: 11px;
  }

  .discount-text p {
    padding: 3px 0;
    margin: 10px;
    color: aliceblue;
  }

  .discount-btn {
    padding: 3px;
    background: gray;
    width: 11.2rem;
  }
}
.lookbook {
  width: 70%;
  margin: 0 auto;
}

.lookbook h1 {
  text-align: center;
}
.lookbook span {
  border-bottom: 2px solid #000;
  width: 20px;
  display: block;
  margin: 0 auto;
  margin-bottom: 0px;
  margin-bottom: 7px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.item:nth-of-type(5) {
  position: relative;
}

.item__img {
  display: block;
  width: 100%;
}

.item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-family: 'Quicksand', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.img__title {
  font-size: 2em;
  font-weight: bold;
}

/******************************************
/* ADDITIONAL STYLES
/*******************************************/
