* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  background-color: #faf4eb;
  font-family: "Manrope", sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

/* header */
#header {
  display: flex;
  width: 98%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(251, 245, 239, 0);
  position: sticky;
  top: 1%;
  z-index: 1000;
  transition: top 0.3s ease, background 0.3s ease;
  border-radius: 10px;
}

#header .header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(251, 245, 239, 0.8);
  box-shadow: 0 1px 1px rgba(251, 245, 239, 0.8);
  border-radius: 0.7rem;
  padding: 3vh;
  width: 100%;
}

#header .header-nav ul {
  display: flex;
  gap: 4vw;
  justify-content: center;
  list-style: none;
}

#header .header-nav li a,
#header div p {
  font-family: "Manrope";
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s, transform 0.3s;
  color: #583213;
}

#header .header-nav li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #583213;
  left: 0;
  bottom: -0.5vh;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-out;
}

#header .header-nav li a:hover {
  color: #583213;
  transform: translateY(-2px);
}

#header .header-nav li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

#header .logo-container {
  display: flex;
  align-items: center;
  z-index: 100;
}

#header .logo-container img {
  object-fit: cover;
}

/* hamburger menu */
.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  height: 1.5rem;
  width: 2.3rem;
  z-index: 100;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: #6c401d;
  border-radius: 10px;
  transition: all 0.3s linear;
}

.hamburger.is-active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* footer */
#footer-container {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  color: #ffffff;
  padding: 1rem;
  text-align: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 65vh;
  border-radius: 1rem 1rem 0 0;
}

#footer-container .footer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3rem;
  padding: 4rem 2rem;
}

#footer-container .logo-container img {
  width: 10rem;
  object-fit: cover;
  height: auto;
}

#footer-container .footer-nav {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 7vh;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

#footer-container .socialImages {
  display: flex;
  gap: 1rem;
}

#footer-container .socialImages a {
  transition: 0.3s;
}
#footer-container .socialImages a img {
  filter: brightness(0) invert(1);
}

#footer-container .socialImages a:hover {
  transform: translateY(-5px);
}

#footer-container .footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: "Manrope";
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

#footer-container .footer-links a::first-letter {
  text-transform: uppercase;
}

#footer-container .footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background-color: #ffffff;
  transition: right 0.3s ease;
}

#footer-container .footer-links a:hover::after {
  right: 0;
}

#footer-container .footer-bottom {
  text-align: center;
  font-family: "Manrope";
  font-size: 1.1rem;
  font-weight: 400;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
}

.footer-bottom img {
  width: 100%;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

@media screen and (max-width: 800px) {
  #footer-container {
    justify-content: end;
    height: auto;
  }
}

/* hero section OF HOME */
.background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  z-index: -1;
  overflow: hidden;
}

.pattern-background {
  width: 100vw;
  height: 3800px;
  background-size: 100% 100% !important;
  background-position: center !important;
}

.mirrored {
  transform: scaleX(-1);
}

#hero {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  object-fit: contain;
  height: 110vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: -19vh;
}
#hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

#hero .hero-content {
  padding: 2vw;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  z-index: 1;
}

#hero h1 {
  font-family: "Salitia-Medium";
  font-size: clamp(70px, 10vw, 160px);
  line-height: clamp(55px, 5.2vw, 176px);
  font-weight: 500;
  color: black;
  padding: 1rem;
  letter-spacing: -0.01em;
}

#hero h2 {
  font-family: "Manrope";
  font-size: 22px;
  font-weight: 300;
  line-height: 32.78px;
  color: #6c401d;
}

#hero p {
  font-family: "Manrope";
  font-size: 16px;
  font-weight: 300;
  line-height: 21.86px;
  text-align: center;
  color: #6c401d;
  width: 40%;
}

@media screen and (max-width: 800px) {
  #hero .hero-content {
    height: 50%;
    gap: 0;
    justify-content: start;
  }
  #hero {
    background-size: auto;
    background-position: top;
    height: 108vh;
  }
}

/* coffee culture section */
#coffee-culture-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  gap: 2rem;
}

#coffee-culture-section .coffee-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#coffee-culture-section .coffee-image img {
  width: 30vw;
  height: 100%;
  object-fit: cover;
}

#coffee-culture-section .coffee-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4vh;
  padding: 1vh 5vw;
}

#coffee-culture-section .coffee-content h2 {
  font-family: "Salitia-normal";
  font-size: clamp(60px, 7vw, 80px);
  line-height: clamp(40px, 6vw, 88px);
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #583213;
}

#coffee-culture-section .coffee-content p {
  font-family: "Manrope";
  font-size: 1rem;
  font-weight: 300;
  text-align: left;
  color: #6c401d;
}

#coffee-culture-section .coffee-content .learn-more {
  position: relative;
  z-index: 1;
  background-color: #6c401d;
  color: #fff;
  padding: 1rem 2rem;
  cursor: pointer;
  transition: background-color 0.6s, box-shadow 0.3s, transform 0.3s;
  border: 1px solid #6c401d;
  border-radius: 2.5rem;
  font-family: "Manrope";
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  outline: none;
  overflow: hidden;
}

#coffee-culture-section .coffee-content .learn-more::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #c78e60, #583213);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: inherit;
  z-index: -1;
}

#coffee-culture-section .coffee-content .learn-more:hover {
  background-color: transparent;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#coffee-culture-section .coffee-content .learn-more:hover::after {
  opacity: 1;
}

@media screen and (max-width: 800px) {
  #coffee-culture-section .coffee-content {
    justify-content: center;
    align-items: center;
  }

  #coffee-culture-section .coffee-image img {
    width: 50vw;
  }

  #coffee-culture-section .coffee-content h2 {
    text-align: center;
  }
}

