:root {
  /* Colors */
  --base-dark: #14242D;
  --base-light: #F1EFE9;

  --red: #C7613C;
  --orange: #FFA550;
  --blue: #2891DA;
  --bg: #F9F6F6;
  --cream: #F4F1EC;
  
  --dark-darkest: #4B575C;
  --dark-medium: #838A8B;
  --dark-lightest: #BABCBA;

  --dark: #1a1a18;
  --mid: #6b6860;
  --border: #d8d4cc;
  --selected-bg: #2d2d2a;
  --selected-text: #f4f1ec;
  --tag-bg: #e8e4dd;
  --btn-hover: #3d3d3a;

  /* Fonts */
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-sans: "Calibre-Regular", "Inter", 'DM Sans', system-ui, sans-serif;

  /* Font Sizes - Converted to rem */
  --fz-xxs: 0.75rem;    /* 12px */
  --fz-xs: 0.8125rem;   /* 13px */
  --fz-sm: 0.875rem;    /* 14px */
  --fz-md: 1rem;       /* 16px */
  --fz-lg: 1.125rem;    /* 18px */
  --fz-xl: 1.25rem;     /* 20px */
  --fz-xxl: 1.375rem;    /* 22px */
  --fz-heading: 2rem;   /* 32px */

  /* Components */
  --transition: all 0.25s linear;
}

/* --- 2. Global Styles --- */

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

html, body {
  height: 100vh;
  margin: 0; /* Removes default browser padding/margins */
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  display: none;
}

/* 619px x 416px */

body {
  background-color: var(--cream);
  color: var(--base-dark);
  font-family: var(--font-sans);
  font-size: var(--fz-md);
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */

header {
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: var(--transition);
}

header nav {
  max-width: 30rem;
  margin: 0 auto;
  padding: 0 1.25rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.nav-hidden {
  transform: translateY(-100%);
}

header nav h1 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--dark);
}

#menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 1.1rem;
  padding: 0.375rem;
  border-radius: 4px;
  transition: background 0.15s;
  font-family: var(--font-sans);
  font-weight: 400;
}

/* MAIN */

main {
  max-width: 30rem;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--mid);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  transition: color 0.15s;
  font-family: var(--font-sans);
  border: none;
  background: transparent;
}

.back-link:hover { color: var(--dark); }

#schedule_services {
  padding: 1rem 1.25rem 2rem;
}

#schedule_services h2 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.625rem;
  letter-spacing: -0.02em;
}

#schedule_services > p {
  color: var(--mid);
  font-size: var(--fz-xxs);
  margin-bottom: 0.625rem;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.375rem 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--dark);
  cursor: pointer;
  transition: background 0.15s;
}

.filter-btn:hover { background: var(--tag-bg); }

.section-label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.timezone-note {
  font-size: 0.8rem;
  color: var(--mid);
  margin-bottom: 16px;
}

hr.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

/* FOOTER */

footer {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 1.25rem 1.25rem 1px;
  max-width: 30rem;
  margin: 0 auto;
}

footer h2 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.313rem;
  text-align: right;
}

footer p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.7;
  margin-bottom: 0.625rem;
}

hr {
  border: none;
  border-top: 1px solid var(--border);
}

footer hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}

.social-links {
  display: flex;
  gap: 0.875rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}

.social-links a {
  color: var(--mid);
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.15s;
}

.social-links a:hover { color: var(--dark); }

/* HOME PAGE */

.hero {
  margin-left: 3.438rem;
  max-width: 24.938rem;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero h2 {
  margin: 2.5rem 0px 12.5rem;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--base-dark);
  line-height: 1.2;
  /* text-wrap: balance; */
  width: 15rem;
}

.hero p {
  font-size: var(--fz-xxs);
  margin-right: 1.875rem;
  text-wrap: pretty;
  max-width: 21.5rem;
}

.hero button {
  margin: 1.25rem 0px;
}

.btn-home {
  border: 1px solid var(--base-dark);
  color: var(--base-light);
  background-color: var(--base-dark);
  padding: 0.5rem 1.5rem;
  transition: var(--transition);
}

.btn-home:hover {
  color: var(--base-dark);
  background-color: var(--orange);
}

