* {
  padding: 0;
  margin: 0;
}

html{
  scroll-behavior: smooth;
}

h2 {
  font-family: "Poiret One", cursive;
  width: 80%;
  margin-left: 1rem;
  margin-top: 1rem;
}

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;
  }
}

.cat-img {
  height: 25vh;
  width: 100%;
  background-color: red;
  background: rgba(0, 0, 0, 0.3) url(/images/couchp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: darken;
  text-align: center;
  display: grid;
  place-content: center;
  font-family: "Poiret One", cursive;
  color: white;
}

.headings{
    display: grid;
    align-items: center;
    margin: 0 auto;
    margin-top: 2rem;
    width:90%;
    max-width: 1000px;
    height: 3.5rem;
    background-color: #302f2f;
    color: blanchedalmond;
    text-align: center;
    border-radius: 3px;
    font-size: 1.5rem;
    font-family: "Poiret One", cursive;
    cursor: pointer;
    transition: .2s ease-in-out
}

.headings:hover{
  background: rgba(99, 91, 91, 0.418);
  color: #181717;
  transition: .2s ease-in-out;
}


.products{
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: .2rem;
    height: 18rem;
    background-color: #262626;
    margin-bottom: 2rem;
    overflow-y: auto;
    transition: .3s;
}

.hidden{
    visibility: hidden;
    height: 0;
    margin-bottom: .2rem;
    transition:.5s ;
}

.images{
    display: grid;
    grid-template-columns: 1fr;
  
    width: 100%;
    height: auto;
   justify-items:center;
   
}

img {
   
margin-block: 1rem;
    width:95%;
    height: auto;
}


.contact {
    border: 1px solid black;
    border-radius: 5px;
    margin: 0 auto;
    margin-block: 2.5rem;
    padding-block: 1.5rem;
    width: 90%;
    transition: 0.3s;
    text-align: center;
  }

  .contact:hover {
    background-color:#262626;
    color: white;
    transition: 0.3s;
  }
  
  .contact h2 {
    text-align: center;
    margin-block: 1rem;
    font-family: "Poiret One", cursive;
  }
  
  .contact p {
    text-align: left;
    padding-left: 0.2rem;
    font-family: "Montserrat", sans-serif;
    padding: 1rem;
    margin: 0;
  }
  
  
  
  .foot {
    width: 100%;
    height: 6rem;
    background-color: rgb(25, 25, 25);
    text-align: center;
    padding-top: 1rem;
    color: #ffffff;
    font-family: "Montserrat", sans-serif; ;
  }