.elementor-kit-9{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-9 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* =========================================================
   THE RIDGES ON REEDY CREEK - GLOBAL SITE CSS
   One Page Funnel / Elementor Pro
========================================================= */

:root {
  --ridge-green-dark: #1f2b18;
  --ridge-green: #3f4f25;
  --ridge-olive: #6f7d3a;
  --ridge-field: #a5ad62;
  --ridge-brown: #6b4524;
  --ridge-brown-dark: #1b140d;
  --ridge-cream: #f4ead2;
  --ridge-tan: #c6aa72;
  --ridge-black: #141414;
  --ridge-white: #ffffff;

  --ridge-heading: "Cinzel", Georgia, serif;
  --ridge-body: "Montserrat", Arial, sans-serif;

  --ridge-radius: 16px;
  --ridge-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

/* Base Site Styling */

body {
  font-family: var(--ridge-body);
  color: var(--ridge-brown-dark);
  background: var(--ridge-cream);
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ridge-heading);
  color: var(--ridge-green-dark);
  line-height: 1.15;
  letter-spacing: 0.5px;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--ridge-brown);
  transition: all 0.25s ease;
}

a:hover {
  color: var(--ridge-green-dark);
}

/* Global Section Layout */

.ridge-section {
  padding: 90px 24px;
  position: relative;
}

.ridge-section-light {
  background: var(--ridge-cream);
}

.ridge-section-dark {
  background: linear-gradient(135deg, #1f2b18 0%, #11180d 100%);
  color: var(--ridge-cream);
}

.ridge-section-dark h1,
.ridge-section-dark h2,
.ridge-section-dark h3,
.ridge-section-dark h4,
.ridge-section-dark h5,
.ridge-section-dark h6,
.ridge-section-dark p {
  color: var(--ridge-cream);
}

.ridge-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* Headings */

.ridge-kicker {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--ridge-brown);
  margin-bottom: 14px;
}

.ridge-section-dark .ridge-kicker {
  color: var(--ridge-tan);
}

.ridge-title {
  font-size: clamp(34px, 5vw, 62px);
  margin-bottom: 22px;
}

.ridge-subtitle {
  font-size: clamp(18px, 2vw, 23px);
  max-width: 760px;
  color: #4c442e;
}

.ridge-section-dark .ridge-subtitle {
  color: #eadfbd;
}

/* Buttons */

.ridge-btn,
.elementor-button.ridge-btn {
  display: inline-block;
  background: var(--ridge-brown);
  color: var(--ridge-cream) !important;
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--ridge-brown);
  box-shadow: 0 10px 25px rgba(107, 69, 36, 0.25);
}

.ridge-btn:hover,
.elementor-button.ridge-btn:hover {
  background: var(--ridge-green-dark);
  border-color: var(--ridge-green-dark);
  color: var(--ridge-cream) !important;
  transform: translateY(-2px);
}

.ridge-btn-outline,
.elementor-button.ridge-btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--ridge-cream) !important;
  padding: 15px 28px;
  border-radius: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--ridge-tan);
}

.ridge-btn-outline:hover,
.elementor-button.ridge-btn-outline:hover {
  background: var(--ridge-tan);
  color: var(--ridge-brown-dark) !important;
}

/* Cards */

.ridge-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(107, 69, 36, 0.18);
  border-radius: var(--ridge-radius);
  padding: 34px;
  box-shadow: var(--ridge-shadow);
}

.ridge-card h3,
.ridge-card h4 {
  margin-bottom: 14px;
}

.ridge-card p:last-child {
  margin-bottom: 0;
}

.ridge-card-dark {
  background: rgba(20, 20, 20, 0.38);
  border: 1px solid rgba(198, 170, 114, 0.28);
  border-radius: var(--ridge-radius);
  padding: 34px;
  box-shadow: var(--ridge-shadow);
}

/* Grids */

.ridge-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  align-items: center;
}

.ridge-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* Image Styling */

.ridge-image {
  border-radius: var(--ridge-radius);
  box-shadow: var(--ridge-shadow);
  overflow: hidden;
}

.ridge-image img {
  width: 100%;
  display: block;
  border-radius: var(--ridge-radius);
}

/* Rustic Divider Accent */

