/* === Form Section Styling (GenerateBlocks + Contact Form 7) === */

.form-section {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 3px 3px 8px 0.5px rgba(0, 0, 0, 0.75);
}

/* Inputs & Fields */
.form-section input[type="text"],
.form-section input[type="email"],
.form-section input[type="tel"],
.form-section textarea,
.form-section select {
  background-color: #f9f9f9;
  border-radius: 20px;
  border: 1px solid #d6d6d6;
  padding: 12px 16px;
  width: 100%;
  box-sizing: border-box;
}

/* Focus State */
.form-section input:focus,
.form-section textarea:focus,
.form-section select:focus {
  outline: none;
  border-color: #000;
}

/* Field Spacing */
.form-section .wpcf7-form p {
  margin-bottom: 15px;
}

/* Button spacing (uses global button styles) */
.form-section .wpcf7-submit {
  margin-top: 15px;
}

/* Mobile padding adjustment */
@media (max-width: 768px) {
  .form-section {
    padding: 30px 25px;
  }
}
/* === Global Button Styling (GeneratePress + GenerateBlocks) === */
button,
input[type="button"],
input[type="submit"],
a.button,
.wp-block-button__link,
.gb-button {
  padding: 13px 25px;
  border-radius: 25px;
  box-shadow: 3px 3px 8px 0.5px rgba(0, 0, 0, 0.75);
}

/* Prevent hover jump */
button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
a.button:hover,
.wp-block-button__link:hover,
.gb-button:hover {
  box-shadow: 3px 3px 8px 0.5px rgba(0, 0, 0, 0.5);
}

.card {
  border-radius: 20px;
  box-shadow: 3px 3px 8px 0.5px rgba(0, 0, 0, 0.5);
  padding: 30px 30px 15px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card--sand {
  background-color: #D4A76A;
  color: #ffffff;
}

.card--blue {
  background-color: #4F6F81;
  color: #000000;
}

.card--sand a {
  color: #4F6F81;
  font-weight: 600;
  text-decoration: underline;
}

.card--sand a:hover {
  color: #ede5d9;
}

.card--blue a {
  color: #D4A76A;
  font-weight: 600;
  text-decoration: underline;
}

.card--blue a:hover {
  color: #8D6F47;
}

.card--blue svg {
  fill: #D4A76A;
}

.card--sand svg {
  fill: #4F6F81;
}
.image-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.image-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;

  --slide-width: 720px;
  --slide-half: 360px;
}

.image-carousel__track {
  display: flex;
  flex-wrap: nowrap;

  overflow-x: auto;
  overflow-y: hidden;

  -webkit-overflow-scrolling: touch;

  padding-left: max(16px, calc(50vw - var(--slide-half)));
  padding-right: max(16px, calc(50vw - var(--slide-half)));

  scrollbar-width: none;
}

.image-carousel__track::-webkit-scrollbar {
  display: none;
}

.image-carousel__slide {
  flex: 0 0 var(--slide-width);
  max-width: var(--slide-width);
}

.image-carousel__slide img {
  width: 100%;
  display: block;
  border-radius: 20px;
}

/* Tablet */
@media (max-width: 1024px) {
  .image-carousel {
    --slide-width: 520px;
    --slide-half: 260px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .image-carousel {
    --slide-width: 320px;
    --slide-half: 160px;
  }
}
html {
  scroll-behavior: smooth;
}
/* Remove button styling from mobile menu toggle */
.menu-toggle,
.menu-toggle:hover,
.menu-toggle:focus {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
}


