:root {
  /* font-family */
  --ff-body: "Rubik", sans-serif;
  --ff-heading: "Rubik Mono One", sans-serif;
  /* font-size */
  --fs-xl: 6rem;
  --fs-600: 3rem;
  --fs-500: 1.8rem;
  --fs-400: 1.6rem;
}
* {
  box-sizing: border-box;
}
/************************************************* BASE **********************************************************/
html,
body {
  font-size: 62.5%;
  height: 100%;
  width: 100%;
  font-family: var(--ff-body);
  scroll-behavior: smooth;
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
  display: none;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  height: 100%;
  padding: 0 1rem;
  max-width: 1280px;
  margin: 0 auto;
}

/************************************************* HEADER *********************************************************/

#header {
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 1;
  font-size: var(--fs-400);
  font-weight: 500;
}
#header nav {
  min-height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
#header .nav-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-transform: uppercase;
}

nav h1 {
  font-size: var(--fs-600);
  font-weight: 600;
  flex-basis: 20%;
  flex-shrink: 0;
  min-width: 150px;
}

nav ul li:last-of-type {
  font-size: var(--fs-500);
  font-weight: 600;
}
nav a {
  padding: 1rem;
  display: block;
}

/*********************************************** HAMBURGER ********************************************************/

#hamburger {
  padding: 1rem;
  display: none;
  cursor: pointer;
}
#hamburger .bar {
  display: block;
  height: 5px;
  width: 30px;
  background-color: #111;
  border-radius: 5px;
  margin: 5px auto;
  transition: 300ms;
}

/************************************************* MEDIA **********************************************************/
@media screen and (max-width: 850px) {
  /* burger styles */
  #hamburger {
    display: block;
  }
  #hamburger.active .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  #hamburger.active .bar:nth-child(2) {
    width: 0;
  }
  #hamburger.active .bar:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }
  /* menu styles */
  #header .nav-menu {
    background-color: #fff;
    position: fixed;
    top: 6rem;
    left: -100%;
    z-index: 5;
    flex-direction: column;
    align-items: center;
    transition: 300ms;
  }
  #header .nav-menu li {
    margin-bottom: 10px;
  }
  #header .nav-menu.active {
    left: 0;
  }
  #header .nav-menu li a:hover {
    color: rgb(255, 102, 0);
  }
}

/************************************************* MAIN **********************************************************/

#main {
  position: relative;
  width: 100%;
  height: 100%;
  font-weight: 500;
  text-transform: uppercase;
  font-size: var(--fs-400);
}

#main .hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(18, 18, 18, 0.4)),
    url(/assets/hero-img.jpg) no-repeat bottom center;
  background-size: cover;
  clip-path: polygon(0 0, 100% 0, 100% 90%, 78% 95%, 0 75%);
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: -1;
}

.main-content {
  color: #fff;
  position: relative;
  top: 220px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5rem;
}

.main-content .text h1 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  margin-bottom: 10px;
}
.main-content .text p {
  font-size: var(--fs-500);
  margin-bottom: 4rem;
}
#main .card {
  background-color: #111;
  padding: 6rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  margin-top: 1rem;
}

.main-content .card span {
  font-size: var(--fs-600);
}
.main-content .card p {
  text-transform: capitalize;
}
.blk-btn {
  font-weight: 600;
  background-color: #111;
  color: #fff;
  padding: 2rem 3rem;
  border: 1px solid black;
  border-radius: 5px;
  cursor: pointer;
  display: inline-block;
}
.white-btn {
  font-weight: 600;
  color: #111;
  background-color: #fff;
  padding: 2rem 2.5rem;
  border: 1px solid white;
  border-radius: 5px;
  cursor: pointer;
}
#main aside {
  position: absolute;
  top: 350px;
  right: 0px;
  color: #fff;
  transform: rotate(90deg);
}
.working-hours h2 {
  font-size: var(--fs-600);
  font-weight: 600;
}