/* featured On section */
#featured-On {
  width: 100%;
  min-height: 30vh;
  background-size: contain;
  background-position: right;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

#featured-On h2 {
  font-family: "Salitia-normal";
  font-size: clamp(60px, 7vw, 80px);
  line-height: clamp(32px, 6vw, 88px);
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #583213;
  text-align: center;
}

.featured-On-logos-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-right: 7rem;
}

.featured-On-logos {
  display: flex;
  white-space: nowrap;
  align-items: center;
  gap: 3vw;
  animation: scroll-logos 20s linear infinite;
}

.featured-On-logos img {
  backface-visibility: hidden;
  display: inline-block;
  width: auto;
  height: auto;
  object-fit: cover;
}

.featured-On-logos-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: -5rem;
  width: 10%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 0) 0%,
    rgba(251, 245, 239, 1) 28%
  );
  border-radius: 1rem;
}

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

@media screen and (max-width: 800px) {
  .featured-On-logos-wrapper {
    width: 90%;
  }
}

/* menu and location section */
#menu-section {
  display: flex;
  padding: 3vw;
  gap: 2vw;
  align-items: center;
  justify-content: center;
}

#menu-section .menu-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1.2rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#menu-section .menu-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
  opacity: 0;
  z-index: 1;
}

#menu-section .menu-item:hover::before {
  opacity: 0;
}

.menu-item img {
  object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

#menu-section .menu-item a {
  font-family: "Salitia-Medium";
  font-weight: 500;
  font-size: 7.5rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: -0.01em;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: background-color 0.3s ease;
}

#menu-section .menu-item:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

#menu-section .menu-item:hover img {
  transform: scale(1.1);
}

/* information section home page */
#information {
  padding: 2rem;
}

#information .container {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#information .container a {
  display: block;
  position: relative;
  width: 100%;
  color: white;
  text-decoration: none;
}

#information .left,
#information .right {
  width: 50%;
}

#information img {
  width: 100%;
  height: auto;
  filter: brightness(70%);
  transition: filter 0.3s ease;
}

#information .container a:hover img {
  filter: brightness(100%);
}

#information .link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: "Salitia-Medium";
  font-size: 120px;
  font-weight: 500;
  line-height: 132px;
  letter-spacing: -0.01em;
  text-align: left;
  transition: transform 0.3s ease;
}

#information .container a:hover .link {
  transform: translate(-50%, -65%) scale(1.3);
}

@media screen and (max-width: 800px) {
  #information .container {
    flex-direction: column;
  }

  #information .left,
  #information .right {
    width: 100%;
  }

  #information .link {
    font-size: 100px;
  }
}

/* yemmen section */
#yemen-section {
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#yemen-section img {
  width: 90vw;
  height: auto;
  object-fit: cover;
}

#yemen-section h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Salitia-normal";
  font-weight: normal;
  font-style: normal;
  font-size: clamp(80px, 5vw, 100px);
  line-height: clamp(46px, 5.2vw, 96px);
  color: #583213;
  width: 100%;
}

/* social media section */
#social-media {
  padding: 2vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

#social-media h3 {
  font-family: "Manrope";
  font-size: 1.25rem;
  font-weight: 300;
  text-align: center;
  color: #000;
}

#social-media h2 {
  font-family: "Salitia-normal";
  font-size: clamp(60px, 7vw, 80px);
  line-height: clamp(32px, 6vw, 88px);
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #583213;
  text-align: center;
}

#social-media .social-media-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4vw;
  align-items: center;
}

#social-media .icon img {
  object-fit: cover;
}

#social-media .icon span {
  font-family: "Manrope";
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  text-decoration: underline;
  color: #583213;
  z-index: 3;
}

#social-media .social-media-icons .icon {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  gap: 2vw;
  border-radius: 0.6rem;
  border: 1px solid #ffffff;
  background-color: #fff;
  padding: 2vh 3vw 2vh 1vw;
  overflow: hidden;
}

#social-media .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #c78e60, #583213);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0.6rem;
}

#social-media .icon:hover::before {
  opacity: 1;
}

#social-media .icon img {
  transition: filter 0.3s;
}

#social-media .icon:hover span {
  color: white;
}

#social-media .icon:hover img {
  filter: brightness(0) invert(1);
}

/* coffee section details */
#coffee-section {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  object-fit: contain;
  height: 109vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2vw;
}

#coffee-section h2 {
  font-family: "Salitia-normal";
  font-weight: normal;
  font-style: normal;
  font-size: 6rem;
  color: #583213;
  text-align: center;
  line-height: 4rem;
  width: 30%;
}

#coffee-section .coffee-section-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 6vh;
  align-items: flex-start;
}

#coffee-section .coffee-section-content .coffee-details {
  flex: 0 0 calc(50% - 2vw);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

#coffee-section .coffee-section-content .coffee-details-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1vw;
  width: 100%;
}

#coffee-section .coffee-section-content .coffee-details-header img {
  object-fit: cover;
}

#coffee-section .coffee-section-content .coffee-details h2 {
  font-family: "Salitia-normal";
  font-weight: normal;
  font-style: normal;
  font-size: 3rem;
  color: #583213;
}

#coffee-section .coffee-section-content .coffee-details p {
  font-size: 1rem;
  font-family: "Manrope";
  font-weight: 300;
  padding: 0 2.5vw;
  width: 60%;
}

/* review section */
#review-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3vw;
}

#review-section h2 {
  font-family: "Salitia-normal";
  font-weight: normal;
  font-style: normal;
  font-size: 5rem;
  letter-spacing: -0.01em;
  text-align: center;
  color: #583213;
}

