/* ===============================
   HOMEPAGE CONTENT ONLY
   (HEADER IS GLOBAL)
================================ */

/* ===============================
   HERO
================================ */

.hero {
  min-height: 480px;
  background-image: url("../images/pazhome.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 40px 20px;
}

.hero p {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: white;
  max-width: 1000px;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 800;
}

.hero p,
.hero li {
  text-shadow: 0 2px 6px #1f1d1d;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 32px;

  background-color: #8b2e2e;
  color: white;

  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;

  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.hero-btn:hover {
  background-color: #6f2323;
  transform: translateY(-2px);
}

/* ===============================
   SERVICES SECTION
================================ */

.services-section {
  background: white;
  width: 100%;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.services-title {
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 50px;
  color: #111;
}

.services-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 80px;
}

.service-item h3 {
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.service-item h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: #000;
  margin: 10px auto 0;
}

.service-item p {
  font-size: 11px;
  line-height: 1.7;
  color: #555;
  max-width: 320px;
  margin: 15px auto 0;
}

/* ===============================
   FOOTER
================================ */

.contact-section {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  background-color: black;
  color: white;
  width: 100%;
  padding: 35px 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
}

.service-hours {
  text-align: left;
}

.service-hours h3,
.socials h3,
.contact h3 {
  font-size: 14px;
  margin-bottom: 12px;
}

.service-hours ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-hours li {
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.85;
}

.socials {
  text-align: center;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 18px;
}

.social-icons img {
  width: 28px;
  height: 28px;
  filter: invert(1);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.15);
  opacity: 0.8;
}

.contact {
  text-align: right;
}

.contact p {
  font-size: 13px;
  margin-bottom: 10px;
}

.contact a {
  color: white;
  text-decoration: none;
}

.contact a:hover {
  opacity: 0.7;
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .service-hours,
  .contact {
    text-align: center;
  }
}
