/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background: #080808;
    color: #fff;
}

/* HERO */
.hero {
    min-height: 100vh;
    background: url("./hero.png") center / 85% no-repeat;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.25);
}

.hero-content {
    position: relative;
    text-align: center;
    margin-top: 575px; /* adjust as needed */
}

/* BUTTONS */
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 16px 34px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    cursor: pointer;
}

.btn.call {
    background: #00ff88;
    color: #000;
}

.btn.email {
    border: 2px solid #00ff88;
    color: #00ff88;
}

/* SERVICES */
.services {
    padding: 90px 30px;
    text-align: center;
}

.services h2 {
    color: #00ff88;
    margin-bottom: 60px;
    font-size: 2.6rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    max-width: 1300px;
    margin: auto;
}

.service-card {
    height: 300px;
    padding: 35px;
    border-radius: 18px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    color: #fff;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.85));
}

.service-card i,
.service-card h3,
.service-card p {
    position: relative;
    z-index: 2;
}

.service-card i {
    font-size: 2.6rem;
    color: #00ff88;
}

.service-card h3 {
    margin-top: 10px;
    margin-bottom: 8px;
}

.service-card p {
    color: #ccc;
}

/* SERVICE IMAGES */
.auto-bg { background-image: url("./images/auto.jpg"); }
.frame-bg { background-image: url("./images/frame.jpg"); }
.bike-bg { background-image: url("./images/bike.jpg"); }
.diesel-bg { background-image: url("./images/diesel.jpg"); }

/* HOURS */
.hours {
  max-width: 600px;
  margin: 60px auto; /* centers the section horizontally */
  padding: 25px;
  background: rgba(0, 0, 0, 0.65);
  border-radius: 12px;
  text-align: center; /* centers the text inside */
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
}

.hours ul {
  list-style: none;
  padding: 0;
  margin: 0 auto; /* center the list itself */
  display: inline-block; /* makes the list shrink to content width */
}

.hours li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 18px;
  width: 250px; /* optional: keeps list narrow */
  margin: 0 auto; /* centers the li block horizontally */
}


.hours li.closed {
  color: #ff5555;
}

/* SOCIAL + LIKE */
.social-section,
.like-section {
    text-align: center;
    padding: 40px 20px;
}

#likeBtn {
    padding: 14px 30px;
    border-radius: 40px;
    background: #00ff88;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
}

/* FOOTER */
footer {
    padding: 25px;
    text-align: center;
    background: #000;
    color: #777;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
    body {
        background-attachment: scroll;
        background-position: center top;
    }
}
@media (max-width: 600px) {
  .hours li {
    font-size: 16px;
  }
}