.ridge-divider {
  width: 90px;
  height: 4px;
  background: var(--ridge-brown);
  margin: 24px 0;
  border-radius: 999px;
}

.ridge-section-dark .ridge-divider {
  background: var(--ridge-tan);
}

/* Hero Section */

.ridge-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 120px 24px;
  background:
    linear-gradient(90deg, rgba(20,20,20,0.78), rgba(31,43,24,0.58)),
    var(--ridge-green-dark);
  color: var(--ridge-cream);
}

.ridge-hero h1 {
  color: var(--ridge-cream);
  font-size: clamp(42px, 7vw, 78px);
  max-width: 850px;
}

.ridge-hero p {
  color: #f1e4c1;
  font-size: clamp(18px, 2vw, 24px);
  max-width: 760px;
}

.ridge-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

/* CTA Section */

.ridge-cta {
  background:
    linear-gradient(135deg, rgba(31,43,24,0.96), rgba(20,20,20,0.98));
  color: var(--ridge-cream);
  border-top: 5px solid var(--ridge-tan);
  border-bottom: 5px solid var(--ridge-tan);
  text-align: center;
}

.ridge-cta h2,
.ridge-cta p {
  color: var(--ridge-cream);
}

.ridge-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* Forms */

.ridge-form input,
.ridge-form textarea,
.ridge-form select,
.elementor-field-group input,
.elementor-field-group textarea,
.elementor-field-group select {
  background: #fffaf0;
  border: 1px solid rgba(107, 69, 36, 0.28);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--ridge-brown-dark);
}

.ridge-form input:focus,
.ridge-form textarea:focus,
.ridge-form select:focus,
.elementor-field-group input:focus,
.elementor-field-group textarea:focus,
.elementor-field-group select:focus {
  border-color: var(--ridge-brown);
  box-shadow: 0 0 0 3px rgba(198, 170, 114, 0.28);
  outline: none;
}

.elementor-button[type="submit"],
.ridge-form button {
  background: var(--ridge-brown) !important;
  color: var(--ridge-cream) !important;
  border-radius: 8px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.elementor-button[type="submit"]:hover,
.ridge-form button:hover {
  background: var(--ridge-green-dark) !important;
}

/* FAQ / Accordion */

.elementor-accordion .elementor-tab-title {
  background: #fff8e8;
  border-radius: 8px;
  margin-bottom: 10px;
  border: 1px solid rgba(107, 69, 36, 0.18);
}

.elementor-accordion .elementor-tab-title a {
  color: var(--ridge-green-dark) !important;
  font-weight: 800;
}

.elementor-accordion .elementor-tab-content {
  background: #fffaf0;
  border-radius: 0 0 8px 8px;
  color: var(--ridge-brown-dark);
}

/* Header / Menu */

.ridge-header {
  background: rgba(31, 43, 24, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(198, 170, 114, 0.3);
}

.ridge-header a {
  color: var(--ridge-cream) !important;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.ridge-header a:hover {
  color: var(--ridge-tan) !important;
}

/* Smooth Anchor Scrolling */

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 110px;
}

/* Mobile */

@media (max-width: 900px) {
  .ridge-section {
    padding: 70px 20px;
  }

  .ridge-grid-2,
  .ridge-grid-3 {
    grid-template-columns: 1fr;
  }

  .ridge-hero {
    min-height: auto;
    padding: 110px 22px 80px;
  }

  .ridge-hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .ridge-btn,
  .ridge-btn-outline {
    text-align: center;
    width: 100%;
  }
}

/* MOBILE HAMBURGER MENU COLOR FIX */

.elementor-location-header .elementor-menu-toggle,
.elementor-location-header .elementor-menu-toggle i,
.elementor-location-header .elementor-menu-toggle svg {
  color: #f4ead2 !important;
  fill: #f4ead2 !important;
}

/* HOVER */

.elementor-location-header .elementor-menu-toggle:hover,
.elementor-location-header .elementor-menu-toggle:hover i,
.elementor-location-header .elementor-menu-toggle:hover svg {
  color: #d99b45 !important;
  fill: #d99b45 !important;
}

/* REMOVE BLACK BACKGROUND/BORDER */

.elementor-location-header .elementor-menu-toggle {
  border: none !important;
  background: transparent !important;
  padding: 8px !important;
}/* End custom CSS */