#review-section .text {
  font-family: "Manrope";
  font-size: 1rem;
  text-align: center;
  color: #6c401d;
  width: 50%;
}

#homepage-reviews {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 3vh 6vw;
  gap: 2vh;
}

#homepage-reviews .single-review {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2vw;
  flex-basis: 49%;
  background-color: #efe0cc;
  border: 1px solid #dbc4a2;
  border-radius: 0.6rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 2vw;
}

#homepage-reviews .profile {
  flex: 1;
}

#homepage-reviews .profile img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.review-info {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
}

#homepage-reviews .review-info h3 {
  font-family: "Manrope";
  font-size: 1.2rem;
  font-weight: 600;
  color: #282a3a;
}

#homepage-reviews .review-info p {
  font-family: "Manrope";
  font-size: 1rem;
  font-weight: 400;
  color: #282a3a;
}

#review-section .load-more {
  align-self: center;
  background-color: #6c401d;
  color: #fff;
  padding: 2vh 2vw;
  cursor: pointer;
  transition: background-color 0.3s;
  border: 1px solid #6c401d;
  border-radius: 2.5rem;
  font-family: "Manrope";
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  outline: none;
  transition: all 0.3s ease-in-out;
}

#review-section .load-more:hover {
  background-color: #40280b;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transform: scale(1);
  background: linear-gradient(90deg, #c78e60, #583213);
  border-bottom-color: #583213;
}

/* about page */
#purpose-coffee {
  display: flex;
  flex-direction: column;
  padding: 2vw;
}

#purpose-coffee .purpose-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
  gap: 2vw;
  padding: 6vh 2vw;
}

#purpose-coffee .purpose-content p {
  font-family: "Manrope";
  font-weight: 400;
  font-size: 1.3rem;
}

#purpose-coffee .our-purpose {
  display: flex;
}

#purpose-coffee .header-purpose,
#yameni-coffe .yameni-coffe-header {
  display: flex;
  justify-content: flex-start;
  gap: 1vw;
}

#purpose-coffee .header-purpose h2,
#yameni-coffe .yameni-coffe-header h2 {
  font-family: "Manrope";
  font-size: 1.5;
  font-weight: 800;
  color: #583213;
}

#purpose-coffee .purpose-image-right {
  display: flex;
  justify-content: flex-start;
  flex: 1;
}

#purpose-coffee .purpose-image-right img {
  object-fit: cover;
  width: 100%;
  border-radius: 0.5rem;
}

#yameni-coffe {
  display: flex;
  padding: 2vh 2vw;
}

#yameni-coffe .yameni-coffe-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  gap: 3vh;
}

#yameni-coffe .yameni-coffee-right-img {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-right: -4vw;
}

#yameni-coffe .yameni-coffee-right-img img {
  object-fit: cover;
  width: 60%;
}

#yameni-coffe p {
  font-family: "Manrope";
  font-size: 1.3rem;
  font-weight: 400;
}

@media screen and (max-width: 800px) {
  #yameni-coffe .yameni-coffe-header {
    justify-content: center;
  }

  #purpose-coffee .purpose-image-right {
    justify-content: center;
  }
}

#our-name {
  display: flex;
  padding: 2vw;
}

#our-name .purpose-image-left {
  display: flex;
  flex-direction: column;
  gap: 2vh;
  display: flex;
  justify-content: flex-start;
  flex: 1;
}

#our-name .purpose-image-left .purpose-image-down img {
  margin: 1vw 0 0 -2vw;
  object-fit: cover;
  width: 100%;
}

#our-name .our-name-content .our-name-text img {
  object-fit: cover;
  width: 100%;
  margin-left: 7rem;
}

#our-name .purpose-image-left img {
  object-fit: cover;
  width: 100%;
  border-radius: 0.5rem;
}

#our-name .our-name-content {
  flex: 1;
  padding: 4vw;
  align-items: flex-start;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

#our-name .our-name-content .header-purpose {
  display: flex;
  justify-content: flex-start;
  gap: 1vw;
}

#our-name .our-name-content h2 {
  font-family: "Manrope";
  font-size: 1.5;
  font-weight: 800;
  color: #583213;
}

#our-name .our-name-content .our-name-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 1rem;
  padding: 2vh 0;
}

#our-name .our-name-content .our-name-text p {
  font-family: "Manrope";
  font-size: 1.3rem;
  font-weight: 400;
}

@media screen and (max-width: 800px) {
  #our-name .none {
    display: none;
  }
}

#franchise-opportunities {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3vh;
  padding: 2vw;
}

#franchise-opportunities h2 {
  font-family: "Salitia-Medium";
  font-weight: 500;
  font-size: clamp(59px, 5vw, 100px);
  line-height: clamp(40px, 5.2vw, 110px);
  text-align: center;
  color: #583213;
}

#franchise-opportunities p {
  font-family: "Manrope";
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  width: 60%;
}

#franchise-opportunities .get-in-touch {
  position: relative;
  background-color: #6c401d;
  color: #fff;
  padding: 16px 54px;
  cursor: pointer;
  border: 1px solid #6c401d;
  border-radius: 2.5rem;
  font-family: "Manrope";
  font-size: 1rem;
  font-weight: 400;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  z-index: 3;
  transition: box-shadow 0.3s, background-color 0.3s, border-color 0.3s;
}

#franchise-opportunities .get-in-touch::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #c78e60, #583213);
  opacity: 0;
  border-radius: 2.5rem;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}

#franchise-opportunities .get-in-touch:hover::after {
  opacity: 1;
}