.btn-home:disabled { 
  cursor: not-allowed;
  background-color: #ccc;
  color: var(--base-dark);
  opacity: 0.6;
}
.btn-home:disabled:hover { text-decoration: none;}


.home-img-ctn {
  width: 100%;
  overflow: hidden;
  height: 50vh;
}

.home-img-ctn img {
  width: 100%;
  height: 100%;
  object-fit: cover;     
  object-position: center; 
} 

/* SERVICE SECTION - HOME*/

#services {
  display: flex;
  flex-direction: column;
}

/* #services h2 {
  margin: 1.875rem 1rem;
  font-size: var(--fz-heading);
  font-weight: 400;
  font-family: var(--font-serif);
} */

#service-card-ctn {
  margin: 2.5rem 0;
  padding: 2.5rem 0 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.service-card {
  width: 80%;
  max-width: 20rem;
  margin: 0px auto 2.5rem;
}

.service-card img {
  width: 100%;
  display: block;
}

.card {
  background-color: var(--base-light);
  padding: 1rem;
}

.card h3 {
  margin: 0;
  font-weight: 350;
  font-family: var(--font-sans);
  font-size: 1.875rem;
}

.card button {
  width: 100%;
}

.card button:hover {
  text-decoration: underline;
}

.card p {
  font-weight: 250;
  margin: 0.6rem 0;
}

.show {
  display: none;
}

.base-light {
  color: var(--base-light);
}

/* EXPERIENCE SECTION - HOME */

#experiences hr,
.cart-hr {
  width: 90%;
  margin: 0px auto 1.875rem;
}

#experiences h2 {
  font-size: 26px;
  font-weight: 400;
  font-family: var(--font-serif);
  text-align: center;
}

#experiences button {
  margin: 0;
  margin-left: 1rem;
  font-size: var(--fz-sm);
  border: none;
  background-color: transparent;
  transition: var(--transition);
}

#experiences button:hover {
  color: var(--orange);
  transform: scale(1.05);
}

#channel {
  background-color: var(--dark-lightest);
  padding: 25vh 0;
  margin: 0.625rem;
  text-align: center;
  margin-bottom: 1.875rem;
}

#channel p{
  font-size: var(--fz-xs);
} 

/* CONTACT SECTION - HOME */

#contact-us {
  background-color: var(--cream);
  padding-bottom: 1.5rem;
}

#ft {
  position: relative;
  display: flex;
  align-items: flex-start; 
  padding: 1rem;
  overflow: visible;
  margin-bottom: 11rem;
  /* margin: 0px auto 12.5rem;
  max-width: 20rem; */
}

#ft h2 {
  width: 50%;
  font-weight: 200;
}

#leaf-img {
  width: 50%;
  height: 17.5rem;              
  object-fit: cover;
  transform: translateY(4.375rem); 
  flex-shrink: 0;
  padding: 0 0.625rem;
  z-index: 1;
}

#desert-img {
  position: absolute;
  bottom: 0px;
  transform: translateY(8.125rem);
  width: 60%;
  z-index: 2;
}

/* CONTACT SECTION - HOME */

#my-form {
  display: flex;
  flex-direction: column;
  padding: 0px 1.25rem;
  font-weight: 200;
}

#my-form input, 
#my-form textarea {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--base-dark);
  margin: 0.6rem 0 1.2rem 0;
  font-weight: 200;
  font-family: var(--font-sans);
  transition: box-shadow 0.3s ease;
  padding:0 0 0.3rem 0.5rem;
  font-size: var(--fz-xs);
  resize: none;
}

#my-form input:focus,
#my-form input:hover,
#my-form textarea:hover,
#my-form textarea:focus {
  outline: none;
  box-shadow: 0 1px 0 0 #000; 
}

.btn-home-b {
  border: 1px solid var(--base-dark);
  color: var(--base-light);
  background-color: var(--base-dark);
  padding: 0.625rem;
  transition: var(--transition);
  margin-top: 0;
}

.btn-home-b:hover {
  border: 1px solid var(--base-dark);
  color: var(--base-dark);
  background-color: transparent;
  transform: scale(1.02);
}

/* honeypot */
 .honeyp {
  position: absolute;
  left: -9999px;
}

/* CALENDAR PAGE */

