body {
  margin: 0;
  font-family: 'Playfair Display', serif;
}

/* Header */
.header-container {
  width: 100%;
  background-color: transparent;
  padding: 20px 0;
  position: relative;
  z-index: 10;
}

.nav-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  flex: 1;
  padding-bottom: 16px;
  border-bottom: 3px solid #e5e3e2;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  flex: 1;
  padding-bottom: 16px;
  border-bottom: 3px solid #e5e3e2;
}

.header-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  margin: 0 20px;
}


.nav-item {
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
  color: #ffffff;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: gold;
  transition: width 0.3s ease;
}

/* .nav-item:hover {
  color: gold;
} */

.nav-item:hover::after {
  width: 100%;
}

.mobile-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 20;
}

.logo-mobile {
  width: 80px;
  height: auto;
}

.hamburger {
  font-size: 28px;
  font-weight: 400;
  cursor: pointer;
  color: #ffffff;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(234, 192, 169, 0.2);
  color: #EAC0A9;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(15px);
  padding: 20px;
  z-index: 15;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.mobile-menu.show {
  display: flex;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 968px) {
  .header-nav {
    display: none;
  }

  .mobile-header {
    display: flex;
  }

  .header-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
    padding: 0;
  }

  .mobile-menu .nav-item {
    font-size: 18px;
    padding: 15px 0;
    margin: 5px 0;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .mobile-menu .nav-item:hover {
    color: #EAC0A9;
  }

  .mobile-menu .nav-item:last-child {
    margin-bottom: 0;
  }
  
  .nav-item {
    font-size: 18px;
  }
}

/* Footer */

.footer {
  width: 100%;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 50px 100px;
  box-sizing: border-box;
  color: #131313;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-left {
  max-width: 400px;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-text {
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-icons {
  display: flex;
  gap: 20px;
}

.footer-icons img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-right {
  min-width: 200px;
}

.footer-nav-title {
  font-size: 20px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-weight: 300;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-weight: 600;
}

.footer-links img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.footer-divider {
  margin: 40px 0 20px 0;
  border: none;
  border-top: 2px solid #ccc;
}

.footer-credit {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
}

.icon-link img {
  width: 20px;
  height: 20px;
  transition: filter 0.3s ease;
}

.icon-link:hover img,
.icon-link:active img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(55%) saturate(650%) hue-rotate(3deg) brightness(100%) contrast(92%);
}

.footer-links li {
  padding: 10px 0;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.nav-link img {
  width: 16px;
  height: 16px;
  transition: filter 0.3s ease;
}

.nav-link:hover img,
.nav-link:active img {
  filter: brightness(0) saturate(100%) invert(64%) sepia(55%) saturate(650%) hue-rotate(3deg) brightness(100%) contrast(92%);
}

.nav-link:hover span {
  color: goldenrod;
}

.footer-credit {
  text-align: center;
  font-size: 15px;
  font-weight: 300;
  color: #000;
}

.credit-link {
  position: relative;
  text-decoration: none;
  color: inherit;
  font-weight: 400;
}

.credit-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: gold;
  transition: width 0.3s ease;
}

.credit-link:hover::after {
  width: 100%;
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }

  .footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-title {
    font-size: 28px;
    margin: 0;
  }

  .icon-link img {
    width: 27px;
    height: 27px;
  }

  .footer-text {
    font-size: 20px;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-nav-title {
    font-size: 24px;
  }

  .footer-right {
    margin-top: 20px;
  }

  .credit-link::after {
    width: 100%;
  }
}