#franchise-opportunities .get-in-touch:hover {
  background-color: #6c401d;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-bottom-color: #583213;
}

@media screen and (max-width: 800px) {
  #franchise-opportunities p {
    width: auto;
  }
}

#gallery-photo {
  padding: 2vw;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#gallery-photo h2 {
  font-family: "Salitia-normal";
  font-size: clamp(60px, 7vw, 80px);
  line-height: clamp(32px, 6vw, 88px);
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #583213;
  text-align: left;
}

/* blog details style */
/* blog page section style */
#blog-post-section {
  display: flex;
  justify-content: center;
  padding: 0vh 6vw;
}

#blog-post-section .container {
  display: flex;
  flex-direction: column;
}

#blog-post-section h1 {
  font-family: "Salitia-normal";
  font-size: clamp(60px, 7vw, 80px);
  line-height: clamp(32px, 6vw, 88px);
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #583213;
  text-align: left;
}

#blog-post-section .featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  padding: 1rem;
  border-radius: 30px;
}

#blog-post-section .post-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#blog-post-section .post-content ol {
  padding: 0 2rem;
}

#blog-post-section .post-content li {
  font-family: "Manrope";
  font-size: 1rem;
  font-weight: 500;
  padding: 1rem;
}

#blog-post-section .post-content p:not(:has(img)) {
  font-family: "Manrope";
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem;
}

#blog-post-section .post-content a {
  font-family: "Manrope";
  font-size: 1.2rem;
  font-weight: 500;
  padding: 1rem;
  color: #583213;
  text-decoration: none;
}

#blog-post-section .post-content a:hover {
  text-decoration: underline;
}

#blog-post-section .post-content p img {
  object-fit: cover;
  height: auto;
  width: 50%;
  object-fit: cover;
  padding: 1rem;
  border-radius: 30px;
}

@media screen and (max-width: 1200px) {
  #blog-post-section .post-content p:not(:has(img)) {
    padding: 1rem;
  }

  #blog-post-section .subheading {
    width: auto;
  }
}

/* suggestions section style */
#suggested-posts {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 3rem;
}

#suggested-posts .suggested-news-post {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 0.6rem;
  flex: 0 0 33.33%;
}

#suggested-posts .suggested-post-thumbnail img {
  width: 100%;
  height: 350px;
  display: flex;
  object-fit: cover;
  border-radius: 0.6rem;
  transition: 0.3s;
}

#suggested-posts .suggested-post-thumbnail img:hover {
  transform: scale(1.03);
}

#suggested-posts .suggested-post-content {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

#suggested-posts .suggested-post-title {
  font-family: "Manrope";
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

#suggested-posts .suggested-post-title:hover {
  color: #583213;
  transform: translateY(-2px);
}

#suggested-posts .meta-category a {
  font-family: "Manrope";
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.019em;
  color: #6a6a6a;
  text-decoration: none;
}

#suggested-posts .post-date {
  font-family: "Manrope";
  font-size: 1rem;
  font-weight: 400;
  color: #583213;
}

#suggested-posts .date_read-more {
  display: flex;
  justify-content: space-between;
}

#suggested-posts .suggested-read-more {
  font-family: "Manrope";
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.019em;
  text-decoration: none;
  transition: color 0.3s;
  color: #40280b;
  position: relative;
}

#suggested-posts .suggested-read-more::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #40280b;
  transition: width 0.3s ease;
}

#suggested-posts .suggested-read-more:hover::after {
  width: 100%;
}

#suggested-posts .suggested-read-more:hover {
  color: #40280b;
}

/* blog page style */
#blog {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

#blog h1,
#blog h2 {
  font-family: "Salitia-normal";
  font-size: clamp(60px, 7vw, 80px);
  line-height: clamp(32px, 6vw, 88px);
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #583213;
  text-align: center;
}

#blog-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  padding: 2rem;
}

#blog-posts .blog-news-post {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 1.5rem;
  border-radius: 0.6rem;
}

#blog-posts .blog-news-post img {
  width: 100%;
  height: 350px;
  display: flex;
  object-fit: cover;
  border-radius: 0.6rem;
  transition: transform 0.4s ease-in-out;
}

#blog-posts .blog-news-post img:hover {
  transform: scale(1.05);
}

#blog-posts .blog-post-content {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

#blog-posts .blog-post-title {
  font-family: "Manrope";
  text-decoration: none;
  color: #583213;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 32.78px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

#blog-posts .blog-post-title:hover {
  transform: translateY(-5px);
  color: #583213;
}

#blog-posts .meta-category a {
  font-family: "Manrope";
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: -0.019em;
  color: #6a6a6a;
  text-decoration: none;
}

#blog-posts .post-date {
  font-family: "Manrope";
  font-size: 1rem;
  font-weight: 400;
  color: #583213;
}

#blog-posts .date_read-more {
  display: flex;
  justify-content: space-between;
}

#blog-posts .blog-read-more {
  font-family: Manrope;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.019em;
  text-decoration: none;
  transition: background-color 0.3s;
  color: #583213;
  position: relative;
}

#blog-posts .blog-read-more::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #40280b;
  transition: width 0.3s ease;
}

#blog-posts .blog-read-more:hover::after {
  width: 100%;
}

#blog-posts .blog-read-more:hover {
  color: #40280b;
}

@media screen and (max-width: 1100px) {
  #blog-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 700px) {
  #blog-posts {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* contact us page style */
#contactUs {
  display: flex;
  padding: 2rem;
}

#contactUs .form {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem;
}

