/* =========================
   RESET
========================= */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html, body{
  height: 100%;
}

/* =========================
   PAGE CONTENT
========================= */

.our-story-section {
  background-color: #ffffff;
  padding: 80px 20px;
  font-family: 'Montserrat', sans-serif;
}

.our-story-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* LEFT TEXT */
.our-story-text h2 {
  font-size: 36px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
}

/* underline */
.our-story-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #000;
  margin-top: 12px;
}

.our-story-text p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
  max-width: 600px;
}

.story-emphasis {
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 25px;
}

/* RIGHT IMAGE */
.our-story-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

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

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

/* GRID LAYOUT */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

/* LEFT: SERVICE HOURS */
.service-hours {
  text-align: left;
}

.service-hours h3 {
  font-size: 14px;
  letter-spacing: 2px;
  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;
}

/* MIDDLE: SOCIALS */
.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;
}

/* RIGHT: CONTACT */
.contact {
  text-align: right;
}

.contact h3 {
  font-size: 14px;
  margin-bottom: 12px;
}

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

/* FIX BLUE LINKS */
.contact a {
  color: white;
  text-decoration: none;
}

.contact a:hover {
  opacity: 0.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {
  .our-story-container {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .our-story-text p {
    margin-left: auto;
    margin-right: auto;
  }

  .our-story-image img {
    margin: 0 auto;
  }
}
