/* =========================
   Existing Styles (unchanged)
========================= */
* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom right, #000000, #0a2342);
  color: #ffd700;
  overflow-x: hidden;
}

header {
  background-color: #000000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  padding: 20px 40px;
  text-align: center;
}

header img.logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

header h1 {
  margin: 0;
  color: #ffffff;
}

header p.slogan {
  margin: 10px 0 0;
  font-size: 1.4rem;
  color: #ffffff;
  font-style: italic;
  font-weight: bold;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  text-align: center;
  background-image: url('logo.png');
  background-size: cover;
  background-position: center;
  position: relative;
  color: #111113;
  min-height: 300px;
  box-sizing: border-box;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgb(255, 255, 255) 0%, transparent 70%);
  z-index: 0;
}

.hero h2,
.hero p {
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 3px rgb(255, 255, 255);
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.6rem;
  max-width: 600px;
}

.estimate-form-wrapper {
  position: relative;
  z-index: 2;
  max-width: 100%;
  width: 1000px;
  margin: 40px auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background-color: #ffffff;
  padding: 10px;
}

.estimate-form-wrapper iframe {
  width: 100%;
  height: 100vh;
  border: none;
  display: block;
}

.gallery {
  padding: 60px 20px;
  background-color: #0f0f0f;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.gallery-images {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.gallery-images img {
  max-width: 100%;
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.gallery-images img:hover {
  transform: scale(1.05);
}

.section {
  padding: 60px 20px;
  background-color: #1b1b1b;
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.section p {
  font-size: 1.1rem;
  color: #f0f0f0;
}

.cta,
.service-button {
  background-color: #ffd700;
  color: #000;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2em;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  margin-top: 30px;
  font-family: 'Bebas Neue', sans-serif;
}

.cta:hover,
.service-button:hover {
  background-color: #ffcc00;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  transform: translateY(-2px);
}

footer {
  background-color: #0a2342;
  color: #ffd700;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9em;
}

a {
  color: #ffd700;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .estimate-form-wrapper iframe {
    height: 1200px;
  }

  .gallery-images {
    flex-direction: column;
    align-items: center;
  }

  .gallery-images img {
    width: 90%;
  }
}

/* SEO section */
.seo {
  padding: 50px 20px;
  background-color: #101010;
  color: #ffd700;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.6;
}

.seo h2 {
  color: #ffd700;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.seo p {
  max-width: 900px;
  margin: auto;
  color: #f5f5f5;
}

/* =========================
   Seasonal Hero Styles
========================= */

/* Fall Page Styling */
body.fall-page {
  background: linear-gradient(to bottom, #fff7e6, #ffd699);
  color: #4a2c00;
}
body.fall-page header {
  background-color: #000000;
  color: white;
}
body.fall-page .cta-button {
  background-color: #cc5200;
  color: white;
}
body.fall-page .cta-button:hover {
  background-color: #994d00;
}

/* Snow Page Styling */
body.snow-page {
  background: linear-gradient(to bottom, #f0f8ff, #d6ecff);
  color: #003366;
}
body.snow-page header {
  background-color: #000000;
  color: white;
}
body.snow-page .cta-button {
  background-color: #0059b3;
  color: white;
}
body.snow-page .cta-button:hover {
  background-color: #003366;
}

/* Seasonal Buttons Section */
.seasonal-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.fall-button {
  background-color: #ff7f32;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.9em;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  font-family: 'Bebas Neue', sans-serif;
}

.fall-button:hover {
  background-color: #e06b27;
  box-shadow: 0 0 10px rgba(255,127,50,0.7);
  transform: translateY(-2px);
}

.winter-button {
  background-color: #4fc3f7;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.9em;
  border-radius: 5px;
  font-weight: bold;
  transition: all 0.3s ease;
  font-family: 'Bebas Neue', sans-serif;
}

.winter-button:hover {
  background-color: #29b6f6;
  box-shadow: 0 0 10px rgba(79,195,247,0.7);
  transform: translateY(-2px);
}

header h1, header p.slogan, .cta-button {
  font-family: 'Bebas Neue', sans-serif;
}

/* =========================
   Navigation Buttons for Fall & Snow Pages
========================= */
.season-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.season-nav-button {
  padding: 12px 28px;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.2em;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
}

.stone-button {
  background-color: #ffd700;
  color: #000;
}

.stone-button:hover {
  background-color: #ffcc00;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
  transform: translateY(-2px);
}

.fall-button-page {
  background-color: #ff7f32;
}

.fall-button-page:hover {
  background-color: #e06b27;
  box-shadow: 0 0 10px rgba(255,127,50,0.7);
  transform: translateY(-2px);
}

.snow-button-page {
  background-color: #4fc3f7;
}

.snow-button-page:hover {
  background-color: #29b6f6;
  box-shadow: 0 0 10px rgba(79,195,247,0.7);
  transform: translateY(-2px);
}

