/* Global Styles */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  /*padding: 0 30px;*/
  background-color: #ffb96d;
  color: #24002D;
  line-height: 1.6;
}

/* Header */
.header {
  width: 100%;              /* Stretches to the full width of the viewport */
  margin-left: 0;           /* No negative margin */
  box-sizing: border-box;
  background-color: #92ff66;
  color: #24002D;
  padding: 1rem 0;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.branding h1 {
  margin: 0;
  font-size: 2rem;
}

.branding p {
  margin: 0;
  align-items: flex-start;
  text-align: left;
  font-style: italic;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Right-align contents */
  gap: 1rem;
  width: 100%;
}

.header-contact {
  display: flex;
  gap: 1rem;
}

.header-spacer {
  width: 16px; /* Adjust as needed for spacing */
  min-width: 16px;
  height: 1px;
}

.social-icons a {
  font-size: 2rem;
  margin-right: 0.5rem;
  color: #24002D;
  text-decoration: none;
}

/* Location */
.location {
  text-align: center;
  font-weight: bold;
  margin: 1rem 0;
}

/* Featured Picture */
.featured-picture {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
}

.featured-box {
  width: 80%;
  height: 300px;
  background-color: white;
  color: #24002D;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  border: 4px dashed #6AF232;
}

/* Services */
.services {
  text-align: center;
  padding: 2rem 1rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 1rem auto 0 auto;
}

.service-box {
  background-color: white;
  padding: 1.5rem;
  border: 2px solid #24002D;
  border-radius: 8px;
  font-weight: bold;
}

/* About */
.about {
  background-color: white;
  color: #24002D;
  padding: 2rem 3rem;
  max-width: 900px;
  margin: 2rem auto;
  border: 2px solid #24002D;   /* Match service-box border */
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.about h2 {
  margin-top: 0;
}

/* Contact Buttons */
.contact-section {
  text-align: center;
  padding: 2rem;
}

.contact-button {
  display: inline-block;
  background-color: #064b00;
  color: #BEF231;
  text-decoration: none;
  padding: 0.75rem 2rem;
  margin: 0.5rem;
  border-radius: 12px;
  font-weight: bold;
  font-size: 1.1rem;
}

.contact-button:hover {
  opacity: 0.9;
}

/* Mobile styles */
@media (max-width: 600px) {
  body {
    padding: 0 8px;
    font-size: 1rem;
  }

  .header-container {
    padding: 0 8px;
    flex-direction: column;
    align-items: stretch;
  }

  .header-right {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    margin-top: 1rem;
  }

  .header-contact {
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
  }

  .branding h1 {
    font-size: 1.4rem;
  }

  .featured-image {
    max-width: 100%;
    height: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .service-box {
    font-size: 1rem;
    padding: 1rem;
  }

  .about {
    padding: 1.2rem 1rem;
    font-size: 1rem;
  }
}