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

/* Prevent horizontal scrolling */
html, body {
  overflow-x: hidden; /* Prevent horizontal scroll */
  width: 100%; /* Ensure the body doesn’t exceed the screen width */
}

/* Make sure all containers are responsive */
* {
  max-width: 100%; /* Ensure no element exceeds the viewport width */
  box-sizing: border-box; /* Make sure padding and border are included in width */
}



body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #2a2a2a;
  background-color: #f7f0e7;
}


.bodytext {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

.header {
  font-family: "Inria Serif", serif;
  font-weight: 300;
  font-size: 42px;
}

.subhead {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-size: 16px
}

.white-text {
  color: #FAF6ED
}


/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inria+Serif:wght@300&display=swap');

/* HEADER */
.top-header {
  width: 100%;
  padding: 25px 20px 15px;
  position: relative;
  border-bottom: 2px solid rgba(0,0,0,0.25);
  text-align: left;
  display: flex;
  justify-content: space-between;
  z-index: 1; /* Ensure it stays on top of the hero image */
}

.site-title {
  font-size: 28px;
  letter-spacing: 3px;
  font-weight: 300;
  text-align: left;
  position: relative;
  z-index: 1;
}

.contact-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #4c3948;
  color: white;
  padding: 12px 24px;
  font-size: 14px;
  letter-spacing: 3px;
  border-radius: 10px;
  text-decoration: none;
}

.hero-section {
  background-image: url('hero.png'); /* Path to your image */
  background-size: cover;
  background-position: center;
  padding: 150px 20px 120px; /* Increased top padding to make it overlap header */
  text-align: center;
  position: relative;
  top: -100px; /* Moves the hero section up, so it overlaps the header */
  z-index: 0; /* Behind the header */
}

.hero-section .overlay {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2; /* Make sure the text stays above the background image */
}


.hero-heading {
  font-family: "Inria Serif", serif; /* Ensure the correct font is applied */
  font-size: 66px;
  font-weight: 300; /* Set font weight to 300 */
  margin-bottom: 20px;
}


.hero-subheading {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-text {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  max-width: 700px;
  margin: 0 auto;
  font-weight: 400;
}

/* Mobile-first responsiveness for Header */
@media (max-width: 600px) {
  .top-header {
    flex-direction: column; /* Stack the logo and button vertically */
    align-items: center;
    padding: 15px; /* Reduced padding */
  }

  .site-title {
    font-size: 24px; /* Slightly smaller font for mobile */
    margin-bottom: 10px; /* Add space below the title */
  }

  .contact-btn {
    position: relative;
    top: 0;
    right: 0;
    margin-top: 15px; /* Add space between title and button */
  }

  .hero-section {
    top: -0px;
    margin-bottom: 0 !important;
    overflow: hidden;
    position: relative;
  }


}



/* INTRO SECTION (IMAGE + TEXT) */
.intro-section {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.intro-inner {
  max-width: 1300px;
  margin: 0 auto;
  gap: 60px;
  display: flex;
  align-items: flex-start;
}

.intro-image {
  flex: 0 0 35%;
}

.intro-image img {
  width: auto;
  height: auto;
  display: block;
  height: 550px;
}

.intro-content {
  flex: 1;
}

.sub-head {
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 24px;
  font-weight: 300;
}


.intro-welcome {
  font-size: 20px;
  margin-bottom: 16px;
}

.intro-content p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 520px;
}

.btn-primary {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;
  background: #4c3948;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: 3px;
  font-size: 14px;
}

@media (max-width: 600px) {

  .intro-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 20px !important;
  }

  .intro-inner {
    flex-direction: column; /* Stack image and text vertically */
    align-items: center;
    gap: 40px;
  }

  .intro-image {
    flex: 0 0 80%; /* Make image smaller and centered */
    max-width: 100%; /* Ensure it doesn’t overflow */
  }

  .intro-image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .intro-content {
    flex: 1;
    text-align: center;
    max-width: 100%;
  }

  .intro-welcome {
    font-size: 18px; /* Adjust the welcome text */
    margin-bottom: 15px;
  }

  .intro-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 100%;
  }

  .btn-primary {
    padding: 12px 30px; /* Adjust button size for mobile */
    font-size: 14px;
  }
}


/* ===== OVERLAP SECTION ===== */
.overlap-section {
  padding: 100px 40px 140px;
  background: #f7f0e7;
}

.overlap-inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: flex-start;
}

.overlap-text-block {
  background: #3a2737;
  padding: 110px 110px;
  flex: 0 0 72%;
  color: #e6e0e6;
}

