* {
  padding: 0;
  margin: 0;
}

html{
  scroll-behavior: smooth;
}

h2 {
  font-family: "Poiret One", cursive;
}

p {
  font-family: "Montserrat", sans-serif;
}

header {
  background-color: #262626;
}

li {
  list-style: none;
}

a {
  color: white;
  text-decoration: none;
}

.contained {
  max-width: 1224px;
  width: 92%;
  margin: 0 auto;
  position: relative;
}

.navbar {
  min-height: 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poiret One", cursive;
}

.nav-branding {
  font-size: 2rem;
  font-family: "Cinzel Decorative";
}

.nav-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}

.nav-link {
  transition: 0.3s ease-out;
}

.nav-link:hover {
  color: rgb(109, 130, 151);
  text-decoration: underline;
  transition: 0.3s;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: white;
}

@media (max-width: 1024px) {
  .hamburger {
    display: block;
  }

  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 55px;
    gap: 0;
    flex-direction: column;
    background-color: #262626;
    width: 100%;
    text-align: center;
    transition: 0.3s;
  }

  .nav-item {
    margin: 16px 0;
  }

  .nav-menu.active {
    left: 0;
  }
}

.hero {
  height: 35vh;
  width: 100%;
  background-color: red;
  background: rgba(0, 0, 0, 0.3) url(/images/hero.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: darken;
  text-align: center;
  display: grid;
  place-content: center;
}

.hero-text {
  margin: 0 auto;
  width: 100%;
  min-height: 100%;
  color: white;
  border-radius: 5px;
  font-family: "Poiret One", cursive;
}

.heroback {
  width: 100%;
  min-height: 100%;
}

.hero-text span {
  font-family: "Cinzel Decorative";
}

.container {
  max-width: 1224px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
}

.container h1 {
  font-family: "Poiret One", cursive;
  margin-block: 1.6rem;
  margin-bottom: 2rem;
}

.container h3 {
  font-size: 1.7rem;
  margin-block: 2.5rem;
  font-family: "Poiret One", cursive;
}

.cta {
  font-family: "Montserrat", sans-serif;
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(99, 91, 91, 0.418);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  transition: 0.2s ease-out;
  border-radius: 10px;
  color: black;
}

.cta:hover {
  background-color: #262626;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 1.2rem;
}


.catalogue-items {
  margin-block: 2rem;
  font-family: "Poiret One", cursive;
}

.catalogue-items p {
  font-family: "Montserrat", sans-serif;
}

.cata-img {
  width: 60%;
  padding: 4rem;
  height: 6rem;
  margin: 1.5rem auto;
  box-shadow: -11px 14px 13px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: -11px 14px 13px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: -11px 14px 13px 0px rgba(0, 0, 0, 0.75);
}

#img1 {
  background-image: url(/images/couch.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#img2 {
  background-image: url(/images/coushins.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#img3 {
  background-image: url(/images/antique.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#img4 {
  background-image: url(/images/headboard.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.spacer{
  margin-bottom: 4rem;
}

.contact {
  border: 1px solid black;
  border-radius: 5px;
  margin: 0 auto;
  margin-block: 2.5rem;
  padding-block: 1.5rem;
  width: 90%;
  transition: 0.3s;
}

.contact:hover {
  background-color:  rgb(25, 25, 25);
  color: white;
  transition: 0.3s;
}

.contact h2 {
  margin: 1rem;
  font-family: "Poiret One", cursive;
}

.contact p {
  text-align: left;
  padding-left: 0.2rem;
  font-family: "Montserrat", sans-serif;
  padding: 1rem;
}

.foot{
  width: 100%;
  height: 6rem;
  background-color: rgb(25, 25, 25);
  text-align: center;
  padding-top: 1rem;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 800px) {
  .hero {
    min-height: 90vh;
  }

  .hero-text {
    font-size: 2.4rem;
  }

  .cata-img {
    padding-block: 15em;
  }
}