#contactUs .form h1 {
  font-family: "Salitia-normal";
  font-size: clamp(60px, 7vw, 80px);
  line-height: clamp(32px, 6vw, 88px);
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #583213;
  text-align: left;
}

#contactUs .form h3 {
  font-family: "Inter";
  font-size: clamp(1rem, 2vw, 2rem);
  font-weight: 400;
  color: #828282;
}

#contactUs .form form {
  display: flex;
  flex-direction: column;
}

#contactUs .form label {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: "Inter";
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
}

#contactUs input,
#contactUs textarea,
#contactUs select {
  width: 100%;
  border: 1px solid #e0e0e0;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 1.5vh 1vw;
  font-family: "Inter";
  font-size: 1rem;
  font-weight: 500;
  color: #583213;
  position: relative;
}

#contactUs select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../assets/icons/drop-down.svg);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

#contactUs input:hover,
#contactUs textarea:hover,
#contactUs select:hover,
#contactUs input:focus,
#contactUs textarea:focus,
#contactUs select:focus {
  border-color: #583213;
  outline: none;
}

#contactUs select:hover {
  color: #583213;
}

#contactUs select option:hover {
  background-color: #583213;
}

#contactUs textarea {
  resize: none;
  height: 20vh;
}

#contactUs input::placeholder,
#contactUs textarea::placeholder,
#contactUs select.placeholder {
  font-family: "Inter";
  font-size: 1rem;
  font-weight: 500;
  color: #828282;
}

#contactUs input:focus,
#contactUs textarea:focus,
#contactUs select:focus,
#contactUs button:focus {
  outline: none;
  border: transparent;
}

#contactUs .form .contact-submit {
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  background-color: #583213;
  color: #fff !important;
  font-family: "Inter";
  font-size: 1.3rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  border-radius: 0.5rem;
  padding: 1.5vh 1vw;
}

#contactUs .form .contact-submit:hover {
  background: linear-gradient(90deg, #c78e60, #583213);
}

#contactUs .form form .name p {
  display: flex;
  justify-content: flex-start;
  gap: 1vw;
}

#contactUs .contact-us-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

#contactUs .contact-us-image img {
  object-fit: cover;
  border-radius: 0.5rem;
  height: 95vh;
}

.drink-category label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #583213;
}

.wpcf7-checkbox input[type="checkbox"] {
  display: none;
}

.wpcf7-checkbox span {
  display: inline-block;
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

.wpcf7-checkbox input[type="checkbox"]:checked + span {
  background-color: #583213;
  color: white;
  border-color: #583213;
}

.wpcf7-checkbox span:hover {
  border-color: #583213;
}

input[type="radio"] {
  display: none;
}

label span.wpcf7-list-item-label {
  position: relative;
  padding-left: 2rem;
  cursor: pointer;
  font-family: "Inter";
  font-size: 1rem;
  color: #583213;
  user-select: none;
}

label span.wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #e0e0e0;
  border-radius: 50%;
  background-color: transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::before {
  background-color: #583213;
  border-color: #583213;
}

input[type="radio"]:checked + span.wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0.7rem;
  height: 0.7rem;
  background-color: white;
  border-radius: 50%;
}

label span.wpcf7-list-item-label:hover::before {
  border-color: #583213;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}

#contact-form .error-message {
  position: absolute;
  right: 0;
  color: #ffffff;
  font-size: 0.9rem;
  font-family: "Inter";
  font-weight: 400;
  display: flex;
  background-color: #dc3232;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  animation: shake 0.3s ease-in-out;
}

#contact-form .error-message:after {
  border-color: #dc3232 transparent transparent;
  -o-border-image: none;
  border-image: none;
  border-right: 10px solid transparent;
  border-style: solid;
  border-width: 10px;
  content: "";
  left: 3rem;
  position: absolute;
  top: 100%;
}

#loading-div {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}

.loading-spinner {
  animation: rotate 1s infinite;
  height: 50px;
  width: 50px;
}
.loading-spinner:before,
.loading-spinner:after {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
.loading-spinner::after {
  animation: ball2 1s infinite;
  background-color: #583213;
  box-shadow: 30px 0 0 #c78e60;
}
.loading-spinner::before {
  animation: ball1 1s infinite;
  background-color: #c78e60;
  box-shadow: 30px 0 0 #583213;
  margin-bottom: 10px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(0.8);
  }
  50% {
    transform: rotate(360deg) scale(1.2);
  }
  100% {
    transform: rotate(720deg) scale(0.8);
  }
}

@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 #583213;
  }
  50% {
    box-shadow: 0 0 0 #583213;
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #583213;
    margin-bottom: 10px;
  }
}

@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #c78e60;
  }
  50% {
    box-shadow: 0 0 0 #c78e60;
    margin-top: -20px;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 #c78e60;
    margin-top: 0;
  }
}

/* location page style */
/* location page */
#locationSelect {
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #fff;
  border-radius: 4px;
  background-color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../assets/icons/drop-down.svg);
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}

#locationSelect:hover,
#locationSelect:focus {
  border-color: #583213;
  outline: none;
}

/* Optional: Style the options */
#locationSelect option {
  padding: 1rem;
  background-color: #fff;
  color: #583213;
  border-bottom: 1px solid #eee;
}

.select-section {
  display: flex;
  padding-top: 80px;
  align-items: center;
  justify-content: center;
}

