body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 
                 'Segoe UI', Roboto, Oxygen, 
                  Ubuntu, Cantarell, 'Open Sans', 
                  'Helvetica Neue', sans-serif;
    background-color: var(--bg);
}

:root{
    --bg: #F8F2ee;
    --pink: #f6c6ea;
    --lavender: #DBD5DC;
    --green: #727b6e;
    --text: #2b2b2b;
}

.navbar {
  position: absolute;
  top: 0;
  left: -20px;
  width: 100%;
  padding: 15px;
  max-width: 100vw;
  box-sizing: border-box;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: left;
  background: transparent;
  color: var(--green);
}
@media (max-width: 768px) {
  .navbar {
    left: 0;
  }
}

#close-menu {
  display: none;
}
@media (max-width: 768px) {
  #close-menu {
    display: block;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    text-align: right;
    color: var(--green);
  }
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  backdrop-filter: blur(10px);
}

.nav-links a {
  color: var(--green);
  text-decoration: none;
  position: relative;
}
@media (max-width: 768px) {
  .nav-links a{
    font-size: 16px !important;
    text-align: left;
    margin-left: 20px;
  }
}

.nav-links a::after{
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0px;
    width: 100%;
    height: 2px;
    background: #baccb4;
}
@media (max-width: 768px) {
  .nav-links a::after{
    width: 80%;
  }
}
.nav-links a:hover::after {
  background: var(--green);
  transition: 0.6s;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: -20px;
    left: 0;
    width: 90%;
    height: calc(100vh - 80px); 
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: left;
    gap: 0;
    padding: 10px 0;
    transform: translateY(-120%);
    transition: 0.4s ease;
    border-top: 2px solid white;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: center;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 18px 0;
    font-size: 20px;
  }

  .nav-links li:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }

  .hamburger {
    display: block;
  }
}

.logo {
    width: 230px;
    display: block;
    margin: 0 auto;
}

.nav-icons {
    font-size: 1rem;
    float: right;
}

.nav-icons a {
    color: var(--green);
    padding: 10px;
    float: right;
}

header {
    background-image: url('images/header.png');
    background-position: center;
    background-size: cover;
    height: 400px;
    margin-top: -80px;
    width: 100vw;
    margin-left: -10px;
}
header h1 {
    padding-top: 50px;
    padding-left: 30px;
    color: var(--green);
}
header p {
    padding-left: 30px;
    color: var(--green);
}
header button {
    margin-left: 30px;
    width: 150px;
    height: 30px;
    border: solid 1px var(--green);
    background-color: var(--green);
    color: white;
    border-radius: 5px;
}
header button:hover {
    background-color: transparent;
    color: var(--green);
    transition: 0.4s;
}
#icons {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-bottom: none;
  border-bottom: 1px solid var(--green);
}
@media (max-width: 768px) {
  #icons {
    flex-direction: column;
    border-bottom: none;
  }
}
#icons img {
  width: 75px;
  height: auto;
}
#icons div {
  text-align: center;
  margin: 0 20px;
  width: 300px;
  color: var(--green);
}
@media (max-width: 768px) {
  #icons div {
    border-bottom: 1px solid var(--green);
  }
}
#collections {
  text-align: center;
  color: var(--green);
}
#collection-divider {
  width: 150px;
  height: auto;
  margin-top: -20px;
  margin-bottom: 20px;
}
.collection-cards {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: -20px;
  margin-bottom: 20px;
  width: auto;
}
@media (max-width: 768px) {
  .collection-cards {
    flex-direction: column;
  }
}
.collection-cards div {
  border: 1px solid var(--green);
  border-radius: 10px;
  width: 220px;
  height: 350px;
  margin: 20px;
}
.collection-cards img {
  width: 220px;
  height: auto;
  border-radius: 10px 10px 0 0;
}
#collections a {
  text-decoration: none;
  color: var(--green);
  float: right;
}
#collections a:hover {
  text-decoration: underline;
}
#collections button {
  width: 150px;
  height: 30px;
  border: solid 1px var(--green);
  background-color: var(--green);
  color: white;
  border-radius: 5px;
}
#collections button:hover {
  background-color: transparent;
  color: var(--green);
  transition: 0.4s;
}
#about-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    color: var(--green);
}
@media (max-width: 768px) {
    #about-section {
        flex-direction: column;
    }
}

#about-section > img {
    width: 45%;
    height: auto;
    border-radius: 10px;
}
@media (max-width: 768px) {
    #about-section > img {
        width: 100%;
    }
}

.about-img2 {
    position: relative;
    width: 45%;
}
@media (max-width: 768px) {
    .about-img2 {
        width: 100%;
        height: 100%
    }
}

.about-img2 img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

.about-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    font-size: 16px;
}
#about-text-p {
  font-size: 30px;
}

#pc {
  display: flex;
}
@media (max-width: 768px) {
  #pc {
    display: none;
  }
}
#mobile {
  display: none;
}
@media (max-width: 768px) {
  #mobile {
    display: flex;
  }
}
.about-text button {
  width: 150px;
  height: 30px;
  border: solid 1px var(--green);
  background-color: var(--green);
  color: white;
  border-radius: 5px;
} 
.about-img2 button:hover {
  background-color: transparent;
  color: var(--green);
  transition: 0.4s;
}
#footer {
    background-color: var(--lavender);
    color: var(--green);
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-image img {
    width: 200px;
    height: auto;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a,
#socials a {
    color: var(--green);
    text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}

#socials {
    display: flex;
    gap: 20px;
}

@media (max-width: 768px) {

    #footer {
        flex-direction: column;
        gap: 25px;
    }

    .footer-links {
      font-size: 13px;
        flex-direction: row;
        gap: 15px;
    }

    #socials {
        flex-direction: row;
        gap: 20px;
    }

}

.footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.copyright {
    margin: 0;
    font-size: 13px;
}

.footer-email {
    color: var(--green);
    text-decoration: none;
    font-size: 14px;
}