/*
Theme Name: Butler Excavation Domination
*/

/* RESET */
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  line-height: 1.6;
  color: #333;
}

/* HEADER */
header {
  background: #1e2a38;
  color: #fff;
  padding: 15px;
  text-align: center;
}

/* NAVIGATION */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

nav li {
  margin: 5px 15px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

nav a:hover {
  text-decoration: underline;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('https://images.unsplash.com/photo-1503387762-592deb58ef4e');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
}

/* BUTTON */
.btn {
  display: inline-block;
  background: #f4a261;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  margin-top: 15px;
}

.btn:hover {
  opacity: 0.9;
}

/* SECTIONS */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

h1, h2, h3 {
  margin-bottom: 10px;
  color: #1e2a38;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

/* CARDS */
.card {
  background: #f4f4f4;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* LISTS */
ul {
  padding-left: 20px;
}

/* FOOTER */
footer {
  background: #1e2a38;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* STICKY CALL BUTTON */
.sticky-call {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #f4a261;
  text-align: center;
  padding: 15px;
  z-index: 999;
}

.sticky-call a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
}

/* TABLET */
@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: 40px;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero {
    padding: 120px 20px;
  }
}