/* styles.css for Youngs Premier Painting */
/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;600&family=Inter:wght@400;500;600;700&display=swap');

html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Inter', Arial, sans-serif;
  background: #F3EFE4; /* Cream Dune */
  color: #2C2C2C; /* Bark Charcoal */
  margin: 0;
  line-height: 1.7;
}

/* Top Bar */
.top-bar {
  background: #F3EFE4;
  border-bottom: 1.5px solid #d6c7a1;
  /* position: fixed; */
  top: 0;
  width: 100%;
}
.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.5rem;
}
.logo-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
}
.logo-main {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  color: #2E5D4B; /* Cedar Green */
  font-weight: 700;
  letter-spacing: 0.5px;
}
.logo-sub {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1rem;
  color: #A1432C; /* Heartwood Red */
  font-weight: 500;
  letter-spacing: 1.5px;
}
.logo-img {
  height: 120px;
  width: auto;
  /* margin-bottom: 4px; */
}
.top-bar-contact {
  font-size: 2rem;
  color: #2C2C2C;
  font-family: 'Inter', Arial, sans-serif;
}
.top-bar-contact a {
  color: #2C2C2C;
  text-decoration: none;
}
.top-bar-cta {
  background: #D8A550; /* Prairie Gold */
  color: #FFF; /* Heartwood Red */
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.top-bar-cta:hover {
  background: #c19547; /* Slightly darker gold */
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 32px auto;
  padding: 3rem 1.5rem 0 1.5rem;;
  background: #F3EFE4;
  border-radius: 12px;
}
.hero-left {
  flex: 1 1 60%;
  padding-right: 2rem;
}
.hero-left h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: #2C2C2C;
  margin: 0;
  letter-spacing: -0.5px;
  line-height: 1.13333333;
}
.hero-sub {
  color: #A1432C;
  font-family: 'Inter', Arial, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.hero-cta {
  background: #D8A550;
  color: #FFF;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: inline-block;
}
.hero-cta:hover {
  background: #c19547; /* Slightly darker gold */
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}
.hero-right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.2rem;
}
.hero-img {
  width: 400px;
  /* height: 386px; */
  object-fit: cover;
  border-radius: 12px;
  /* box-shadow: 0 2px 12px rgba(0,0,0,0.07); */
  background: #e0e0e0;
}
.hero-card {
  background: #fff;
  border: 1.5px solid #d6c7a1;
  border-radius: 8px;
  padding: 0.7rem 1.2rem;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  font-size: 1.1rem;
  margin-top: -1.5rem;
}
.hero-card-tag {
  color: #b88c3a;
  font-size: 0.95rem;
  margin-top: 0.2rem;
}
.hero-features {
  background: #2E5D4B;
  color: #EBD1A2;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  font-size: 1.1rem;
  padding: 0.7rem 0;
  margin-bottom: 1.5rem;
}

