/*  
   Using Bangers, bright color scheme (#009900, #ff6600, #ffff00).
   Body background is white (#fff).
   Nav bar is 100% wide (top corners rounded).
   All images have border-radius: 15px.
   CTA banner fully rounded.
   Hero bottom corners only.
   NEW: Big location links in the hero section (above the fold).
*/

/* IMPORT GOOGLE FONT FOR BANGERS */
@import url('https://fonts.googleapis.com/css2?family=Bangers&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@500;700&display=swap');


/* RESET & GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.5;
  /* White background for entire site */
  background-color: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 15px; /* Round corners of all <img> elements */
}

/* COLOR VARIABLES */
:root {
  --cc-green:  #009900;
  --cc-orange: #ff6600;
  --cc-yellow: #ffff00;
  --cc-white:  #fff;
  --cc-dark:   #333;
}

/* HEADINGS USE BANGERS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bangers', cursive;
}

/* NAVIGATION (badge‑style logo with full top rounding) */
.navbar {
  width: 100%;
  background-color: var(--cc-orange);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 0.5rem 1.5rem;   /* vertical & horizontal padding */
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRANDING & NAV LINKS (BANGERS + yellow shadow) */
.branding .brand-link,
.nav-links li a {
  font-family: 'Bangers', cursive;
  color: var(--cc-green);
  text-shadow: 2px 2px 0 var(--cc-yellow);
  font-size: 1.8rem;
}

/* Logo inside brand link (badge style) */
.branding .brand-link img {
  max-height: 100px;    /* consistent badge height */
  width: auto;
  padding: 5px 0;      /* breathing room top & bottom */
  border-radius: 0;    /* override global rounding */
}

/* Title image beside the logo */
.brand-title-img {
  max-height: 65px;       /* Matches PNG height */
  margin-left: 0px;      /* Spacing between logo and text */
  vertical-align: center;
}


/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--cc-green);
  border-radius: 2px;
}

/* NAV LINKS */
.nav-links ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  white-space: nowrap;
  flex-wrap: nowrap;
  position: relative; /* 🛠 Important for stacking dropdowns */

}
.nav-links li a {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cc-green);
  text-shadow: 1px 1px 0 var(--cc-yellow);

}
.nav-links li a:hover {
  color: var(--cc-white);
}
/* AREAS WE SERVE DROPDOWN */
.nav-links li.dropdown {
  position: relative;
}

.nav-links li.dropdown > a::after {
  content: " ▾";
  font-size: 0.9rem;
  padding-left: 4px;
  color: var(--cc-yellow);
}

.nav-links li .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--cc-orange);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  padding: 0.5rem 0;
  z-index: 999;
  min-width: 180px;
}

.nav-links li .dropdown-menu li {
  display: block;
}

.nav-links li .dropdown-menu li a {
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  color: var(--cc-white);
  display: block;
  white-space: nowrap;
}

.nav-links li .dropdown-menu li a:hover {
  background-color: var(--cc-green);
  color: var(--cc-white);
}

.nav-links li.dropdown:hover .dropdown-menu {
  display: block;
}
/* 🔁 STYLE UPDATE: Larger nav and dropdown font + improved contrast */
.nav-links li a {
  font-size: 1.5rem; /* Increased from 1.2rem */
  font-weight: bold;
}

.nav-links li .dropdown-menu li a {
  font-size: 1.4rem;
  padding: 1rem 1.5rem;
  color: var(--cc-yellow);
  text-shadow: 2px 2px 0 var(--cc-dark); /* fix readability */
}

.nav-links li .dropdown-menu li a:hover {
  background-color: var(--cc-green);
  color: var(--cc-white);
  text-shadow: none;
}

