#wrapper {
  padding-top: 0 !important;
}

#header {
  position: static !important;
}

#landing-page-wrapper,
.landing-header {
  font-family: "Inter", sans-serif;
  font-weight: 300;
}

#landing-page-wrapper h1,
#landing-page-wrapper h2,
#landing-page-wrapper h3,
#landing-page-wrapper h4,
#landing-page-wrapper h5,
#landing-page-wrapper h6,
.landing-heading {
  font-family: "Cormorant Garamond", serif !important;
  letter-spacing: 0.025em;
  font-weight: 300;
}

.landing-dark-text {
  color: #1a1a1a;
}

.text-white-80 {
  color: rgba(255, 255, 255, 0.8);
}

.tracking-wide {
  letter-spacing: 0.05em;
}

.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background-color: transparent !important;
  border-bottom: none !important;
  transition:
    background-color 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
}

.landing-header .logo {
  max-height: 45px;
  object-fit: contain;
  transition:
    filter 0.4s ease,
    max-height 0.4s ease;

  filter: brightness(0) invert(1);
}

.landing-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 3rem;
  align-items: center;
}

.landing-header ul li {
  margin: 0;
}

.landing-header ul li a {
  color: black;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.15em;
  transition: color 0.3s ease;
  font-weight: bold;
}
.landing-header ul li a:hover {
  color: #fff;
}

.landing-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.landing-header.scrolled .logo {
  filter: invert(1);
}
.landing-header.scrolled ul li a {
  color: #000;
}
.landing-header.scrolled ul li a:hover {
  color: rgba(0, 0, 0, 0.6);
}

.landing-hero {
  aspect-ratio: 1024 / 1024;
}

@media (min-width: 992px) {
  .landing-hero {
    aspect-ratio: 1920 / 720;
  }
}

.landing-hero-bg img {
  object-fit: cover;
  object-position: center;
}

.landing-hero-overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.3) 50%,
    transparent 100%
  );
}

.landing-hero-title{
  font-size: clamp(32px, 3.3vw, 64px);
}

.landing-banner-bg {
  object-fit: cover;
  object-position: center;
}
.landing-banner-overlay {
  background-color: rgba(0, 0, 0, 0.4);
}

#landing-page-wrapper .btn-landing {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  transition: all 0.4s ease;
}

#landing-page-wrapper .btn-light {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
}
#landing-page-wrapper .btn-light:hover {
  background-color: #fff;
  color: #000;
}

#landing-page-wrapper .btn-dark {
  background-color: #000;
  border: 1px solid #000;
  color: #fff;
}
#landing-page-wrapper .btn-dark:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

#landing-page-wrapper .btn-outline-dark {
  background-color: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
}
#landing-page-wrapper .btn-outline-dark:hover {
  border-color: rgba(0, 0, 0, 0.5);
}

#landing-page-wrapper .category-card {
  aspect-ratio: 3/4;
  cursor: pointer;
}
.category-card .cat-img {
  object-fit: cover;
  transition: transform 0.8s ease;
}
.category-card:hover .cat-img {
  transform: scale(1.05);
}
.cat-card-overlay {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5) 0%,
    transparent 50%,
    transparent 100%
  );
}
.cat-card-line {
  width: 30px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  transition: width 0.5s ease;
}
.category-card:hover .cat-card-line {
  width: 50px;
}

.bg-secondary-light {
  background-color: #faf9f6;
}
.usp-item .usp-icon {
  color: #c9a050;
  transition: transform 0.3s ease;
}
.usp-item:hover .usp-icon {
  transform: translateY(-5px);
}
.usp-item .landing-heading {
  font-weight: 500;
}

@media (max-width: 660px) {
  .landing-logo-link,
  #landing-mobile-btn {
    position: relative;
    z-index: 1060;
  }

  .landing-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    background-color: #fff;
    z-index: 1040;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
    padding-top: 100px;
  }

  body.menu-open .landing-nav {
    transform: translateY(0);
  }

  .landing-nav ul {
    flex-direction: column;
    align-items: flex-start !important;
    padding-left: 2rem;
    gap: 0;
  }

  .landing-nav ul li {
    margin: 0;
    padding: 1rem 0;
  }

  .landing-nav ul li a {
    color: #4a4a4a !important;
    font-size: 13px !important;
    font-weight: 300;
    letter-spacing: 0.15em;
  }

  .landing-nav ul li a:hover {
    color: #000 !important;
  }
}

body.menu-open {
  overflow: hidden;
}

.landing-header.menu-open {
  background-color: transparent !important;
  box-shadow: none !important;
}

.landing-header.menu-open .logo {
  filter: invert(1);
}

.landing-header.menu-open .hamburger-icon {
  display: none !important;
}

.landing-header.menu-open .close-icon {
  display: block !important;
}

.landing-header.scrolled .hamburger-icon {
  fill: #000 !important;
}
