/* GLOBAL */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('images/lawn-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: white;
}

/* TOP BAR */
.top-bar {
  background-color: black;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}
.top-bar a {
  color: white;
  text-decoration: none;
}

/* HEADER + NAV (gallery style) */
.header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 0;
}
.logo {
  max-width: 200px;
  margin-bottom: 8px;
}
nav {
  display: flex;
  gap: 12px;
  align-items: center;
}
nav a:nth-child(1),
nav a:nth-child(2) {
  background-color: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 8px 14px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}
nav a:nth-child(3) {
  background: none;
  padding: 0;
}
.instagram-icon {
  width: 26px;
  height: 26px;
  vertical-align: middle;
}

/* HERO BOX */
.hero-box {
  background-color: rgba(0, 0, 0, 0.7);
  margin: 30px auto;
  max-width: 700px;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}
.hero-box p {
  font-size: 14px;
  margin-bottom: 15px;
  /* plain text here—no link styling */
}

/* GET A FREE ESTIMATE BUTTON */
.estimate-btn {
  display: inline-block;
  background-color: red;
  color: white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0   rgba(255,0,0,0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(255,0,0,0); }
  100% { box-shadow: 0 0 0 0   rgba(255,0,0,0); }
}

/* INFO BOXES */
.info-box {
  background-color: rgba(0, 0, 0, 0.7);
  margin: 25px auto;
  max-width: 400px;
  padding: 20px;
  border-radius: 10px;
}
.info-box h3 {
  text-align: center;
  margin-bottom: 10px;
}
.info-box ul {
  list-style: none;
  padding: 0;
  font-size: 14px;
}
.info-box li {
  margin-bottom: 8px;
}

/* RESPONSIVE */
@media screen and (max-width: 600px) {
  .header {
    flex-direction: column;
    text-align: center;
  }
  nav {
    justify-content: center;
    margin-top: 10px;
  }
}

/* FOOTER (matched to your gallery page) */
.footer {
  text-align: center;
  padding: 1rem 0;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
}

/* Prevent auto‐linked phone/sms numbers from appearing blue on mobile */
.hero-box p,
.hero-box p a,
a[href^="tel"],
a[href^="sms"] {
  color: white !important;
  text-decoration: none !important;
}