.time-date {
  margin-bottom: 2rem;
}

.calendar { margin-bottom: 1rem; }

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.875rem;
}

.cal-header span {
  font-family: var(--font-serif);
  font-size: var(--fz-md);
  font-weight: 700;
}

.cal-nav {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 0.9rem;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: background 0.15s;
}

.cal-nav:hover { background: var(--tag-bg); }
.cal-nav:disabled { color: var(--border); cursor: default; }
.cal-nav:disabled:hover { background: none; }

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.125rem;
}

.cal-day-name {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--mid);
  padding-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.cal-day {
  text-align: center;
  padding: 0.438rem 0.125rem;
  font-size: 0.88rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
  user-select: none;
}

.cal-day:hover:not(.empty):not(.past) { background: var(--tag-bg); }

.cal-day.empty, .cal-day.past {
  color: var(--border);
  cursor: default;
}

.cal-day.today { font-weight: 700; color: var(--dark); }

.cal-day.selected {
  background: var(--selected-bg);
  color: var(--selected-text);
  font-weight: 600;
  border-radius: 6px;
}

/* TIME SLOTS - CALENDER */

.times-section { margin-bottom: 1.75rem; }

.times-heading {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--mid);
  margin-bottom: 1.25rem;
}

.time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 1rem;
}

.time-slot {
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 6px;
  padding: 0.625rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--dark);
  cursor: pointer;
  text-align: center;
  transition: background 0.12s, border-color 0.12s, color 0.12s;
}

/* Style the label wrapper when the checkbox inside it is checked */
.time-slot:has(input:checked) {
  background: var(--selected-bg);
  color: var(--selected-text);
  border-color: var(--selected-bg);
  font-weight: 500;
}

/* Optional: Hide the actual tiny checkbox to make it look like a button grid */
.time-slot input {
  display: none;
}

.time-slot:hover { background: var(--tag-bg); border-color: var(--mid); }

/* .time-slot.selected {
  background: var(--selected-bg);
  color: var(--selected-text);
  border-color: var(--selected-bg);
  font-weight: 500;
} */

.show-all-btn {
  display: block;
  margin: 0.875rem auto 0;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  color: var(--mid);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color 0.15s;
}

.show-all-btn:hover { color: var(--dark); }

/* SERVICE DETAILS - CALENDER */

#service-details {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
  margin-bottom: 1.75rem;
}

#service-details h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
}

.detail-row {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.88rem;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.detail-label {
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.detail-value { color: var(--dark); font-weight: 400; }

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.313rem;
  background: var(--tag-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.188rem 0.625rem;
  font-size: 0.78rem;
  color: var(--dark);
}

.tag .dot {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background: #6b9e6e;
}

.less-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 0.875rem;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  color: var(--mid);
  cursor: pointer;
  transition: color 0.15s;
}

.less-details-btn:hover { color: var(--dark); }

/* NEXT BUTTON - CALENDER */

.next-btn {
  display: block;
  width: 100%;
  background: var(--selected-bg);
  color: var(--selected-text);
  border: none;
  border-radius: 8px;
  padding: 0.938rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
  letter-spacing: 0.01em;
}

.next-btn:hover { background: var(--btn-hover); }

.next-btn:disabled {
  background: var(--border);
  color: var(--mid);
  cursor: default;
}

/* SELECTION SUMMARY - CALENDER */

.selection-summary {
  background: var(--tag-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--mid);
  margin-bottom: 1rem;
  display: none;
}

.selection-summary.visible { display: block; }
.selection-summary strong { color: var(--dark); }

/* BOOKING-FORM PAGE */

#booking-form {
  padding: 1rem 1.25rem 2rem;
}

#booking-form,
#booking-form form {
  display: flex;
  flex-direction: column;
}

#booking-form h2 {
  font-size: var(--fz-xl);
  font-weight: 400;
  font-family: var(--font-serif);
  margin-top: 0.625rem;
}

#client-form input,
#client-form textarea {
  background: transparent;
  border: 1px solid var(--base-dark);
  margin: 0.625rem 0 1.25rem;
  resize: none;
  font-weight: 200;
  font-family: var(--font-sans);
  transition: box-shadow 0.3s ease;
  padding: 0.5rem;
  width: 100%;
}