.location-section {
  display: flex;
  flex-direction: column;
  padding: 3vw;
  gap: 4vh;
  margin: 2rem;
  border-radius: 10px;
  background-color: rgba(88, 50, 19, 0.1);
  box-shadow: 0 4px 15px rgba(88, 50, 19, 0.5);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.location-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.select-section select {
  border: 1px solid #e0e0e0;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 1.5vh 1vw;
  font-family: "Inter";
  font-size: 1rem;
  font-weight: 500;
  color: #583213;
  width: 40vw;
}

.select-section select option:hover {
  background-color: #583213;
}

.select-section select.placeholder {
  font-family: "Inter";
  font-size: 1rem;
  font-weight: 500;
  color: #828282;
}

.select-section select:focus {
  outline: none;
  border: transparent;
}

.location-section .location-section-info {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
}

.location-section .title-description {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.location-section .contact-location-info {
  display: flex;
  gap: 1rem;
  flex: 1;
}

.location-section .info-address {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 2;
}

.location-section .working-hour {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 2;
}

.title-description h2 {
  font-family: "Manrope";
  font-size: clamp(1.5rem, 2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #583213;
}

.title-description p {
  font-family: "Manrope";
  font-size: 1rem;
  font-weight: 400;
  color: #565656;
  width: 70%;
  text-align: justify;
}

.location-section .info-address h3,
.location-section .working-hour h3 {
  font-family: "Manrope";
  font-size: 1.1rem;
  font-weight: 600;
  color: #583213;
}

.location-section .info-address p {
  font-family: "Manrope";
  font-size: 1.1rem;
  font-weight: 400;
  color: #583213;
}

.location-section .working-hour ul {
  list-style: none;
}

.location-section .working-hour ul li {
  font-family: "Manrope";
  font-size: 1.1rem;
  font-weight: 400;
  color: #583213;
}

.location-map {
  display: flex;
  gap: 1rem;
}
.location-map .map,
.location-map .image-location {
  flex: 1;
}
.location-map .map iframe {
  border-radius: 1rem;
}

.location-section .image-location img {
  object-fit: cover;
  width: 100%;
  border-radius: 0.5rem;
  aspect-ratio: 1/0.7;
}

@media screen and (max-width: 700px) {
  .location-section .contact-location-info {
    flex-direction: column;
  }

  .location-section .working-hour {
    width: 100%;
  }

  .title-description p {
    width: 100%;
  }

  .location-section .contact-location-info {
    gap: 2rem;
  }

  .location-section .info-address {
    gap: 0.5rem;
  }
  .location-map {
    flex-direction: column;
  }
}

@media screen and (max-width: 480px) {
  .select-section {
    padding: 2rem;
    margin-top: 6rem;
  }

  #locationSelect {
    width: 100%;
    background-position: right 1rem center;
  }

  .location-section .working-hour {
    align-items: center;
  }
}

/* MENU PAGE STYLE */
/* menu page */
#menu-raditional-drinks {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 2vh 6vw;
  border: 1px solid rgba(88, 50, 19, 0.5);
  border-radius: 1.9rem;
  background: rgba(255, 255, 255, 0.5);
}

.sec-menu {
  background: rgba(217, 202, 175, 0.4) !important;
}

.third-menu {
  background: rgba(178, 117, 63, 0.4) !important;
}

.forth-menu {
  background: rgba(108, 64, 29, 0.3) !important;
}

#menu-raditional-drinks .drinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

#menu-raditional-drinks h1 {
  font-family: "Salitia-Medium";
  font-weight: 500;
  font-style: normal;
  font-size: 6.25rem;
  letter-spacing: -0.01em;
  text-align: center;
  color: #583213;
}

#menu-raditional-drinks .drink-section {
  flex-basis: 50%;
  display: flex;
  align-items: center;
  gap: 4vw;
}

#menu-raditional-drinks .drinks .first-drink {
  margin: -15vw 0 0 0;
}

.first-drink .first-arrow {
  object-fit: cover;
  position: absolute;
  bottom: -3vw;
  left: -3vw;
}

#menu-raditional-drinks .drinks .sec-drink {
  justify-content: flex-end;
  margin: 10vw 0 0 0;
}

.sec-drink .sec-arrow {
  display: flex;
  align-self: center;
  position: absolute;
  bottom: -10vw;
  left: 2vw;
}

#menu-raditional-drinks .drinks .third-drink {
  margin: -15vw 0 0 0;
}

.third-drink .third-arrow {
  object-fit: cover;
  position: absolute;
  bottom: 16vw;
  left: -4vw;
}

#menu-raditional-drinks .drinks .forth-drink {
  justify-content: flex-end;
  margin: 10vw 0 0 0;
}

.forth-drink .forth-arrow {
  position: absolute;
  bottom: -11vw;
  left: 8vw;
}

#menu-raditional-drinks .drinks .five-drink {
  margin: -15vw 0 0 0;
}

.five-drink .five-arrow {
  position: absolute;
  bottom: 18vw;
  left: -8vw;
}

#menu-raditional-drinks .drinks .last-drink {
  justify-content: flex-end;
  margin: 10vw 0;
}

.drinks .last-drink .last-arrow {
  position: absolute;
  bottom: -11vw;
  left: 11vw;
}

#menu-raditional-drinks .image-drink img {
  object-fit: cover;
  width: 15vw;
  height: auto;
}

#menu-raditional-drinks h2 {
  font-family: "Salitia-Medium";
  font-weight: 500;
  font-style: normal;
  font-size: 3.75rem;
  letter-spacing: -0.01em;
  color: #583213;
}

#menu-raditional-drinks .ingredients {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

#menu-raditional-drinks .description {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  position: relative;
}

#menu-raditional-drinks .ingredient {
  display: flex;
  align-items: center;
  gap: 1vw;
}

#menu-raditional-drinks .ingredient p {
  font-family: "Manrope";
  font-size: 1.2rem;
  font-weight: 500;
}

