/* ======================================================
   GLOBAL
====================================================== */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #2a2a2a;
  line-height: 1.7;
  background: #faf9f7;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section {
  padding: 25px 0;
}

.center {
  text-align: center;
}

.light-bg {
  background: #faf9f7;
}


/* ======================================================
   HERO (BASE)
====================================================== */

.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
}


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

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

.hero-slide .container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  max-width: 760px;
  margin: auto;
  font-size: 17px;
}

.hero-buttons {
  margin-top: 30px;
}


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

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.85);
  border: none;
  font-size: 28px;
  padding: 10px 14px;
  cursor: pointer;
  z-index: 5;
}

.hero-arrow.prev {
  left: 15px;
}

.hero-arrow.next {
  right: 15px;
}

.hero-arrow:hover {
  background: #ffffff;
}


/* ======================================================
   BUTTONS
====================================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 26px;
  margin: 10px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary {
  background: #ffffff;
  color: #2a2a2a;
}

.btn-secondary {
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


/* ======================================================
   ABOUT SNAPSHOT
====================================================== */

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px;
  align-items: center;
}

.image-box img {
  width: 100%;
  border-radius: 6px;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: #2a2a2a;
  text-decoration: underline;
}


/* ======================================================
   WHAT WE OFFER
====================================================== */

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 40px;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.offer-card {
  background: #ffffff;
  padding: 28px 26px;
  border-radius: 10px;
  border: 1px solid #ebe6e0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.offer-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  margin-bottom: 12px;
}

.offer-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/* ======================================================
   IMPACT / ACHIEVEMENTS
====================================================== */

.impact-section {
  background: #f4f1ed;
  padding: 35px 0;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: center;
}

.impact-card {
  background: #ffffff;
  padding: 22px 20px;
  border-radius: 10px;
  border: 1px solid #e6e1db;
  text-align: center;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

/* SVG ICON LOCK */
.impact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-icon svg {
  width: 100%;
  height: 100%;
  max-width: 48px;
  max-height: 48px;
  stroke-width: 1.6;
  display: block;
  font-size: 0;
}

.impact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  margin-bottom: 6px;
}

.impact-card p {
  font-size: 14px;
  color: #555;
}


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

@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .two-col {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero,
  .hero-slider {
    min-height: 420px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-arrow {
    font-size: 22px;
    padding: 8px 12px;
  }
}