#client-form input:focus,
#client-form input:hover,
#client-form textarea:hover,
#client-form textarea:focus {
  outline: none;
  box-shadow: 0 0 0 1px var(--dark-darkest);
}

#client-form label {
  font-weight: 350;
  text-transform: uppercase;
  font-size: var(--fz-xs);
}

#booking-details-ctn {
  display: flex;
  justify-content: space-between;
  padding: 0.625rem;
  font-family: var(--font-serif);
}

#details-ctn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

#booking-details-ctn {
  display: flex;
  flex-direction: column;
  padding: 0.625rem 0;
}

#booking-details {
  font-size: 14px;
  font-family: var(--font-sans);
  font-weight: 300;
  padding-left: 0.625rem ;
}

#booking-details-ctn h3 {
  font-weight: 300;
}

#booking-details-ctn button {
  background: transparent;
  border: none;
  padding: 0.625rem;
  border-radius: 2px;
  font-size: var(--fz-md);
}

#booking-details-ctn button:hover {
  background: var(--tag-bg);
}

#payment-details-total {
  margin: 0.625rem 0;
  display: flex;
  justify-content: space-between;
}

.full {
  margin-top: 1.875rem;
  width: 100%;
  padding: 0.625rem;
  color: var(--cream) !important;
}

.red {
  color: red;
}

/* PAY PAGE */

#pay {
  padding: 1.75rem 1.25rem 2rem;
}

.stripe-ctn {
  padding: 1.8rem 1.25rem 0;
}

/* SUCCESS PAGE */

#success {
  padding: 1.75rem 1.25rem 3rem;
}

.customer-success {
  text-align: center;
}

.customer-success h2 {
  margin-bottom: 0.625rem;
}

.success-card {
  display: flex;
  justify-content: space-evenly;
  margin: 1.25rem 0;
}

.success-card img {
  width: 40%;
}

.success-card-info {
  width: 50%;
}

#success-service-name {
  margin-bottom: 0.625rem;
  font-weight: 600;
  font-size: var(--fz-md);
}

.success-card-info p {
  font-size: var(--fz-xs);
  font-weight: 300;
}

#google-cal {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fz-xs);
  font-weight: 300;
  margin-top: 0.625rem;
}

#gg-cal {
  background-color: transparent;
  border: none;
  text-decoration: underline;
  color: inherit;
  font-size: inherit;
  cursor: pointer;
  font-weight: inherit;
  text-align: left;
}

#success-confirmation {
  border-top: 2px solid var(--bg);
  border-bottom: 2px solid var(--bg);
  margin-bottom: 1rem;
}

.success-note {
  border-bottom: 2px solid var(--bg);
  padding: 1rem 0;
  margin-bottom: 1rem;
}

#note {
  font-size: var(--fz-md);
  font-weight: 300;
}

.subtotal {
  display: flex;
  justify-content: space-between;
}

.total {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  font-size: var(--fz-xl);
  border-top: 2px solid var(--bg);
  padding: 1rem 0;
  margin-top: 1rem;
}

.success-hr {
  margin: 1.25rem 0;
}

.address-card {
  margin-bottom: 0.25rem;
  font-weight: 400;
  font-size: var(--fz-sm);
}

.address-card h3 {
  margin-bottom: 10px;
}

.continue-browsing {
  margin-top: 5rem;
  text-decoration: underline;
  text-align: center;
}

/* MODAL MENU */

.modal {
  background-color: var(--cream);
  position: fixed;
  top: 0;
  left: 50%;         /* center horizontally */
  transform: translateX(-50%); /* true horizontal centering */
  z-index: 999;
  height: 100%;
  width: 101%;
  text-align: right;
}

#menu {
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.875rem;
  align-items: center;
}

/* The Close Button */
.close {
  margin-right: 1.25rem;
  margin-top: 1.25rem;
  font-size: medium;
  color: var(--base-dark);
}

.close:hover,
.close:focus {
  color: var(--dark-medium);
  text-decoration: none;
  cursor: pointer;
}

.hidden {
  display: none;
}

@media (min-height: 1100px) {

  #schedule_services {
    margin-top: 60px;
  }

  #booking-form {
    margin-top: 60px;
  }
}

