/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2e2e33;
  background: #f9f9f9;
}

header {
  background: #f29c1f;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

nav ul {
  display: flex;
  list-style: none;
  justify-content: center;
  padding: 1rem 0;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  margin: 0 1.2rem;
  font-weight: 500;
}

nav ul li a:hover {
  color: #2e2e33;
}
/* BANNER WRAPPER - Responsive 16:9 */
.banner-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: #000;
}

/* IMAGE INSIDE BANNER */
.banner-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OPTIONAL: Banner text overlay (if used) */
.banner-text {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  max-width: 80%;
  border-left: 5px solid #f29c1f; /* TrueForm orange */
}

/* FORWARD/BACK BUTTONS */
.banner-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
  z-index: 10;
}

.banner-controls button {
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.banner-controls button:hover {
  background: rgba(0,0,0,0.7);
}


main {
  max-width: 1080px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.intro, .about, .services-grid, .gallery-preview, .testimonials, .local-area, .contact-cta {
  margin-bottom: 3rem;
}

h1, h2 {
  color: #f29c1f;
  margin-bottom: 1rem;
}

.cta-buttons .button,
.button {
  background: #f29c1f;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: inline-block;
  border-radius: 4px;
  font-weight: bold;
}

.button.secondary {
  background: #e6e6e6;
  color: #2e2e33;
}

.link {
  color: #f29c1f;
  text-decoration: none;
  font-weight: 600;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border: 1px solid #ddd;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  color: #2e2e33;
  border-radius: 6px;
  transition: background 0.3s;
}

.service-card:hover {
  background: #fff8f0;
}

blockquote {
  font-style: italic;
  background: #f0f0f0;
  padding: 1rem;
  border-left: 4px solid #f29c1f;
  margin: 1rem 0;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #eaeaea;
  font-size: 0.9rem;
}

.services-grid .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 1rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.service-card img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.service-card:hover {
  transform: scale(1.03);
}



/*  ---------------------  Mobile Devices ------------------------ */
@media screen and (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
  }

  nav ul li a {
    margin: 0 0.5rem;
    font-size: 0.9rem;
  }

  .banner-text {
    font-size: 1.1rem;
    max-width: 80%;
    padding: 0.75rem 1rem;
  }

  .banner-controls button {
    font-size: 1rem;
    padding: 0.4rem 0.75rem;
  }
}

@media screen and (max-width: 480px) {
  .banner-text {
    font-size: 1rem;
    padding: 0.5rem 0.75rem;
    max-width: 90%;
  }

  nav ul li a {
    font-size: 0.85rem;
  }
}
