/**
 * Lakefront Designs — Suggest a Lake and Custom Lake Design workflow Pages.
 * Migrated from Appearance > Customize > Additional CSS.
 * Gutenberg remains the source of the page markup/content.
 */

/* --------------------------------------------------------------------------
 * Custom Lake Design
 * ----------------------------------------------------------------------- */
.lfd-custom-design-form {
  background: var(--lf-color-white, #ffffff);
  padding: 42px;
  border: 1px solid #dbe5e7;
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(7, 56, 77, 0.08);
}

.lfd-custom-design-form .wpforms-container {
  margin-top: 24px;
}

.lfd-custom-design-form .wpforms-container input[type="text"],
.lfd-custom-design-form .wpforms-container input[type="email"],
.lfd-custom-design-form .wpforms-container input[type="tel"],
.lfd-custom-design-form .wpforms-container input[type="number"],
.lfd-custom-design-form .wpforms-container select,
.lfd-custom-design-form .wpforms-container textarea {
  width: 100%;
  background: var(--lf-color-white, #ffffff);
  color: #173641;
  opacity: 1;
  border: 1px solid #cfdcdf;
  border-radius: 5px;
  padding: 13px 14px;
}

.lfd-custom-design-form .wpforms-container input:focus,
.lfd-custom-design-form .wpforms-container select:focus,
.lfd-custom-design-form .wpforms-container textarea:focus {
  border-color: #0f5875;
  opacity: 1;
  outline: none;
  box-shadow: 0 0 0 2px rgba(15, 88, 117, 0.12);
}

.lfd-custom-design-form .wpforms-field-label {
  color: #173641;
  font-weight: 600;
}

.lfd-custom-design-form .wpforms-field-description {
  color: #687d84;
  line-height: 1.5;
}

.lfd-custom-design-form .wpforms-submit-container button,
.lfd-custom-design-form button[type="submit"] {
  background: #07384d;
  color: var(--lf-color-white, #ffffff);
  border: 0;
  border-radius: 5px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
}

.lfd-custom-design-form .wpforms-submit-container button:hover,
.lfd-custom-design-form button[type="submit"]:hover {
  background: #0f5875;
}

/* Consolidates the two former hero-inner declarations and the two former
 * last-paragraph declarations while retaining their final computed values. */
.lfd-custom-design-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.lfd-custom-design-hero-inner > p:last-child {
  max-width: 760px;
  margin-left: 0;
  margin-right: 0;
  line-height: 1.7;
}

.lfd-custom-design-hero-inner > p:first-child {
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lfd-custom-design-help {
  background: var(--lf-color-warm-white, #fbfaf6);
  padding: 28px 24px 70px;
}

.lfd-custom-design-help-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px 36px;
  background: var(--lf-color-white, #ffffff);
  border: 1px solid #dbe5e7;
  border-radius: 10px;
}

.lfd-custom-design-help h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #07384d;
  font-family: var(--lf-font-serif, Georgia, "Times New Roman", serif);
  font-size: 24px;
}

.lfd-custom-design-help p {
  margin-bottom: 0;
  color: #506872;
  line-height: 1.6;
}

.lfd-custom-design-help .wp-block-buttons {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.lfd-custom-design-help .wp-block-button__link {
  background: transparent;
  color: #07384d;
  border: 1px solid #07384d;
  border-radius: 5px;
  padding: 13px 28px;
  font-weight: 700;
}

.lfd-custom-design-help .wp-block-button__link:hover {
  background: #07384d;
  color: var(--lf-color-white, #ffffff);
}

.lfd-custom-design-hero-inner .wp-block-columns {
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.lfd-custom-design-hero-inner .wp-block-column:first-child {
  flex-basis: 56%;
}

.lfd-custom-design-hero-inner .wp-block-column:last-child {
  flex-basis: 44%;
}

.lfd-custom-design-hero h1 {
  max-width: 620px;
  margin: 18px 0 22px;
  color: var(--lf-color-white, #ffffff);
  font-family: var(--lf-font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(48px, 5vw, 72px);
  line-height: 1.03;
}

.lfd-custom-design-hero-inner .wp-block-column:first-child > p:last-child {
  max-width: 520px;
  margin-left: 0;
  line-height: 1.65;
}

.lfd-custom-design-hero-inner .wp-block-image {
  margin: 0;
  text-align: center;
}

.lfd-custom-design-hero-inner .wp-block-image img {
  max-width: 420px;
  width: 100%;
  height: auto;
}

.lfd-custom-design-hero {
  padding-top: clamp(70px, 8vw, 105px);
  padding-bottom: clamp(70px, 8vw, 105px);
}

.lfd-custom-design-hero-inner .wp-block-column:first-child > p:first-child {
  position: relative;
  margin-bottom: 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lfd-custom-design-hero-inner .wp-block-column:first-child > p:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 38px;
  height: 2px;
  background: rgba(255,255,255,0.75);
}

@media (max-width: 781px) {
  .lfd-custom-design-help-inner {
    padding: 26px 22px;
  }

  .lfd-custom-design-help .wp-block-buttons {
    justify-content: flex-start;
    margin-top: 18px;
  }

  .lfd-custom-design-hero-inner .wp-block-columns {
    display: block;
  }

  .lfd-custom-design-hero-inner .wp-block-column:last-child {
    margin-top: 42px;
  }

  .lfd-custom-design-hero h1 {
    font-size: clamp(42px, 11vw, 58px);
  }

  .lfd-custom-design-hero-inner .wp-block-image img {
    max-width: 340px;
  }
}

/* --------------------------------------------------------------------------
 * Suggest a Lake
 * ----------------------------------------------------------------------- */
.lfd-suggest-lake-hero {
  background: #07384d;
  color: var(--lf-color-white, #ffffff);
  padding: clamp(64px, 8vw, 100px) 24px;
}

.lfd-suggest-lake-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.lfd-suggest-lake-hero h1 {
  max-width: 760px;
  margin: 18px 0 22px;
  color: var(--lf-color-white, #ffffff);
  font-family: var(--lf-font-serif, Georgia, "Times New Roman", serif);
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1.05;
}

.lfd-suggest-lake-hero p {
  max-width: 720px;
  color: rgba(255,255,255,.9);
  font-size: 18px;
  line-height: 1.7;
}

.lfd-suggest-lake-hero-inner > p:first-child {
  position: relative;
  margin-bottom: 34px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
}

.lfd-suggest-lake-hero-inner > p:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 38px;
  height: 2px;
  background: rgba(255,255,255,.75);
}

.lfd-suggest-lake-main {
  background: var(--lf-color-warm-white, #fbfaf6);
  padding: clamp(60px, 7vw, 90px) 24px;
}

.lfd-suggest-lake-main-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.lfd-suggest-lake-form {
  background: var(--lf-color-white, #ffffff);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid #dbe5e7;
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(7, 56, 77, .08);
}

.lfd-suggest-lake-form .wpforms-container {
  margin-top: 24px;
}

.lfd-suggest-lake-form .wpforms-container input[type="text"],
.lfd-suggest-lake-form .wpforms-container input[type="email"],
.lfd-suggest-lake-form .wpforms-container input[type="tel"],
.lfd-suggest-lake-form .wpforms-container select,
.lfd-suggest-lake-form .wpforms-container textarea {
  width: 100%;
  background: var(--lf-color-white, #ffffff);
  color: #173641;
  opacity: 1;
  border: 1px solid #cfdcdf;
  border-radius: 5px;
  padding: 13px 14px;
}

.lfd-suggest-lake-form .wpforms-container input:focus,
.lfd-suggest-lake-form .wpforms-container select:focus,
.lfd-suggest-lake-form .wpforms-container textarea:focus {
  border-color: #0f5875;
  opacity: 1;
  outline: none;
  box-shadow: 0 0 0 2px rgba(15, 88, 117, .12);
}

.lfd-suggest-lake-form .wpforms-field-label {
  color: #173641;
  font-weight: 600;
}

.lfd-suggest-lake-form .wpforms-field-description {
  color: #687d84;
  line-height: 1.5;
}

.lfd-suggest-lake-form .wpforms-submit-container button,
.lfd-suggest-lake-form button[type="submit"] {
  width: 100%;
  background: #07384d;
  color: var(--lf-color-white, #ffffff);
  border: 0;
  border-radius: 5px;
  padding: 15px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.lfd-suggest-lake-form .wpforms-submit-container button:hover,
.lfd-suggest-lake-form button[type="submit"]:hover {
  background: #0f5875;
}

@media (max-width: 781px) {
  .lfd-suggest-lake-main .wp-block-columns {
    display: block;
  }

  .lfd-suggest-lake-main .wp-block-column + .wp-block-column {
    margin-top: 36px;
  }

  .lfd-suggest-lake-form {
    padding: 26px 20px;
  }
}

body .lfd-suggest-lake-hero,
body .entry-content > .lfd-suggest-lake-hero:first-child {
  margin-top: 0 !important;
}

.lfd-suggest-lake-form .wpforms-confirmation-container-full {
  background: #edf7fa;
  border: 1px solid #dbe5e7;
  border-radius: var(--lf-radius-md, 8px);
  padding: 28px;
  color: #173641;
}

.lfd-suggest-lake-form .wpforms-confirmation-container-full h3 {
  margin-top: 0;
  color: #07384d;
  font-family: var(--lf-font-serif, Georgia, "Times New Roman", serif);
  font-size: 28px;
}

.lfd-confirmation-button {
  display: inline-block;
  margin-top: 8px;
  padding: 12px 20px;
  background: #07384d;
  color: var(--lf-color-white, #ffffff) !important;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 700;
}

.lfd-confirmation-button:hover {
  background: #0f5875;
}
