:root {
  --primary-font: sans-serif;
  --secondary-font: "Playfair Display", serif;
}

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

body {
  font-family: var(--primary-font);
}

section {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 100px 60px;
}

main {
  margin-top: 100px;
}

.p-container {
  max-width: 750px;
  display: block;
  margin: 0 auto;
}

h2 {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: center;
}

h3 {
  font-size: 15px;

  letter-spacing: 1px;
  font-weight: 600;
}

h4 {
  font-family: var(--secondary-font);
  font-size: 30px;
}

h5 {
  font-family: var(--secondary-font);
  font-size: 30px;
  text-align: center;
  margin-top: 20px;
}

h6 {
  font-family: var(--secondary-font);
  font-size: 14px;
  margin-top: 10px;
}

p {
  font-size: 13px;
  text-align: center;
  margin-top: 16px;
}

.item-price {
  font-size: 14px;
  font-weight: 600;
}

.footer-p {
  text-align: center;
  font-size: 13px;
}

.nav-container {
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1600px;
  margin: 0 auto;
  padding-left: 128px;
  padding-right: 60px;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full screen height */
  overflow: hidden;
}
/* VIDEO STYLING */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  z-index: -1;
}

video {
  width: 100%;
  height: 100%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.is-scrolling {
  background: black;
  opacity: 0.9;
}

.logo-text {
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 32px;
  text-decoration: none;
  color: white;
}

nav ul {
  padding: 0;
  margin: 0;
  padding: 20px 0;
}

nav li {
  display: inline;
  list-style: none;
  margin-left: 30px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
}

nav a {
  text-decoration: none;
  color: white;
  transition: all 150ms ease-in-out;
}

nav a:hover {
  text-decoration: underline;
  text-underline-offset: 8px;
}

.nav-main-ul {
  display: block;
  margin: 0 auto;
  margin-right: 140px;
}

.hamburger {
  position: relative;
  display: block;
  width: 35px;
  left: 30px;
  cursor: pointer;
  appearance: none;
  background: none;
  outline: none;
  border: none;
}

.hamburger .bar,
.hamburger:after,
.hamburger:before {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: white;
  margin: 6px 0px;
  transition: 0.4s;
  height: 4px;
}

.hamburger.is-active:before {
  transform: rotate(-45deg) translate(-7px, 6px);
}

.hamburger.is-active:after {
  transform: rotate(45deg) translate(-8px, -8px);
}

.hamburger.is-active .bar {
  opacity: 0;
}

.mobile-nav {
  display: block;
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  min-height: 100vh;
  z-index: 98;
  background-color: black;
  padding-top: 50px;
  transition: 0.4s;
}

.mobile-nav.is-active {
  left: 0;
}

.mobile-nav a {
  display: block;
  width: 100%;
  max-width: 200px;
  padding: 5px;
  margin-left: 30px;
  margin-top: 15px;
}

.hamburger-hr {
  border: 1px solid white;
  width: 90%;
  display: block;
  margin: 0 auto;
  margin-top: 10px;
}

.hamburger-h3 {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: white;
  margin-top: 20px;
  margin-left: 30px;
  padding: 5px;
}

.hamburger-p {
  color: white;
  text-align: left;
  margin-left: 30px;
  padding: 5px;
}

.hamburger-btn {
  background: none;
  color: white;
  border: 1px solid white;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
  margin-left: 30px;
}

.hero-heading {
  position: absolute;
  top: 300px;
  left: 250px;
  color: white;
  font-size: 90px;
  text-transform: uppercase;
  font-family: "Playfair Display", serif;
}

.email-link {
  margin-bottom: 15px;
  font-size: 13px;
  margin-left: 0;
}

.btn-branding {
  display: block;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  bottom: 200px;
  margin-left: 570px;
  padding: 15px 30px;
  border-radius: 30px;
  width: 140px;
  background-color: white;
  opacity: 70%;
  color: black;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 200ms ease-in-out;
}

.btn-branding:hover {
  background-color: white;
  opacity: 100%;
}

.btn-center {
  text-align: center;
  display: block;
  margin: 0 auto;
  position: relative;
  bottom: 320px;
  padding: 15px 25px;
  border-radius: 30px;
  width: 140px;
  background-color: white;
  opacity: 70%;
  color: black;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 200ms ease-in-out;
}

.btn-center:hover {
  background-color: white;
  opacity: 100%;
}

.link {
  text-align: center;
  display: block;
  margin: 0 auto;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  letter-spacing: 1px;
}

.link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.mens-link {
  display: block;
  margin: 0 auto;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  letter-spacing: 1px;
  margin-top: 300px;
}

.mens-link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.product-navigation-link {
  text-decoration: none;
  color: black;
}

.product-navigation-link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}

