:root {
  --primary-color: #621F10;
  --secondary-color: #F2EFDE;
}

body {
  background: var(--secondary-color);
}

.font-literata {
  font-family: "Literata", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-rethink-sans {
  font-family: "Rethink Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

/* Button Style */
.btn-primary {
  display: inline-block;
  position: relative;
  padding: 0.75rem 2rem;
  font-weight: 500;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  background: transparent;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  transition: color 0.4s ease;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-primary:hover {
  color: var(--secondary-color);
}

.btn-primary:hover::before {
  left: 0;
}

.btn-secondary {
  display: inline-block;
  position: relative;
  padding: 0.75rem 2rem;
  font-weight: 500;
  color: #FFFFFF;
  border: 2px solid var(--secondary-color);
  background: transparent;
  cursor: pointer;
  z-index: 1;
  overflow: hidden;
  transition: color 0.4s ease;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover {
  color: var(--primary-color);
}

.btn-secondary:hover::before {
  left: 0;
}

/* Mobile Menu Style */
#closeIcon {
  display: none;
}

#mobileMenu {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 8rem 2rem 3rem;
  transform: translate(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  visibility: hidden;
}

.menu-open {
  overflow: hidden;
}

.menu-open #mobileMenu {
  transform: translate(0);
  visibility: visible;
}

.menu-open #hamburgerIcon {
  display: none;
}

.menu-open #closeIcon {
  display: block !important;
}

/* Marquee Animation */
.marquee-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.marquee-container__track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.marquee-container__group {
  display: flex;
  flex-shrink: 0;
}

.marquee-container__group img {
  height: 427px;
  margin: 0 1rem;
}

.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}