/************************************************* MEDIA **********************************************************/
@media screen and (max-width: 750px) {
  #main .main-content {
    top: 22%;
    left: 0%;
  }
  #main .main-content .text h1 {
    font-size: 40px;
  }
  #main .main-content .text p {
    font-size: var(--fs-400);
  }
  #main aside {
    position: absolute;
    top: 350px;
    right: -100px;
    color: #fff;
    transform: rotate(90deg);
  }
  #main aside {
    top: 350px;
    right: 0px;
  }
  .working-hours h2 {
    font-size: var(--fs-500);
  }
  #about p {
    font-size: var(--fs-400);
    padding: 5px;
  }
}
@media screen and (max-width: 450px) {
  #main .working-hours {
    display: none;
  }
  #main .card {
    padding: 4.5rem 1.5rem;
    gap: 2rem;
  }

  #main .white-btn {
    padding: 1.5rem 2rem;
  }

  #main .blk-btn {
    padding: 2rem 2rem;
  }

  #main .container {
    margin: 0 5px;
  }
}

/************************************************* ABOUT **********************************************************/
#about {
  font-size: var(--fs-500);
  background-color: #fff;
  margin-top: 2rem;
}
#about .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-card {
  padding: 10rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
.about-card h3 {
  text-transform: uppercase;
  font-weight: 600;
}
#about .about-card > div {
  min-width: 5rem;
  max-width: 30%;
}

#about .about-card img {
  width: 100%;
  height: auto;
}

/************************************************* ARTICLE ********************************************************/
#blog {
  font-size: var(--fs-400);
  background-color: #eee;
  padding: 5rem 0rem;
  width: 100%;
}

#blog article {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
#blog .text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
#blog .text h3 {
  font-size: var(--fs-600);
  font-weight: 600;
  text-transform: uppercase;
}
#blog .media {
  width: 50%;
}
#blog .media img {
  width: 100%;
  height: auto;
}

/************************************************* MEDIA **********************************************************/

@media screen and (max-width: 600px) {
  #blog .text h3 {
    font-size: 25px;
  }
  #blog .blk-btn {
    padding: 1.5rem 2rem;
  }
}

/************************************************* STAFF **********************************************************/
#staff {
  width: 100%;
  font-size: var(--fs-500);
  font-weight: 600;
}
#staff .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.staff-card {
  margin: 10rem 0;
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1;
}
.staff-image,
.staff-image img {
  width: 100%;
  height: 100%;
}
.staff-card .staff-info {
  position: absolute;
  bottom: -6%;
  left: 20%;
  color: #fff;
  padding: 1.2rem 5rem;
  text-align: center;
  border: 1px solid black;
  background-color: #111;
}

.staff-info span {
  font-size: 1rem;
  margin-bottom: 5px;
}

/**************************************************** MEDIA ******************************************************/

@media screen and (max-width: 700px) {
  #staff .staff-card .staff-info {
    padding: 1rem 3rem;
    font-size: var(--fs-400);
  }
}

@media screen and (max-width: 500px) {
  #staff .staff-card .staff-info {
    padding: 0.5rem 2rem;
    font-size: var(--fs-400);
  }
}

@media screen and (max-width: 400px) {
  #staff .staff-card .staff-info {
    padding: 0.5rem 1rem;
    font-size: var(--fs-400);
  }
}

/****************************************** DISCOUNT CONTENT STYLES *****************************************/
#discount {
  height: 50rem;
  position: relative;
  width: 100%;
  font-size: var(--fs-400);
  text-transform: capitalize;
  font-weight: 500;
}
#discount .hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(18, 18, 18, 0.4)),
    url(/assets/discount.jpg) no-repeat center center/cover;
  height: 100%;
  width: 100%;
}
#discount .text {
  color: #eee;
  padding: 6rem 3rem;
  position: absolute;
  top: 25%;
  left: 15%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
#discount .text span {
  font-size: var(--fs-xl);
}
#discount .text h3 {
  text-transform: uppercase;
  font-weight: 600;
}
/************************************************* LOOKBOOK ******************************************************/
#lookbook {
  width: 100%;
  font-size: var(--fs-600);
  font-weight: 600;
  text-transform: uppercase;
}
#lookbook .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  padding: 6rem 3rem;
}
.lookbook-container {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.lookbook-col {
  width: 33%;
  gap: 5px;
  display: flex;
  flex-direction: column;
}
.lookbook-col .stretch-img img {
  width: 100%;
  height: 70%;
}
.small-img.left-col {
  background-image: url(/assets/small-img-01.jpg);
  background-position: 25%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 350px;
}
.small-img.middle-col {
  background-image: url(/assets/small-img-02.jpg);
  background-position: 25%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 350px;
}
.small-img.right-col {
  background-image: url(/assets/small-img-03.jpg);
  background-position: 25%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 350px;
}