/* HERO SECTION */
.hero {
  position: relative;
  width: 100%;
  min-height: 60vh;
  /* only bottom corners are rounded */
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  overflow: hidden;

  background: url("../images/hero.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-content {
  background: rgba(0,0,0,0.4);
  padding: 2rem;
  border-radius: 8px;
  max-width: 600px;
}
.hero-content h1 {
  font-size: 2.6rem;
  color: var(--cc-white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 0 var(--cc-green);
}
.hero-content p {
  color: #f0f0f0;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.hero-cities {
  font-family: 'Bangers', cursive;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cc-white);
  text-shadow: 3px 3px 0 var(--cc-green);
  letter-spacing: 0.5px;
  margin-top: 1.2rem;
}

.hero-cities a {
  color: var(--cc-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-cities a:hover {
  color: var(--cc-green);
  text-shadow: 2px 2px 0 var(--cc-white);
}

/* --- HERO TAGLINE BOOST --- */
.hero-content {                     
  /* deepen the overlay for extra contrast */
  background: rgba(0, 0, 0, 0.6);
}

.hero-content p {
  font-family: 'Bangers', cursive;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cc-yellow);
  text-shadow: 3px 3px 0 var(--cc-dark);
  letter-spacing: 0.5px;
}

/* NEW: Hero Locations styling */
.hero-locations {
  margin-top: 2rem; /* space above the location links */
  text-align: center;
}
.hero-locations h2 {
  font-size: 1.8rem;
  color: var(--cc-green);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 0 var(--cc-yellow);
}
/* Container for location link buttons */
.location-buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.btn-locations {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cc-green);
  background: var(--cc-white);
  border: 2px solid var(--cc-green);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  transition: background 0.3s, color 0.3s;
}
.btn-locations:hover {
  background: var(--cc-green);
  color: var(--cc-white);
}

/* SECTIONS */
.section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 3rem 1rem;
  max-width: 1200px;
  margin: 0 auto;
  gap: 2rem;
}
.section-media,
.section-text {
  flex: 1 1 45%;
  min-width: 300px;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--cc-orange);
  text-shadow: 2px 2px 0 var(--cc-white);
}
.section p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #444;
}

/* BENEFITS */
.benefits-list {
  list-style-type: none;
  margin-top: 1rem;
  padding-left: 1rem;
}
.benefits-list li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 1.2rem;
}
.benefits-list li::before {
  content: "•";
  color: var(--cc-orange);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
}

/* PRICING */
.price-list {
  list-style: none;
  margin-top: 1.5rem;
}
.price-list li {
  margin-bottom: 0.75rem;
  font-weight: 500;
}

/* CTA BANNER */
.cta-banner {
  position: relative;
  width: 100%;
  min-height: 40vh;
  /* Round corners for CTA container */
  border-radius: 15px;
  overflow: hidden;

  background: url("../images/cta.png") no-repeat center center/cover;
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-overlay {
  background: rgba(0,0,0,0.5);
  color: var(--cc-white);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  max-width: 600px;
}
.cta-overlay h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--cc-orange);
  text-shadow: 2px 2px 0 var(--cc-white);
}

/* CONTACT */
.contact {
  flex-direction: column;
  text-align: center;
}
.contact h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--cc-orange);
  text-shadow: 2px 2px 0 var(--cc-white);
}
.contact p {
  margin-bottom: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  background-color: var(--cc-green);
  color: var(--cc-white);
  padding: 0.75rem 1.25rem;
  border-radius: 5px;
  transition: background 0.3s;
  font-weight: 700;
  text-align: center;
}
.btn:hover {
  background-color: #008800;
}

/* FOOTER */
.footer {
  background: var(--cc-orange);
  padding: 1.5rem;
  text-align: center;
}
.footer-container p {
  color: #fff;
  font-size: 0.9rem;
}

/* RESPONSIVE */
/* … earlier styles … */

/* RESPONSIVE */
@media (max-width: 768px) {
  /* hamburger shows */
  .hamburger {
    display: flex;
  }

  /* off-canvas menu */
  .nav-links ul {
    position: fixed;
    top: 0;
    right: -100%;           /* hide it offscreen to the right */
    width: 80vw;            /* slide in from the right, covering 80% */
    height: 100vh;          /* full height */
    background: var(--cc-orange);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
    box-shadow: -2px 0 8px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    overflow-y: auto;
    z-index: 1000;
  }
  .nav-links ul.open {
    right: 0;               /* slide it fully into view */
  }

  /* keep the rest of your mobile layout intact */
  .section {
    flex-direction: column;
    text-align: center;
  }
  .section-media,
  .section-text {
    flex: 1 1 100%;
  }
  .hero-content {
    padding: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-locations h2 {
    font-size: 1.5rem;
  }
  .btn-locations {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
  }


/* make sure this is _after_ the @media block! */
.dropdown-menu.show {
  display: block !important;
}


  .nav-links ul.open {
    transform: translateX(0);
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: relative;
  }

  .section {
    flex-direction: column;
    text-align: center;
  }

  .section-media, .section-text {
    flex: 1 1 100%;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-locations h2 {
    font-size: 1.5rem;
  }

  .btn-locations {
    font-size: 1rem;
    padding: 0.4rem 0.8rem;
}
#leadForm {
  max-width: 500px;
  margin: 0 auto;
  padding: 10px;
  font-family: Arial, sans-serif;
}

#leadForm .form-group {
  margin-bottom: 15px;
}

#leadForm input,
#leadForm select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

#leadForm button {
  width: 100%;
  background-color: #00b300;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#leadForm button:hover {
  background-color: #009900;
}

#thankYouMessage {
  text-align: center;
  margin-top: 20px;
  font-weight: bold;
  color: green;
}