.small-label {
  font-size: 13px;
  letter-spacing: 1px;
  margin-bottom: 40px;
  color: #d8d0d8;
}

.overlap-main-text {
  font-size: 34px;
  line-height: 1.4;
  font-weight: 300;
  max-width: 600px;
}

.overlap-image-wrapper {
  flex: 0 0 28%;
  max-width: 340px;
  position: relative;
  margin-left: -160px;
  margin-top: 50px;
}

.overlap-image-border {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid #eae2e0;
  z-index: 1;
}

.overlap-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {

  .overlap-section {
    padding-bottom: 0px !important;
  }
  .overlap-inner {
    flex-direction: column;
  }

  .overlap-text-block {
    flex: 1;
    padding: 60px 40px;
  }

  .overlap-image-wrapper {
    max-width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }

  .overlap-image-border {
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
  }

  .overlap-main-text {
    font-size: 26px;
  }
}

/* ===== ABOUT CALLA SECTION ===== */
.about-calla-section {
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 100px;
  background: #f7f0e7;
}

.about-calla-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.about-calla-image img {
  height: 600px;
  width: auto;
  display: block;
  border-radius: 4px;
}

.about-calla-content {
  flex: 1;
}

.about-calla-heading {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 25px;
  line-height: 1.25;
}

.about-calla-bold {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}

.about-calla-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-calla-info {
  margin-top: 50px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #e1dce4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #3a2737;
  flex-shrink: 0;
}

.info-text {
  max-width: 550px;
  font-size: 16px;
  line-height: 1.5;
  color: #4a3a46;
}

@media (max-width: 600px) {

  .about-calla-section {
    padding: 60px 20px; /* Adjust padding for mobile */
  }

  .about-calla-inner {
    flex-direction: column; /* Stack image and text vertically */
    gap: 40px; /* Add some space between the image and text */
    align-items: center; /* Center align the content */
  }

  .about-calla-image img {
    height: 480px; /* Make the image smaller */
    width: auto;
    border-radius: 4px;
    display: block;
    margin-bottom: 20px; /* Add space below the image */
  }

  .about-calla-heading {
    font-size: 28px; /* Reduce heading size */
    line-height: 1.3;
    text-align: center;
  }

  .about-calla-bold {
    font-size: 18px; /* Adjust bold text size */
    text-align: center;
    margin-bottom: 20px;
  }

  .about-calla-content p {
    font-size: 16px; /* Adjust paragraph text size */
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
    max-width: 100%;
  }

  .about-calla-info {
    margin-top: 20px; /* Adjust spacing between sections */
    display: flex;
    flex-direction: column; /* Stack the info blocks vertically */
    align-items: center;
  }

  .info-icon {
    margin-bottom: 10px; /* Space between the icon and text */
  }

  .info-text {
    font-size: 14px; /* Adjust font size of the info text */
    text-align: center;
    max-width: 100%;
  }
}


/* ===== SUPPORT / EMOTIONS SECTION ===== */
.support-section {
  background-color: #dfdfee;
  padding: 100px 40px;
}

.support-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.support-text {
  flex: 1;
}

.support-heading {
  font-size: 40px;
  line-height: 1.35;
  font-weight: 300;
  margin-bottom: 30px;
}

.support-subheading {
  font-size: 20px;
  margin-bottom: 18px;
}

.support-text p {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 600px;
}

.support-image-frame {
  flex: 0 0 40%;
  max-width: 480px;
  border: 2px solid #c9c7d8;
  padding: 18px;
  background-color: #dfdfee;
}

.support-image-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: #f7f0e7;
  padding: 160px 80px 140px;
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
}

.contact-image-wrapper {
  position: relative;
  width: 330px;
  margin-right: -90px;
  z-index: 3;
}

.contact-image-frame {
  position: absolute;
  top: -18px;
  left: -18px;
  right: -18px;
  bottom: -18px;
  border: 2px solid #dcd7e0;
  z-index: 1;
}

