* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: 0.4s;
}

.main {
  height: 80vh;
  background-color: #ececbf;
  background-image: url(main.jpeg);
  background-position: top;
  background-repeat: no-repeat;

}


aside {
  background-color: #ececbf;
  height: 60vh;
  position: fixed;
  width: 100vw; 
  z-index: 99;
  top: -57%; 
  color: aliceblue;
  opacity: 0;
  display: flex;
  flex-direction: column;
 
 
}

aside:hover {
  top: 0;
  background-color:  #45473b;
  opacity: 1;
}


.icon1 {
  display: block;
  margin: 0 auto; 
  width: 24px; 
}


.logo {
  padding-left: 2%;
  padding-top: 2%;
  font-family: "Yuji Mai", serif;
  font-size: 2rem; 
}

#here{
  color: #d4d2a6;
}

#here::after{
  content: " <";
}

.logo > a {
  text-decoration: none;
  color: white;
}


.Fpages {
  display: flex;
  flex-direction: column;
  gap: 1rem; 
  margin-left: 13%;
}

#s {
  margin-top: 5%;
  font-size: 1.5rem; 
  text-decoration: underline;
}

.Fpages > a,
.Fpages > p {
  text-decoration: none;
  color: aliceblue;
  font-family: "Patrick Hand", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.125rem; 
}

.Fpages > a:hover {
  color: #ececbf;
}


.sm {
   padding-top: 32%;
   text-align: center;
}

.sm > a {
  text-decoration: none;
  color: white;
  font-family: "Cabin", sans-serif;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0.875rem 1.5rem;
  border-radius: 10px;
}


.p2 {
  height: 80vh;
  background-color: #4a4e3a;
}


.ft {
  padding-top: 4%;
  padding-left: 4%;
}

.ft > p {
  font-family: "Lexend Deca", sans-serif;
  color: white;
  font-size: 2.25rem;
  text-decoration: underline 3px;
}


.txtqsn {
  color: white;
  font-family: "DM Sans", sans-serif;
  text-align: justify;
  margin-top: 3%;
  margin-left: 3%;
  max-width: 45%;
}


.img img {
  max-width: 100%; 
  height: auto;
  display: block;
}


.text {
  display: flex;
  align-items: flex-start;
  gap: 6.25rem; 
}


#rm {
  color: #ececbf;
}

.promo {
  height: 50vh; 
  background-color: #404432;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.promo-card {
  display: flex;
  align-items: center;
  background-color: #ececbf;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  width: 90%;
}

.promo-card img {
  width: 200px;
  height: auto;
  margin-right: 1.5rem;
  border-radius: 5px;
}

.promo-content {
  flex: 1;
}

.promo-content h2 {
  font-family: "Lexend Deca", sans-serif;
  color: #4a4e3a;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.promo-content p {
  font-family: "DM Sans", sans-serif;
  color: #4a4e3a;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.promo-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: "Cabin", sans-serif;
  font-size: 1rem;
  background-color: #51573a;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.promo-button:hover {
  background-color: #3d432b;
}

footer {
  background-color: #45473b;
  color: aliceblue;
  padding: 2rem 0;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-contact p,
.footer-copyright p {
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
}

.footer-social a {
  color: aliceblue;
  margin: 0 0.5rem;
  text-decoration: none;
}

.footer-social a:hover svg {
  color: #ececbf;
}

.footer-social svg {
  vertical-align: middle;
}

.footer-search .search-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
}

.footer-search .search-bar input {
  padding: 0.5rem;
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  border: 1px solid #ececbf;
  border-radius: 5px 0 0 5px;
  width: 80%;
  background-color: white;
  color: #4a4e3a;
}

.footer-search .search-bar input:focus {
  outline: none;
  border-color: #d4d2a6;
}

.footer-search .search-bar button {
  padding: 0.5rem 1rem;
  border: 1px solid #ececbf;
  border-left: none;
  border-radius: 0 5px 5px 0;
  background-color: #ececbf;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.footer-search .search-bar button svg {
  color: #4a4e3a;
}

.footer-search .search-bar button:hover {
  background-color: #d4d2a6;
}

@media (max-width: 768px) {
  .main {
    height: 10vh;
  }

  aside {
    height: 100vh;
  }

  .p2 {
    height: 100vh;
  }

  .text {
    flex-direction: column;
    gap: 1.25rem;
    align-items: center;
  }

  .txtqsn {
    max-width: 90%;
    margin: 3% auto;
  }

  .img {
    width: 100%;
    text-align: center;
  }

  .ft > p {
    font-size: 1.75rem;
  }

  .promo {
    height: 60vh;
  }

  .promo-card {
    flex-direction: column;
    text-align: center;
  }

  .promo-card img {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 150px;
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .footer-search .search-bar {
    max-width: 250px;
  }

  .logo {
    font-size: 1.75rem;
  }

  #s {
    font-size: 1.25rem;
  }

  .Fpages > a,
  .Fpages > p {
    font-size: 1rem;
  }

  .sm {
    padding-top: 10%;
  }
}

@media (max-width: 480px) {
  .promo {
    height: 70vh;
    padding: 1rem;
  }

  .promo-card img {
    width: 120px;
  }

  .promo-content h2 {
    font-size: 1.25rem;
  }

  .promo-content p {
    font-size: 0.9rem;
  }

  .promo-button {
    font-size: 0.9rem;
  }

  .footer-contact p,
  .footer-copyright p {
    font-size: 0.9rem;
  }

  .footer-search .search-bar {
    max-width: 200px;
  }

  .footer-search .search-bar input {
    font-size: 0.85rem;
  }

  .footer-search .search-bar button {
    padding: 0.4rem 0.8rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  #s {
    font-size: 1.25rem;
  }

  .Fpages > a,
  .Fpages > p {
    font-size: 1rem;
  }

  .sm > a {
    padding: 0.5rem 1rem;
  }
}



/*.yuji-mai-regular {
  font-family: "Yuji Mai", serif;
  font-weight: 400;
  font-style: normal;

  .patrick-hand-regular {
  font-family: "Patrick Hand", cursive;
  font-weight: 400;
  font-style: normal;
}

.cabin-<uniquifier> {
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.lexend-deca-<uniquifier> {
  font-family: "Lexend Deca", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

}*/