.sec-menu .first-drink .first-arrow {
  bottom: -5vw;
  left: 5vw;
}

.sec-menu .sec-drink .sec-arrow {
  bottom: -9vw;
  left: 5vw;
}

.sec-menu .third-drink .third-arrow {
  bottom: 4vw;
  left: -3vw;
}

.sec-menu .forth-drink .forth-arrow {
  bottom: -9vw;
  left: 5vw;
}

.third-menu .first-drink .first-arrow {
  bottom: -6vw;
  left: 0vw;
}

.third-menu .sec-drink .sec-arrow {
  bottom: -10vw;
  left: 4vw;
}

.third-menu .drinks .third-drink {
  margin: 0 !important;
}

.third-menu .third-drink .third-arrow {
  bottom: 10vw;
  left: 0vw;
}

#coffe {
  width: 100%;
  height: 90vh;
}

#coffe .all {
  padding: 2rem;
  height: 100%;
}

#coffe .title {
  position: relative;
  align-items: center;
  align-self: center;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 1rem;
}

#coffe .title h2 {
  font-family: "Salitia-normal";
  font-size: clamp(60px, 7vw, 80px);
  line-height: clamp(32px, 6vw, 88px);
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #583213;
  text-align: center;
}

#coffe .title img {
  position: absolute;
}

#coffe .cofe1 {
  left: 1%;
  top: 30%;
  transition: 1s;
}

#coffe .cofe2 {
  top: 1%;
  left: 10%;
  transition: 1s;
}

#coffe .cofe3 {
  left: 20%;
}

#coffe .cofe4 {
  top: 1%;
  right: 15%;
  transition: 1s;
}

#coffe .cofe5 {
  right: 1%;
  transition: 1s;
  top: 30%;
}

#coffe .container {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 95%;
  height: 60%;
  margin-left: auto;
  margin-right: auto;
  gap: 2rem;
}

#coffe .left {
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem;
}

#coffe .header {
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: nowrap;
}

#coffe .content h2 {
  font-family: "Salitia-normal";
  font-size: 3rem;
  line-height: clamp(32px, 6vw, 88px);
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #583213;
  text-align: left;
}

#coffe .content p {
  font-family: "Manrope";
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 21.86px;
}

#coffe .camel {
  position: absolute;
  width: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -30%);
}

#coffe .camel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#coffe .arabee {
  width: 100% !important;
}

#coffe .arabic {
  position: absolute;
  width: 100%;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 1;
  transition: 0.3s;
}

#coffe .display {
  display: none;
}

@media (max-width: 1150px) {
  #coffe {
    height: auto;
  }

  #coffe .container {
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 0;
  }

  #coffe .left {
    gap: 0;
  }

  #coffe .camelnone {
    display: none;
  }

  #coffe .content {
    padding: 1rem;
  }

  #coffe .left {
    width: auto;
    display: flex;
    margin: 1rem;
    flex-direction: row;
  }

  #coffe .cofe3 {
    display: none;
  }

  #coffe .cofe4 {
    top: 5%;
    right: -3%;
    transition: 1s;
  }

  #coffe .cofe1 {
    top: 1%;
    left: 5%;
    transition: 1s;
  }

  #coffe .cofe2 {
    top: 55%;
    left: 1%;
    transition: 1s;
  }

  #coffe .cofe5 {
    display: none;
  }
}

@media (max-width: 840px) {
  #coffe .arabic {
    transition: 0.3s;
    opacity: 0;
  }
}

@media (max-width: 780px) {
  #coffe .cofe4 {
    display: none;
  }

  #coffe .cofe1 {
    display: none;
  }

  #coffe .cofe2 {
    display: none;
  }

  #coffe .none img {
    transform: scale(0.9);
    display: none;
  }

  #coffe .display {
    transform: scale(0.8);
    display: flex;
  }

  #coffe .left {
    flex-direction: column;
  }

  #coffe .left {
    margin: 0;
  }

  #coffe .header {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
  }

  #coffe .content p {
    text-align: center;
  }
}

@media (max-width: 700px) {
  #coffe .cofe1 {
    opacity: 0;
    transition: 0.3s;
  }

  #coffe .cofe5 {
    opacity: 0;
    transition: 0.3s;
  }
}

#testimonial .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

#testimonial .header {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

#testimonial .header h2 {
  font-family: "Salitia-normal";
  font-size: clamp(60px, 7vw, 80px);
  line-height: clamp(32px, 6vw, 88px);
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #583213;
  text-align: center;
}

#testimonial .header p {
  font-family: "Manrope";
  font-size: 16px;
  font-weight: 300;
  line-height: 21.86px;
  text-align: center;
  color: #583213;
}

#testimonial .content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  gap: 2rem;
  color: #583213;
}

#testimonial .box {
  display: flex;
  align-items: center;
  background-color: #efe0cc;
  gap: 2rem;
  padding: 0 2rem;
  border: 1px solid #dbc4a2;
  border-radius: 10px;
}

#testimonial .left {
  width: 35%;
  height: 85%;
  overflow: hidden;
  border-radius: 50% / 22%;
}

#testimonial .left img {
  width: 100%;
  height: 100%;
  min-height: 238.61px;
  object-fit: cover;
}

#testimonial .right {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#testimonial .right h3 {
  font-family: "Manrope";
  font-size: 18px;
  font-weight: 600;
  line-height: 21.6px;
}

#testimonial .right p {
  font-family: "Manrope";
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
}

#testimonial .stars img {
  width: 1.5rem;
}

@media screen and (max-width: 1200px) {
  #testimonial .content {
    width: 100%;
    gap: 1rem;
  }

  #testimonial .right p {
    font-family: "Manrope";
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
  }
}