.contact-image {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.contact-box {
  background: #3a2737;
  padding: 80px 90px 110px 180px;
  flex: 0 0 80%;
  color: #f3edf4;
  position: relative;
  z-index: 1;
}

.contact-heading {
  font-size: 38px;
  font-weight: 300;
  margin-bottom: 30px;
}

.contact-columns {
  display: flex;
  gap: 70px;
  margin-bottom: 30px;
}

.contact-left,
.contact-right {
  flex: 1;
}

.contact-box h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.contact-box p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.small-note {
  font-size: 15px;
  opacity: 0.9;
}

.contact-btn-bottom {
  display: inline-block;
  padding: 12px 35px;
  background: #d6d8ea;
  color: #3a2737;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 2px;
  margin-top: 30px;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
  background-color: #DDDFEE;  /* Light purple background */
  padding: 80px 20px;
  text-align: center;
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  color: #3a2737;  /* Dark text for contrast */
  position: relative;
}

.quote-mark {
  font-size: 100px;
  color: #3a2737;
  position: absolute;
  top: -30px;
  font-family: "Inria Serif", serif;
  transform: translateX(-50%);
}

blockquote {
  font-size: 24px;
  line-height: 1.6;
  color: #3a2737;
  margin: 0 auto 20px;
  padding-top: 20px;
  max-width: 700px;
  font-family: "Inria Serif", serif;
  font-weight: 300;
  font-size: 42px;
}

footer {
  font-size: 20px;
  font-weight: 700;
  color: #3a2737;
  text-align: center;
}

@media (max-width: 600px) {

  .support-section {
    padding: 80px 20px; /* Adjust padding for mobile */
  }

  .support-inner {
    flex-direction: column; /* Stack the text and image vertically */
    align-items: center; /* Center align the content */
    gap: 40px; /* Add some space between the text and image */
  }

  .support-text {
    text-align: center; /* Center the text */
    flex: 1;
  }

  .support-heading {
    font-size: 30px; /* Adjust heading size */
    line-height: 1.35;
    font-weight: 300;
    margin-bottom: 20px; /* Add space below the heading */
  }

  .support-subheading {
    font-size: 18px; /* Adjust subheading size */
    margin-bottom: 20px;
  }

  .support-text p {
    font-size: 16px; /* Adjust paragraph text size */
    line-height: 1.5;
    margin-bottom: 16px;
    max-width: 100%;
    text-align: center; /* Center the text */
  }

  .support-image-frame {
    flex: 0 0 80%; /* Adjust image size */
    max-width: 100%; /* Ensure the image doesn't overflow */
    margin-top: 20px; /* Add space between the text and image */
    border: 2px solid #c9c7d8;
    background-color: #dfdfee;
  }

  .support-image-frame img {
    width: 100%; /* Make the image responsive */
    height: auto;
    display: block;
  }
}


@media (max-width: 600px) {

  .quote-section {
    padding: 60px 20px; /* Adjust padding for mobile */
  }

  .quote-container {
    padding: 40px 20px; /* Adjust internal padding */
    text-align: center; /* Center align the content */
  }

  .quote-mark {
    font-size: 80px; /* Scale down the quote mark */
    position: relative;
    top: -20px; /* Adjust positioning to make it look balanced */
  }

  blockquote {
    font-size: 20px; /* Adjust font size for the quote */
    line-height: 1.5;
    max-width: 100%;
    margin: 0 auto 20px;
    padding-top: 20px;
    font-family: "Inria Serif", serif;
    font-weight: 300;
    font-size: 32px; /* Adjust font size for readability */
  }

  footer {
    font-size: 18px; /* Adjust footer text size */
    font-weight: 700;
  }
}


/* ===== FINAL SECTION ===== */
.final-section {
  background-color: #3a2737;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  color: #f3edf4;
}

.final-left {
  flex: 1;
  font-size: 16px;
  text-align: left;
}

.final-middle {
  flex: 2;
  text-align: center;
}

.final-right {
  flex: 1;
  text-align: right;
}

.final-left p {
  font-size: 14px;
  font-weight: normal;
}

.final-middle h1 {
  font-size: 48px;
  font-weight: 700;
  margin: 0;
}

.final-middle hr {
  width: 100px;
  margin: 10px auto;
  border: 1px solid #dcd7e0;
}

.final-middle .tagline {
  font-size: 16px;
  font-weight: normal;
  margin-top: 10px;
}

.final-right .book-btn,
.final-right .book-btn:link,
.final-right .book-btn:visited,
.final-right .book-btn:hover,
.final-right .book-btn:active,
.final-right .book-btn:focus {
  display: inline-block;
  padding: 16px 34px;
  background: #d6d8ea;
  color: #3a2737;
  border-radius: 12px;
  text-decoration: none;
  text-decoration-skip-ink: none;
  font-size: 16px;
  letter-spacing: 2px;
  outline: none;
}

@media (max-width: 600px) {

  .contact-section {
    padding: 20px 20px 20px; /* Adjust padding for mobile */
  }

  .contact-inner {
    margin: 0 auto; /* Center the content */
    max-width: 1200px; /* Limit the width */
    position: relative;
    text-align: center; /* Center-align all child elements */
    display: block; /* Change to block-level display to stack the image and text */
  }

  .contact-image-wrapper {
    width: 100%; /* Ensure image takes full width */
    margin-bottom: 20px; /* Add space below the image */
    display: block; /* Ensure the image container behaves like a block element */
  }

  .contact-image-frame {
    width: 100%; /* Ensure the frame takes full width */
    padding: 18px;
    border: 0px !important
  }

  .contact-image {
    width: 100%; /* Ensure the image fits within the frame */
    height: auto;
    display: block;
    object-fit: cover; /* Ensure the image covers the area without stretching */
  }

  .contact-box {
    width: 100%; /* Ensure the contact box takes up full width */
    padding: 40px 20px; /* Adjust padding inside the box */
    background: #3a2737;
    color: #f3edf4;
  }

  .contact-heading {
    font-size: 28px; /* Adjust heading size for mobile */
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
  }

  .contact-columns {
    display: block; /* Stack the contact columns vertically */
    gap: 30px; /* Add space between the columns */
    margin-bottom: 30px;
  }

  .contact-left,
  .contact-right {
    flex: 1;
    text-align: center; /* Center-align the text */
  }

  .contact-box h3 {
    font-size: 18px; /* Adjust header size */
  }

  .contact-box p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .small-note {
    font-size: 14px; /* Adjust small note size */
  }

  .book-btn,
  .book-btn:link,
  .book-btn:visited,
  .book-btn:hover,
  .book-btn:active,
  .book-btn:focus {
    display: inline-block;
    padding: 16px 40px;
    background: #d6d8ea;
    color: #3a2737;
    border-radius: 12px;
    text-decoration: none;
    text-decoration-skip-ink: none;
    font-size: 16px;
    letter-spacing: 2px;
    margin-top: 30px;
    outline: none;
  }
}

@media (max-width: 600px) {

  .final-section {
    padding: 40px 20px; /* Adjust padding for mobile */
    flex-direction: column; /* Stack the sections vertically */
    text-align: center; /* Center-align the content */
  }

  .final-left,
  .final-middle,
  .final-right {
    flex: 1;
    text-align: center; /* Center-align the content in all three sections */
    margin-bottom: 20px; /* Add space between sections */
  }

  .final-left p,
  .final-middle h1,
  .final-middle .tagline {
    font-size: 16px; /* Reduce font size for mobile */
    text-align: center;
  }

  .final-middle h1 {
    font-size: 24px; /* Adjust heading size for mobile */
    margin-bottom: 10px;
  }

  .final-right .book-btn,
  .final-right .book-btn:link,
  .final-right .book-btn:visited,
  .final-right .book-btn:hover,
  .final-right .book-btn:active,
  .final-right .book-btn:focus {
    padding: 14px 38px; /* Adjust button size for mobile */
    font-size: 16px; /* Make button text more mobile-friendly */
    margin-top: 20px;
    border-radius: 10px;
    text-decoration: none;
    outline: none;
  }

  .final-middle hr {
    width: 50px; /* Adjust horizontal line width for mobile */
    margin: 10px auto;
    border: 1px solid #dcd7e0;
  }
}

/* Stronger overrides for `.book-btn` to ensure browser default/visited styles are overridden.
   This targets the anchor specifically and uses higher specificity and `!important` where needed. */
.final-section .final-right a.book-btn,
.final-section .final-right a.book-btn:link,
.final-section .final-right a.book-btn:visited,
.final-section .final-right a.book-btn:hover,
.final-section .final-right a.book-btn:active,
.final-section .final-right a.book-btn:focus {
  background: #d6d8ea !important;
  color: #3a2737 !important;
  text-decoration: none !important;
  border: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
}

/* Provide an accessible focus ring instead of removing focus entirely */
.book-btn:focus-visible {
  outline: 3px solid rgba(76,57,72,0.18);
  outline-offset: 2px;
}

/* ===== Footer Strip ===== */
.footer-strip {
  background-color: #3a2737; /* Dark purple background */
  color: #dcd7e0; /* Light cream color for text */
  text-align: left;
  padding: 10px 0;
  border-top: 2px solid #dcd7e0; /* Light coral/pinkish border */
  font-family: "Inter", sans-serif;
  font-size: 10px;
}

.footer-strip a {
  color: #dcd7e0; /* Light coral color for the link */
  text-decoration: none;
  font-weight: 200;
}

.footer-strip a:hover {
  text-decoration: none; /* Add underline on hover */
}
