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

body {
  font-family: "Quicksand", sans-serif;
  background-color: #ffffff;
  color: #333;
  padding-top: 160px;
  overflow-x: hidden;
}

.header-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background-color: #ffffff;
  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; /* spacing between title and call-to-action */
}

.header-right {
  justify-content: flex-end;
  align-items: center;
  gap: 60px; /* 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: 160px;
  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: #ffffff;
  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", sans-serif;
  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: 'playfair display';
  font-weight: 900;
  font-size: 60px;
  color: #5e2a2a;
  margin: 0;
  white-space: nowrap;
}

.main-content {
  font-size: 18px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: #5e2a2a;
  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;
}

.fancy-every {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-size: 1.4em;
  color: #5e2a2a;
  letter-spacing: 1px;
}

.main-content-box-text {
  font-size: 22px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  letter-spacing: 0.5px;
  line-height: 1.5;
  color: #5e2a2a;
  padding-top: 0;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-content-box-header {
  font-size: 38px;
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-style: normal; /* ensure not italic */
  color: #5e2a2a;
  padding-top: 0;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5px;
}

.main-content-box-header-need {
  font-size: 29px;
  font-family: "Merriweather", serif;
  font-weight: 400;
  font-style: normal; /* ensure not italic */
  color: #5e2a2a;
  padding-top: 0;
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5px;
}

.contact-box {
  position: fixed;
  bottom: 80px;
  right: 40px;
  background-color: #5e2a2a;
  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;
}

.decor-img {
  height: 350px;
  padding: 5px;
  width: auto;
  object-fit: cover;
  border-radius: 20px;
  margin-top: 10px;
}

/* Footer Bar Styles */
.footer-wrapper {
  width: 100%;
  display: flex;
  justify-content: center; /* centers the inner .footer-buttons */
}

.footer-buttons {
  display: flex;
  justify-content: center; /* ensures buttons are centered inside this container */
  gap: 40px; /* space between buttons */
  flex-wrap: wrap; /* wrap on small screens */
}

.footer-button {
  background-color: #f0efeb;
  color: #5e2a2a;
  text-decoration: none;
  padding: 15px 25px;
  border-radius: 8px;
  font-size: 18px;
  font-family: "Crimson Text", serif;
  text-align: center;
  display: inline-block;
}

.footer-button:hover {
  background-color: #e8e2db;
  transform: translateY(-3px);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

.price {
  font-family: "Source Sans Pro", sans-serif;
}

.fancy-every.our-services {
  font-size: 40px;
}













/* =========================================================
   GALLERY (Center carousel rows + consistent sizing)
   ========================================================= */
.gallery-wrapper {
  width: 100%;
  padding: 120px 20px 80px; /* reduced header offset */
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  background: #ffffff;
}

.gallery-title {
  font-family: "Tangerine", cursive
  font-weight: 900;
  font-size: 200px;
  color: #5e2a2a;
  text-align: center;
}

.carousel-label {
  width: min(1200px, 100%);
  font-family: 'Tangerine', cursive;
  font-size: 50px;
  color: #5e2a2a;
  text-align: left;
  padding: 0 6px;
}

/* Center the row container */
.carousel-row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: stretch;      /* ✅ allow tall children */
  justify-content: center;
  padding: 12px 0;           /* ✅ give vertical breathing room */
}

/* Center the scrolling track */
.carousel-track {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;      /* ✅ don't constrain height */
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible;       /* ✅ prevent vertical clipping */
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0;                /* ✅ remove vertical padding that can feel like “short” */
}


.carousel-track::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.carousel-track img {
  flex: 0 0 auto;
  height: 420px;        /* 🔥 taller */
  aspect-ratio: 2 / 3;  /* portrait card */
  width: auto;
  object-fit: cover;    /* ✅ consistent “full” cards, but will crop landscapes */
  border-radius: 18px;
  display: block;
}

/* Arrow buttons (symmetric) */
.carousel-btn {
  border: none;
  background: rgba(255, 255, 255, 0.95);
  color: #5e2a2a;
  font-size: 26px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.carousel-btn.left {
  left: -24px;
}

.carousel-btn.right {
  right: -24px;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.08);
}

/* =========================================================
   SMALL LAPTOP
   ========================================================= */
@media (max-width: 1920px) {
  /* body { font-size: 80%; } */

  .main-content {
    font-size: 18px;
  }

  .footer-button {
    padding: 12px 20px;
    font-size: 14px;
  }

  .title {
    font-size: 2.8rem;
  }

  .footer-buttons {
    padding-top: 20px;
  }

  .flower-icon {
    width: 100px;
    height: 25px;
  }

  .contact-box {
    bottom: 80px;
    right: 10px;
    padding: 20px;
    border-radius: 20px;
    font-weight: 500;
  }
}

/* =========================================================
   IPAD / TABLET
   ========================================================= */
