/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

/* Hero Section with Background Image */
.hero-section {
  height: 100vh;
  background-image: url("images/retaining-wall.jpg"); /* Replace with your image path */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark Overlay for Readability */
.overlay {
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  padding: 40px;
  text-align: center;
  max-width: 90%;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

/* Main Heading */
.overlay h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

/* Subheading */
.overlay p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

/* CTA Button */
.cta-btn {
  background: #25D366;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 1rem;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #1ebc57;
}

/* Coming Soon Text */
.coming-soon {
  margin-top: 15px;
  font-style: italic;
  font-size: 1rem;
  color: #ffd54f;
}

/* Info Section */
.info-section {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
}

.info-section h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #2e7d32;
}

.info-section p {
  font-size: 1.1rem;
  margin-bottom: 15px;
}

.info-section ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.info-section li {
  margin: 10px 0;
  font-size: 1.1rem;
  color: #444;
}

/* Phone Number Style */
.phone {
  font-size: 1.3rem;
  margin-top: 20px;
  font-weight: bold;
  color: #000;
}

/* Footer Section */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  background: #eee;
  color: #555;
}