/* Estimate Form Section */
.estimate-section {
  background: #BCC5B0; /* Sage Mist */
  padding: 2rem 1.5rem 4rem 1.5rem;
  max-width: 900px;
  margin: 2rem auto 4rem auto;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  text-align: center;
}
.estimate-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #2E5D4B;
  font-size: 2.5rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1.5rem;
  letter-spacing: -0.25px;
}
.estimate-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: center;
}
.form-row {
  display: flex;
  gap: 1.1rem;
  width: 100%;
  max-width: 600px;
}
.estimate-form input,
.estimate-form textarea {
  flex: 1 1 0;
  padding: 0.8rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
  background: #F3EFE4; /* Cream Dune */
  box-shadow: 0 1px 0 #BCC5B0;
}
.estimate-form textarea {
  min-height: 80px;
  resize: vertical;
}
.estimate-btn {
  background: #D8A550; /* Prairie Gold */
  color: #FFF; /* Heartwood Red */
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.estimate-btn:hover {
  background: #c19547; /* Slightly darker gold */
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* What You Can Expect Section */
.expect-section {
  background: #F3EFE4; /* Cream Dune */
  padding: 0 1.5rem;
  max-width: 1100px;
  margin: 4rem auto;
  border-radius: 12px;
  text-align: center;
}
.expect-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #2E5D4B;
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0;
  letter-spacing: -0.25px;
}
.expect-steps {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.expect-step {
  background: #F3EFE4;
  /* border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04); */
  flex: 1 1 250px;
  min-width: 220px;
  max-width: 340px;
  padding: 0 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0;
}
.expect-num {
  /* font-size: 1.5rem;
  color: #b88c3a;
  font-weight: 700;
  margin-bottom: 0.5rem; */
  /* control the size of your circle here */
  --size: 75px;

  width: var(--size);
  height: var(--size);

  background-color: #fff;          /* circle fill */
  border-radius: 50%;              /* makes it a circle */
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.15),
    0 8px 16px rgba(0, 0, 0, 0.10); /* strong drop‑shadow */

  display: inline-flex;            /* shrink‑wrap and center contents */
  align-items: center;
  justify-content: center;

  font-size: 2rem;                 /* adjust number size */
  color: #000;
}
.expect-title {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  color: #A1432C;
  font-size: 1.1rem;
  Margin-top: 2rem;
  margin-bottom: 0.5rem;
}
.expect-desc {
  color: #2d3a2e;
  font-size: 1rem;
}

/* Our Services Section */
.our-services-section {
  background: #F3EFE4; /* Cream Dune */
  padding: 0 1.5rem;
  max-width: 900px;
  margin: 4rem auto;
  border-radius: 12px;
  text-align: center;
}
.our-services-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #2E5D4B;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  letter-spacing: -0.25px;
}
.our-services-list {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.our-services-col h3 {
  color: #A1432C; /* Heartwood Red */
  font-size: 1.2rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 0.7rem;
}
.our-services-col ul {
  list-style: disc inside;
  color: #2d3a2e;
  font-size: 1rem;
  padding-left: 0;
}

/* Why Choose Section */
.why-choose-section {
  background: #2E5D4B; /* Cedar Green */
  color: #EBD1A2;
  padding: 4rem 1.5rem;
  max-width: 900px;
  margin: 4rem auto;
  border-radius: 12px;
  text-align: center;
}
.why-choose-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1.2rem;
  letter-spacing: -0.25px;
}
.why-choose-desc {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  font-size: 1.05rem;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter', Arial, sans-serif;
}
.why-choose-list li {
  margin-bottom: 0.5rem;
}
.why-choose-cta {
  background: #D8A550; /* Prairie Gold */
  color: #FFF; /* Heartwood Red */
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  border: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: inline-block;
}
.why-choose-cta:hover {
  background: #c19547; /* Slightly darker gold */
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* Owners Section */
.owners-section {
  background: #F3EFE4; /* Cream Dune */
  padding: 0 1.5rem;
  max-width: 900px;
  margin: 4rem auto;
  border-radius: 12px;
  text-align: center;
}
.owners-section-content {
  display: flex;
  /* flex-direction: column; */
  align-items: center;
  gap: 1.2rem;
}
.owners-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #2E5D4B;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1.2rem;
  letter-spacing: -0.25px;
}
.owners-desc {
  color: #2C2C2C;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-family: 'Inter', Arial, sans-serif;
  width: 50%;
}
.painter-img {
  width: 220px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* Areas We Serve Section */
.areas-section {
  background: #F3EFE4; /* Cream Dune */
  padding: 0 1.5rem;
  max-width: 900px;
  margin: 4rem auto;
  border-radius: 12px;
  text-align: center;
}
.areas-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #2E5D4B;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1.2rem;
  letter-spacing: -0.25px;
}
.areas-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.area-card {
  background: #fff;
  border: 1.5px solid #2E5D4B; /* Cedar Green */
  border-radius: 12px;
  padding: 1.2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 150px;
  max-width: 200px;
}
.area-img {
  width: 240px;
  height: 240px;
  border-radius: 8px;
  margin-bottom: 0.7rem;
}
.area-img-edmond {
  /* Add custom illustration or icon here */
}
.area-img-guthrie {
  /* Add custom illustration or icon here */
}
.area-label {
  color: #2E5D4B;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: 'Inter', Arial, sans-serif;
}

/* Footer */
footer {
  background: #2C2C2C; /* Bark Charcoal */
  color: #fff;
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.5px;
  margin-top: 2rem;
  font-family: 'Inter', Arial, sans-serif;
}

/* Responsive Design */
@media (max-width: 1000px) {
  .hero-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .hero-right {
    align-items: flex-start;
  }
  .our-services-list, .areas-list, .expect-steps {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
}
@media (max-width: 700px) {
  .top-bar-inner, .hero-section, .estimate-section, .expect-section, .our-services-section, .why-choose-section, .owners-section, .areas-section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .estimate-section h2, .expect-section h2, .our-services-section h2, .why-choose-section h2, .areas-section h2 {
    font-size: 2rem;
  }
  .top-bar {
    position: relative;
    border-bottom: none;
  }
  .top-bar-inner {
    flex-direction: column;
  }
  .logo-block {
    align-items: center;
  }
  .logo-main {
    /* font-size: 1.8rem; */
  }
  .logo-sub {
    /* font-size: 0.8rem; */
  }
  .top-bar-contact {
    font-size: 1.2rem;
    margin-top: 8px;
  }
  .top-bar-cta {
    display: none;
  }
  header {
    margin-left: 12px;
    margin-right: 12px;
  }
  .hero-section {
    padding-top: 1rem;
  }
  .hero-left, .hero-right {
    display: flex;
    flex-direction: column;
    text-align: center;
  }
  .hero-left {
    padding-right: 0;
  }
  .hero-left h1 {
    font-size: 2.5rem;
  }
  .hero-sub {
    font-size: 1.2rem;
    margin: 1rem 0;
  }
  .hero-right {
    /* margin: auto; */
    display: none;
  }
  .hero-img {
    width: 100%;
    height: 260px;
  }
  .hero-features {
    gap: 1rem;
    font-size: 1rem;
  }
  main {
    margin-left: 12px;
    margin-right: 12px;
  }
  .form-row {
    flex-direction: column;
  }
  /* Keep ONLY the state/zip row horizontal on mobile */
  .form-row:nth-child(7) { 
    flex-direction: row !important;
    /* gap: 0.5rem; */
  }
  
  /* Make both fields more balanced and ensure they fit */
  .form-row:nth-child(7) input[name="state"] {
    flex: 0 0 40%;
    min-width: 0; /* Prevents overflow */
  }
  .form-row:nth-child(7) input[name="zip"] {
    flex: 0 0 55%;
    min-width: 0; /* Prevents overflow */
  }
  .owners-img-placeholder {
    width: 100%;
    height: 120px;
  }
}