@media screen and (max-width: 700px) {
  #testimonial .content {
    grid-template-columns: 1fr;
  }

  #testimonial .left {
    height: auto;
  }

  #testimonial .box {
    padding: 1rem;
  }
}

/* .woocommerce-billing-fields__field-wrapper {
  display: flex;
  flex-direction: column;
}

.form-row.form-row-wide {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.form-row.form-row-wide .form-field {
  width: 48%;
  box-sizing: border-box;
  padding-right: 10px;
}

.form-row.form-row-wide .form-field.full-width {
  width: 100%;
}

.form-row.form-row-wide .form-field:last-child {
  padding-right: 0;
} */
/* 
@media (max-width: 768px) {
  .form-row.form-row-wide .form-field {
    width: 100%;
    padding-right: 0;
  }
} */

#tradition {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #58321380;
  border-radius: 30px;
  padding-bottom: 10%;
}

.Traditionalbg {
  background-color: #ffffff;
}

.Refreshersbg {
  background-color: #d9caaf66;
}

.Signaturesbg {
  background-color: #b2753f66;
}

.Classicsbg {
  background-color: #6c401d4d;
}

#tradition .header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

#tradition .header h1 {
  font-family: "Salitia-medium";
  font-size: clamp(60px, 7vw, 80px);
  line-height: clamp(32px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #583213;
  text-align: center;
}

#tradition .container {
  display: flex;
  height: 100%;
  justify-content: space-between;
}

#tradition .content {
  position: relative;
  position: relative;
  display: flex;
  height: 100%;
  flex-direction: column;
  flex: 2;
}

#tradition .menu .img {
  flex: 1;
}

#tradition .reverse-col {
  justify-content: flex-end;
  align-items: flex-end;
}

#tradition .menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: start;
}

#tradition .left {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 8vw;
}

#tradition .right {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 8vw;
  margin-top: 15%;
}

#tradition .menu li {
  font-family: "Manrope";
  font-size: clamp(16px, 2vw, 20px);
  line-height: clamp(16px, 2vw, 20px);
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  text-align: left;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

#tradition .menu h2 {
  margin-bottom: 1rem;
  font-family: "Salitia-normal";
  font-size: clamp(50px, 7vw, 80px);
  line-height: clamp(32px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: -0.01em;
  text-align: left;
  color: #583213;
}

#tradition .menu .drink_image {
  height: 100%;
  max-width: 25vw;
  object-fit: contain;
}

#tradition .arrow {
  width: fit-content;
  height: fit-content;
}

#tradition .reverse {
  flex-direction: row-reverse;
  justify-content: end;
}
@media screen and (max-width: 1440px) {
  #tradition .menu .drink_image {
    max-width: 20vw;
  }
}
@media screen and (max-width: 1130px) {
  #tradition .menu .drink_image {
    max-width: 16vw;
  }
}

@media screen and (max-width: 1000px) {
  #tradition{
    margin-top: 6rem;
  }
  #tradition .container {
    flex-direction: column;
    overflow: hidden;
  }
  #tradition .menu .drink_image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
  #tradition .content {
    flex: 1;
  }
  #tradition .menu h2 {
    padding: 1rem;
  }
  #tradition .arrow {
    display: none;
  }
}

#tradition .menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: start;
}

#tradition .reverse {
  justify-content: end;
}

#tradition {
  padding-bottom: 40%;
}

#tree {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  position: relative;
  transition: height 0.5s ease-in-out;
}

#tree img {
  height: auto;
  transform: scale(0.3);
  transition: transform 2s ease-in-out, height 1.5s ease-in-out;
}

#tree h1 {
  font-family: "Salitia-normal";
  font-weight: normal;
  letter-spacing: -0.01em;
  font-size: clamp(32px, 5vw, 100px);
  line-height: clamp(50px, 5.2vw, 96px);
  color: #583213;
  text-align: center;
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.6);
  white-space: nowrap;
  transition: transform 3s;
  width: 100%;
}

#tree.animate h1 {
  transform: translate(-50%, -50%) scale(1);
}

#tree.reverse h1 {
  transform: translate(-50%, -50%) scale(1.6);
}

#tree.animate img {
  object-fit: contain;
  transform: translateY(20%) scale(1.3);
}

#tree.reverse h1 {
  right: -50%;
}

#tree.reverse img {
  object-fit: contain;
  transform: translateY(0) scale(0.3);
}

@media (max-width: 1100px) {
  #tree {
    height: auto;
    transition: none;
    overflow: hidden;
    margin-top: 7rem;

  }

  #tree img {
    height: 100% !important;
    width: 100% !important;
    transform: none !important;
    transition: none;
  }

  #tree h1 {
    white-space: normal;
    right: 50%;
    top: 30%;
    transition: none;
  }
}

.modula-item-content img:hover {
  transform: scale(1.5) !important;
}

.wpcf7 form .wpcf7-response-output {
  font-family: "Inter";
  font-size: 1rem;
  font-weight: 500;
  border: none;
  margin: 0;
  padding: o;
}

/* Thank You page contact */
#Thank-you-contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 5vh;
  padding: 3vw;
}

#Thank-you-contact img {
  width: 15%;
}

#Thank-you-contact h1 {
  font-family: "Salitia-normal";
  font-size: clamp(60px, 7vw, 80px);
  line-height: clamp(32px, 6vw, 88px);
  font-weight: normal;
  letter-spacing: -0.01em;
  color: #583213;
  text-align: center;
}

#Thank-you-contact p {
  font-family: "Manrope";
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
}
.overflow-hidden {
  overflow: hidden;
}