.breadcrumb {
  font-size: 13px;
}

.breadcrumb span {
  margin: 0 8px;
}

.breadcrumb-link {
  text-decoration: none;
  color: black;
  letter-spacing: 1px;
}

.swiper-slide img {
  height: 400px;
}

.swiper-pagination-bullet {
  background: black;
}

.gallery-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 40px 20px 0;
}

.gallery-container .boxes {
  display: flex;
  flex-direction: row;
}

.gallery-container .box {
  display: flex;
  flex-direction: column;
  width: 30%;
}

.gallery-container img {
  width: 100%;
  padding: 2px;
}

#prodetails {
  display: flex;
  margin-top: 20px;
}

.single-pro-image {
  width: 40%;
  margin-right: 50px;
  margin-top: 70px;
}

.small-img-group {
  display: flex;
  justify-content: space-between;
}

.small-img-col {
  flex-basis: 24.5%;
  margin-top: 2px;
  cursor: pointer;
}

.small-img {
  width: 100%;
}

.single-pro-details {
  width: 50%;
  padding-top: 30px;
  margin-top: 70px;
}

.product-name {
  font-family: var(--secondary-font);
  font-size: 25px;
  color: black;
  padding: 25px 0 20px 0;
}

.product-page-price {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;

  color: black;
}

.single-pro-details select {
  display: block;
  padding: 5px 10px;
  margin: 20px 0;
  width: 400px;
  font-size: 14px;
}

.black-btn {
  background: black;
  color: white;
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.product-details {
  text-align: left;
}

.recommended-text {
  font-family: var(--secondary-font);
  font-size: 30px;

  margin-top: 20px;
}

.product-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 125%;
}

.product-image-wrapper img {
  width: 100%;
  transition: opacity 0.3s ease;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.product-image-wrapper .hover-img {
  opacity: 0;
}

.product-image-wrapper:hover .default-img {
  opacity: 0;
}

.product-image-wrapper:hover .hover-img {
  opacity: 1;
}

footer {
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 100px;
  background: #fcfcfa;
}

footer h3 {
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
}

footer ul {
  padding: 0;
}

footer li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-link {
  text-decoration: none;
  color: black;
  font-size: 12px;
}

.footer-link:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.grid {
  display: grid;
  grid-gap: 64px;
}

.grid-3-columns {
  grid-template-columns: repeat(3, 1fr);
}

.grid-2-columns {
  grid-template-columns: repeat(2, 1fr);
}

.socials li {
  display: inline;
  margin-right: 30px;
}

.discount-button {
  background: black;
  color: white;
  border: none;
  padding: 10px 20px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.discount-button:hover {
  background: transparent;
  color: black;
  border: 1px solid black;
}

.small-container {
  max-width: 1080px;
  margin: auto;
  padding-left: 25px;
  padding-right: 25px;
  margin-bottom: 60px;
}

.github-icon {
  font-size: 30px;
  text-align: center;
  transition: all 200ms ease-in-out;
}

.github-icon:hover {
  transform: scale(1.1);
}

@media (max-width: 960px) {
  .hero-heading {
    font-size: 40px;
    left: 60px;
  }

  .btn-branding {
    bottom: 250px;
    font-size: 12px;
    padding: 15px 15px;

    width: 120px;
    margin-left: 170px;
  }

  .nav-container {
    padding-left: 30px;
  }

  nav ul li {
    display: none;
  }

  .mens-link {
    margin-top: 100px;
    font-size: 12px;
    margin-right: 15px;
  }

  .link {
    font-size: 12px;
  }

  .btn-center {
    bottom: 150px;
    font-size: 12px;
    padding: 15px 15px;

    width: 120px;
  }

  footer {
    max-width: 100%;
    margin: 0 auto;
    padding: 30px 50px;
    background: #fcfcfa;
  }

  footer h3 {
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .footer-link {
    font-size: 9px;
  }

  h4 {
    font-size: 15px;
  }

  .discount-button {
    padding: 10px 15px;
    font-size: 10px;
  }

  .socials li {
    font-size: 10px;
  }

  .swiper-pagination-bullet {
    display: none;
  }

  p {
    font-size: 11px;
    padding: 0 25px;
  }
}

@media (max-width: 768px) {
  .gallery-container .boxes {
    flex-direction: column;
  }

  .gallery-container .boxes .box {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }

  .hamburger {
    display: none;
  }
}

/*
ul li ul.dropdown-products li {
  display: block;
}

ul li ul.dropdown-products {
  width: 100%;
  position: absolute;
  z-index: 999;
  background-color: white;
  display: none;
}

ul li:hover ul.dropdown-products {
  display: block;
}
  */