@media (max-width: 1024px) {
  body {
    padding-top: 80px;
    padding-bottom: 120px; /* space under footer */
  }

  .header-bar {
    height: 80px;
    padding: 0 10px;
  }

  .header-center {
    flex-direction: column;
    gap: 5px;
  }

  .sub-header-bar {
    top: 80px; /* was 120px */
  }

  .title {
    font-size: 1.8rem;
  }

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

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

  .decor-img {
    width: 100%;
    height: auto;
    max-height: 200px;
    padding: 1px;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 10px;
  }

  .flower-icon {
    width: 120px;
    height: auto;
    padding-left: 10px;
  }

  .contact-box {
    bottom: 80px;
    right: 10px;
    padding: 20px;
    border-radius: 20px;
    font-weight: 500;
  }

  .footer-buttons {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
  }

  .footer-button {
    width: 100%;
    box-sizing: border-box;
  }

  /* Gallery adjustments */
  .gallery-wrapper {
    padding: 160px 16px 70px;
    gap: 32px;
  }

  .gallery-title {
    font-size: 200px;
  }

  .carousel-track img {
    width: 320px;
    aspect-ratio: 2 / 3;
    height: auto; /* IMPORTANT */
  }
}

/* =========================================================
   MOBILE PHONE
   ========================================================= */
@media (max-width: 768px) {
  body {
    padding-top: 80px;
    padding-bottom: 120px;
    overflow-x: hidden; /* prevent horizontal scrolling */
  }

  .header-bar {
    height: 80px;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
  }
  .carousel-label {
    font-size: 35px !important;
    line-height: 1.2;
  }

  .header-center {
    flex-direction: column;
    gap: 5px;
  }

  .sub-header-bar {
    top: 80px;
    width: 100%;
    box-sizing: border-box;
  }

  .title {
    font-size: 1.8rem;
  }

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

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

  .decor-img {
    width: 100%;
    height: auto;
    max-height: 180px;
    padding: 1px;
    object-fit: cover;
    border-radius: 20px;
    margin-top: 10px;
  }
  .the-experience {
    font-size: 36px;
    white-space: normal; /* allows wrapping if needed */
  }
  .contact-box {
    bottom: 10px;
    right: 10px;
    padding: 10px;
    font-size: 13px;
    width: calc(100% - 20px);
    max-width: 95vw;
    border-radius: 20px;
    justify-content: center;
    box-sizing: border-box;
  }

  .flower-icon {
    width: 50px;
    height: 40px;
    padding-left: 40px;
    margin: 0;
  }

  .footer-buttons {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .footer-button {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

  /* Ensure sidebar doesn't cause overflow */
  .sidebar {
    width: 100%;
    max-width: 250px;
    left: -100%;
    transition: left 0.3s ease;
  }

  .sidebar.active {
    left: 0;
  }

  /* Gallery adjustments */
  .gallery-wrapper {
    padding: 160px 14px 70px;
    gap: 28px;
  }

  .gallery-title {
    font-size: 50px;
  }


  .carousel-track {
    max-width: 100%;
  }

  .carousel-track img {
    width: 280px;
    aspect-ratio: 2 / 3;
    height: auto; /* IMPORTANT */
  }

  .carousel-btn.left {
    left: -10px;
  }

  .carousel-btn.right {
    right: -10px;
  }
}

/* =========================================================
   SMALL MOBILE
   ========================================================= */
@media (max-width: 480px) {
  .title {
    font-size: 1.4rem;
  }
  .the-experience {
    font-size: 36px;
    white-space: normal; /* allows wrapping if needed */
  }
  .call-to-action {
    font-size: 10px;
    padding: 5px 8px;
  }

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

  .flower-icon {
    width: 60px;
    height: auto;
    padding-left: 20px;
    margin: 0;
  }

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

  /* Gallery adjustments */
  .gallery-title {
    font-size: 200px;
  }

  .carousel-label {
    font-size: 35px !important;
  }
  .carousel-track img {
    width: 250px;
    aspect-ratio: 2 / 3;
    height: auto; /* IMPORTANT */
  }
}
/* ===== CAROUSEL OVERRIDE (paste at VERY bottom) ===== */

.carousel-row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  overflow: visible; /* do not clip tall items */
}

.carousel-track {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: visible; /* important */
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Make images TALL and prevent cropping */
.carousel-track img {
  flex: 0 0 auto;
  height: min(60vh, 520px);  /* tall on screen */
  width: auto;               /* don't force width */
  object-fit: contain;       /* SHOW FULL IMAGE (no cut off) */
  background: #ffffff;       /* optional “letterbox” background */
  border-radius: 18px;
  display: block;
}

/* Responsive height */
@media (max-width: 1024px) {
  .carousel-track img { height: min(55vh, 460px); }
}

@media (max-width: 768px) {
  .carousel-track img { height: min(50vh, 380px); }
}

@media (max-width: 480px) {
  .carousel-track img { height: min(46vh, 320px); }
}
