/*
Theme Name: Busy Bee Theme
Author: Busy Bee Roofing
Version: 1.0
*/

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.hero {
  background:
    linear-gradient(rgba(0,0,0,.7), rgba(0,0,0,.7)),
    url('images/logo-banner.jpg');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.hero-logo {
  width: 100%;
  max-width: 500px;
  margin-bottom: 30px;
  border-radius: 12px;
}

.hero h1 {
  font-size: 48px;
  color: #ffcc00;
}

.hero p {
  font-size: 20px;
}

.btn {
  display: inline-block;
  background: #ffcc00;
  color: black;
  padding: 14px 28px;
  margin: 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn.secondary {
  background: #222;
  color: white;
}

.services, .specialties, .about, .cta {
  padding: 70px 20px;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.card {
  background: #fff8dc;
  border: 1px solid #ffcc00;
  padding: 25px;
  border-radius: 10px;
}

.specialties-image {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
}

.cta {
  background: #222;
  color: white;
}

@media (max-width: 900px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 34px;
  }
}

@media (max-width: 600px) {
  .service-grid {
    grid-template-columns: 1fr;
  }
}
.site-header {
  background: #111;
  padding: 18px 20px;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-logo {
  color: #ffcc00;
  font-weight: bold;
  text-decoration: none;
  font-size: 22px;
}

.site-nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.site-footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px 20px;
}

@media (max-width: 700px) {
  .nav-wrap {
    flex-direction: column;
    gap: 12px;
  }

  .site-nav a {
    margin: 0 8px;
  }
}
.header-logo {
  height: 60px;
  width: auto;
  display: block;
}

.contact-page {
  max-width: 850px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.contact-card {
  background: #fff8dc;
  border: 2px solid #ffcc00;
  border-radius: 14px;
  padding: 30px;
  margin: 30px auto;
  max-width: 500px;
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}

.contact-card h2 {
  color: #111;
  font-size: 32px;
}

.contact-card a {
  color: #111;
  font-weight: bold;
}

main.container h1 {
  color: #111;
  font-size: 42px;
}

main.container ul {
  max-width: 600px;
  margin: 30px auto;
  text-align: left;
  font-size: 20px;
  line-height: 1.8;
}
.page-hero {
  background: linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
              url('images/logo-banner.png');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 90px 20px;
}

.page-hero h1 {
  font-size: 52px;
  color: #ffcc00;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 22px;
}

.services-visual {
  padding: 70px 20px;
  text-align: center;
}

.services-visual img {
  width: 100%;
  max-width: 1100px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,.3);
}

.contact-feature {
  padding: 70px 20px;
}

.contact-box {
  max-width: 650px;
  margin: auto;
  text-align: center;
  background: #111;
  color: white;
  border: 3px solid #ffcc00;
  border-radius: 22px;
  padding: 45px 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,.35);
}

.contact-logo {
  width: 260px;
  max-width: 100%;
  margin-bottom: 25px;
}

.contact-box h2 {
  color: #ffcc00;
  font-size: 42px;
  margin-bottom: 5px;
}

.role {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ddd;
}

.big-phone {
  display: inline-block;
  font-size: 34px;
  color: #ffcc00;
  font-weight: bold;
  margin: 25px 0;
  text-decoration: none;
}

@media (max-width: 700px) {
  .page-hero h1 {
    font-size: 36px;
  }

  .big-phone {
    font-size: 26px;
  }
}