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

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #ffff;
  color: #333;
  padding-top: 120px;
  overflow-x: hidden;
}

.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-color: #ffff;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  z-index: 1000;
}

.header-left, .header-center, .header-right {
  flex: 1;
  display: flex;
  align-items: center;
}

.header-center {
  justify-content: center;
  gap: 20px; /* Added spacing between title and call-to-action */
}

.header-right {
  justify-content: flex-end;
  align-items: center;
  gap: 60px; /* Adds spacing between CTA and logo */
}

.title {
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 3.5rem;
  color: #5e2a2a;
}

.logo-img {
  height: 100%;
  max-height: 120px;
  width: auto;
  object-fit: contain;
}

.hamburger {
  width: 30px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1101;
}

.hamburger span {
  display: block;
  height: 4px;
  background-color: #5e2a2a;
  border-radius: 2px;
}

.sidebar {
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: #ffff;
  box-shadow: 2px 0 5px rgba(0,0,0,0.2);
  padding-top: 120px;
  transition: left 0.3s ease;
  z-index: 1100;
  font-family: 'Quicksand';
  font-size: 25px;
  color: #5e2a2a;
}

.sidebar ul {
  list-style: none;
  padding: 20px;
}

.sidebar ul li {
  margin-bottom: 20px;
}

.sidebar ul li a {
  text-decoration: none;
  color: #5e2a2a;
  font-size: 25px;
}

.sidebar.active {
  left: 0;
}
.sub-header-bar {
  position: fixed;
  top: 120px;
  left: 0;
  right: 0;
  height: 40px;
  background-color: #ffffff; /* fully opaque white */
  color: #c2a165;
  font-family: 'Crimson Text', serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  z-index: 999;
  animation: fadePulse 3s ease-in-out infinite;
}
@keyframes fadePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.the-experience {
  font-family: 'Tangerine', sans-serif;
  font-weight: 900;
  font-size: 40px;
  color: #5e2a2a;
  padding: 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.main-content {
  font-size: 20px;
  font-family: 'Crimson Text', serif;
  line-height: 1.5;
  color: #ffff;
  padding-top: 0;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-content h2 {
  max-width: 700px;
  margin: 10px auto;
  font-weight: inherit;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
}


.contact-box {
  position: fixed;
  bottom: 80px;
  right: 40px;
  background-color: #e8e2db;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  font-family: 'League Spartan', sans-serif;
  font-weight: 900;
  font-size: 15px;
  color: #000;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.contact-box img {
  width: 50px;
  height: 50px;
}

.call-to-action {
  background-color: rgba(255, 255, 255, 0.9);
  color: #c2a165;
  font-family: 'Crimson Text', serif;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  animation: fadePulse 3s ease-in-out infinite;
  text-align: center;
  white-space: nowrap; /* Prevents text wrapping */
}

@keyframes fadePulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.03);
  }
}

.decorative-boxes {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: -20px;
  margin-bottom: 60px;
}



.beige-box {
  background-color: #e8e2db;
  border-radius: 30px;
  width: 900px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  margin-bottom: 300px;
}

/* RESPONSIVE DESIGN */

@media (max-width: 1920px) {
  body {
    font-size: 80%; /* 20% smaller text */
  }
  .footer-button {
    padding: 12px 20px; /* smaller buttons */
    font-size: 14px; 
  }
  .title {
    font-size: 2.8rem; /* reduce heading sizes */
    }
  .contact-box {
    bottom: 80px;
    right: 10px;
    padding: 20px;
    border-radius: 20px;
    font-weight: 500;
  }
  .about-us-img {
    width: 100%;         /* always fill the container */
    max-width: 380px;    /* default for large screens */
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }

}





@media (max-width: 1024px) {
body {
  padding-top: 80px;
  padding-bottom: 120px; /* 👈 This creates space under the footer */
}

.header-bar {
  height: 80px;
  padding: 0 10px;
}
.sub-header-bar {
  top: 80px; /* was 120px — this pulls it closer to the fixed main header */
}
.header-center {
  flex-direction: column;
  gap: 5px;
}

.title {
  font-size: 1.8rem;
}

.call-to-action {
  font-size: 12px;
  padding: 5px 10px;
}

.logo-img {
  max-height: 50px;
  width: auto;
}

.contact-box {
  bottom: 10px;
  right: 10px;
  padding: 10px;
  font-size: 13px;
  width: calc(100% - 20px);
  border-radius: 20px; /* 👈 Rounded corners */
  justify-content: center;
}

.beige-box {
  width: 95vw;
  max-width: none;
  padding: 20px 15px;
}
  .about-us-img {
      width: 100%;         /* always fill the container */
      max-width: 400px;    /* default for large screens */
      border-radius: 10px;
      margin-bottom: 25px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

 }

@media (max-width: 768px) {
  body {
    padding-top: 80px;
    padding-bottom: 120px; /* 👈 This creates space under the footer */
  }

  .header-bar {
    height: 80px;
    padding: 0 10px;
  }
  .sub-header-bar {
    top: 80px; /* was 120px — this pulls it closer to the fixed main header */
  }
  .header-center {
    flex-direction: column;
    gap: 5px;
  }

  .title {
    font-size: 1.8rem;
  }

  .call-to-action {
    font-size: 12px;
    padding: 5px 10px;
  }

  .logo-img {
    max-height: 50px;
    width: auto;
  }

  .contact-box {
    bottom: 10px;
    right: 10px;
    padding: 10px;
    font-size: 13px;
    width: calc(100% - 20px);
    border-radius: 20px; /* 👈 Rounded corners */
    justify-content: center;
  }

  .beige-box {
    width: 95vw;
    max-width: none;
    padding: 20px 15px;
  }
   }


@media (max-width: 480px) {
  .title {
    font-size: 1.4rem;
  }

  .call-to-action {
    font-size: 10px;
    padding: 5px 8px;
  }

  .decor-text {
    font-size: 48px !important;
  }

  .flower-icon {
    width: 100px;
    padding-left: 5px;
  }

  .main-content h2 {
    font-size: 12px;
  }
}