@media (min-width: 1024px) and (max-width: 1265px) {
  .card h3 {
    font-size: 26px !important;
  }

  .card p {
    font-size: var(--fz-md) !important;
  }

  #contact-us {
    gap: 4rem !important;
  }

  .hero {
    margin-left: 2.25rem !important;
  }
}

@media (min-width: 1024px) {
  header nav {
    max-width: 100%;
    padding: 0 2.25rem;
    border: none;
    height: 4vh;
    min-height: 2.8rem;
  }

  header nav h1 {
    font-size: var(--fz-xxl);
    font-weight: 350;
    color: var(--dark);
  }

  #menu-toggle {
    padding: 0.375rem 1rem;
    font-size: var(--fz-xl);
    font-weight: 400;
    color: var(--dark);
  }

  #menu-toggle:hover { background: var(--border); }

  main {
    max-width: 100%;
  }

  footer {
    max-width: 100%;
    border-top: 20px solid var(--bg);
    padding: 2.5rem 2% 1px;
  }

  #hero {
    display: flex;
    justify-content: space-between;
    height: 95.8vh;
  }

  .home-img-ctn{
    width: 50%;
  }

  .hero {
    margin-left: 6.25rem;
    height: 100%;
  }

  .hero h2 {
    font-size: 2.375rem;
    width: 100%;
  }

  .hero p {
    font-size: var(--fz-sm);
    max-width: 100%;
  }

  .hero button {
    margin: 1.3rem 0px 2.5rem;
  }

  .home-img-ctn {
    height: 100%;
  }

  .btn-home:disabled {
    color: var(--dark-darkest);
    border: none;
  }

  .btn-home,
  .hero button {
    font-size: var(--fz-sm);
    color: var(--bg);
  }

  #my-form input, #my-form textarea {
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
  }

  /* service */

  #service-card-ctn {
    display: grid;
    grid-template-columns: auto auto auto;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 100px 100px 50px;
  }

  #services h2 {
    /* margin: 50px 1.5rem -0.625rem;
    font-size: 1.8rem; */
    display: none;
  }

  .service-card {
    margin: 100px auto;
    width: 90%;
    max-width: 32rem;
  }

  .card h3 {
    margin-bottom: 0.5rem;
  }

  .card p {
    font-weight: 300;
    font-size: var(--fz-lg);
    margin: 1rem 0;
  }

  .dispose {
    display: none;
  }

  .show {
    display: inline;
  }

  /* section experience */

  #experiences h2 {
    text-align: left;
    margin: 0px 2.25rem 40px;
    font-size: 1.8rem;
  }

  #channel {
    margin: 1.25rem;
    padding: 35vh 0px;
  }

  #channel p {
    font-size: var(--fz-sm);
  }

  /* section contact */

  #contact-us {
    display: flex;
    padding: 1.875rem 1.25rem;
    justify-content: center;
    gap: 15rem;
  }

  #ft {
    width: 30rem;
    margin-bottom: 12.5rem;
  }

  #my-form {
    max-width: 25rem;
  }

  .my-form {
    width: 26rem;
    margin: auto 0px;
    /* padding: 0 4.375rem;
    margin: auto;
    margin-right: 3.125rem; */
  }

  #my-form input, 
  #my-form textarea {
    margin: 1rem 0 1.875rem 0;
    padding:0 0 0.5rem 0.5rem;
}

  #leaf-img {
    height: 25rem;
    width: 250px;
    transform: translateY(2.5rem);
  }

  #desert-img {
    width: 15rem;
    right: 14rem;
    transform: translateY(10rem);
  }

  #ft h2 {
    font-size: var(--fz-heading);
  }

  .btn-home-b {
    font-size: var(--fz-md);
  }

  /* Calender Page */

  #calender-main {
    display: flex;
    justify-content: center;
    min-height: 95vh;     /* or specific height */
  }

  #schedule_services {
    position: relative;
    padding: 1.75rem 1.25rem 3.75rem;
    width: 80%;
    max-width: 100rem;
  }

  #service-details {
    margin-top: 35px;
  }

  .time-date {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
  }

  #calendar {
    display: flex;
    justify-content: space-between;
  }

  .cal-ctn {
    width: 60%;
  }

  #cal-inner {
    display: flex;
    justify-content: space-between;
  }

  .calendar {
    width: 50%;
  }

  .times-section {
    width: 100%;
  }

  .time-grid {
    margin-top: 0;
  }

  #time-slot-test {
    width: 40%;
  }

  .service-ctn {
    width: 30%;
  }

  .filter-row {
    margin-bottom: 4rem;
  }

  #schedule_services h2 {
    margin-top: 3.125rem;
  }

  /* Booking Form Page */

  #form-main {
    display: flex;
    justify-content: center;
    min-height: 95vh;     /* or specific height */
  }

  #booking-form {
    position: relative;
    padding: 1.75rem 1.25rem 3.75rem;
    width: 80%;
    max-width: 100rem;
  }

  #booking-form form {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    margin-top: 4rem;
  }

  #client-book {
    width: 20%;
  }

  #client-form {
    width: 45%;
  }

  .form-grid {
    display: grid;
    grid-template-columns: auto auto;
    gap: 0 5rem;
  }

  #booking-form h2 {
    margin-top: 1.5rem;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.15;
    /* margin-bottom: 0.625rem; */
    letter-spacing: -0.02em;
  }

  #client-form label {
    font-weight: 350;
    font-size: 0.78rem;
    /* color: var(--mid); */
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  #client-form input, #client-form textarea {
    border: 1px solid var(--mid);
    padding: 0.625rem;
  }

  #booking-details-ctn {
    display: flex;
    flex-direction: column;
    padding: 0.625rem 0;
    cursor: pointer;
  }

  #booking-details {
    font-size: 14px;
    font-family: var(--font-sans);
    font-weight: 300;
    padding-left: 0.625rem ;
  }

  /* Pay Page */

  #pay-main {
    display: flex;
    justify-content: center;
    min-height: 95vh;     /* or specific height */
  }

  #pay {
    position: relative;
    padding: 1.75rem 1.25rem 3.75rem;
    width: 80%;
    max-width: 100rem;
  }

  .pay-hr {
    margin: 1rem 0 4rem;
  }

  .stripe-ctn {
    width: 50%;
    min-width: 0;
    margin: auto;
    padding: 0.625rem 1.25rem;
    max-height: 78vh;   /* set your limit */
    overflow-y: auto;    /* scroll instead of expanding page */
  }

  .stripe-ctn::-webkit-scrollbar {
    display: block;
    width: 0.375rem;
  }

 .stripe-ctn::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
  }

    /* Success Page */
  #success-main {
    display: flex;
    justify-content: center;
    min-height: 95vh;     /* or specific height */
  }

  #success {
    position: relative;
    margin-top: 2rem;
    padding: 1.75rem 1.25rem 3.75rem;
    width: 60%;
    max-width: 100rem;
  }
  
  .success-card-info h3 {
    margin-bottom: 0.625rem;
  }

  .success-card img {
    width: 11.5rem;
  }

  .success-card {
    justify-content: start;
    gap: 1.25rem;
    margin: 2.5rem 0px;
  }

  #google-cal {
    display: none;
  }

  #google-cal button {
    font-size: var(--fz-md);
  }

  #google-cal,
  .success-card-info p {
    font-size: var(--fz-sm);
  }

  #success-service-name {
    font-size: var(--fz-lg);
  }

  #success-confirmation {
    display: flex;
    justify-content: space-between;
    padding: 10px 1rem;
    border-top: 2px solid var(--bg);
    border-bottom: 2px solid var(--bg);
    font-size: var(--fz-sm);
  }

  .success-note {
    width: 50%;
    border-bottom: none;
  }

  .total-ctn {
    width: 30%;
  }

  .total {
    margin-top: 10px;
    padding-top: 10px;
  }

  #address-ctn {
    display: flex;
    justify-content: start;
    gap: 10rem;
    margin-top: 2.5rem;
  }

  .address-card h3 {
    margin-bottom: 10px;
  }

  .continue-browsing {
    margin-top: 8rem;
    text-decoration: underline;
    text-align: center;
  }

  #wieght {
    font-weight: 400;
  }

  /* #google-cal {
    margin-top: 2.5rem;
  } */
}

