/* ===== HOME PAGE STYLES ===== */

/* Slider — full viewport width */
.slider-section {
  padding: 0;
  margin: 0;
  width: 100%;
  overflow: hidden;
  margin-top: -30px;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider-container {
  position: relative;
  overflow: hidden;
  height: 480px;
}

.slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  pointer-events: none;
}

.slider-slide.active {
  opacity: 1;
  pointer-events: auto;
}

@keyframes sliderZoomIn {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.12);
  }
}

.slider-image {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transform: scale(1);
  transition: transform 8s ease-out;
}

.slider-slide.active .slider-image {
  animation: sliderZoomIn 8s ease-out forwards;
}



.slider-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(30, 18, 10, 0.9) 0%, rgba(30, 18, 10, 0.4) 60%, transparent 100%);
  color: var(--white);
}

.slider-caption h3 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.slider-caption p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 1.8rem;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.slider-btn:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn-prev {
  left: 20px;
}

.slider-btn-next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.slider-dot.active {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.2);
}

/* Hero */
.hero {
  /* min-height: calc(100vh - 64px); */
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* align-items: center; */
  gap: 30px;
  padding: 50px 0px;
  max-width: 1205px;
  margin: 0 auto;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 30px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.hero-highlight {
  color: var(--orange);
  font-style: italic;
}

.hero-desc {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 32px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 7/4.5;
  background: var(--cream-dark);
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.hero-image-card:hover .hero-img {
  transform: scale(1.04);
}

/* Mission */
.mission-section {
  background: var(--cream-dark);
  text-align: center;
}

.mission-divider {
  width: 48px;
  height: 3px;
  background: var(--text-dark);
  border-radius: 2px;
  margin: 0 auto 28px;
}

.mission-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 500;
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.35;
  margin-bottom: 16px;
}

.mission-desc {
  font-size: 0.92rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Activities */
.activities-section {
  background: var(--cream);
}

.activities-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.explore-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  transition: color var(--transition);
  white-space: nowrap;
  margin-top: 8px;
}

.explore-link:hover {
  color: var(--orange);
}

.activities-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
}

.activity-card-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/11;
  background: var(--cream-dark);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.activity-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.activity-card-main:hover .activity-img {
  transform: scale(1.05);
}

.activity-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(30, 18, 10, 0.9) 0%, rgba(30, 18, 10, 0.3) 60%, transparent 100%);
  color: var(--white);
}

.activity-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 8px 0 6px;
}

.activity-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.activities-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.activity-card-sm {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  flex: 1;
  background: var(--cream-dark);
  box-shadow: var(--shadow);
  cursor: pointer;
  min-height: 150px;
}

.activity-img-sm {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.activity-card-sm:hover .activity-img-sm {
  transform: scale(1.05);
}

.activity-overlay-sm {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(30, 18, 10, 0.88) 0%, transparent 100%);
  color: var(--white);
}

.activity-title-sm {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.activity-desc-sm {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Chairman */
.chairman-section {
  background: var(--brown-dark);
  padding: 80px 0;
}

.chairman-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: center;
}

.chairman-img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3.5/4;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-lg);
}

.chairman-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chairman-content {
  color: var(--white);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}

.chairman-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 24px;
}

.chairman-attr {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 16px;
}

.chairman-attr strong {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

.chairman-attr span {
  font-size: 0.8rem;
  color: var(--orange);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

.chairman-bio {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  text-align: justify;
}

.chairman-section .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.85);
  background: transparent;
}

.chairman-section .btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(242, 140, 40, 0.1);
}

/* Donate CTA */
.donate-cta-section {
  background: var(--cream-dark);
}

.donate-cta-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}

.donate-amounts {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.donate-amount-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
  background: var(--cream);
}

.donate-amount-item input {
  display: none;
}

.donate-amount-item:hover,
.donate-amount-item.active {
  border-color: var(--orange);
  background: var(--orange-light);
}

.amount-icon {
  font-size: 1.4rem;
}

.amount-val {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.amount-label {
  font-size: 0.73rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {

  /* Slider Responsive */
  .slider-container {
    height: 360px;
  }

  .slider-caption {
    padding: 24px;
  }

  .slider-caption h3 {
    font-size: 1.4rem;
  }

  .slider-caption p {
    font-size: 0.88rem;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
    font-size: 1.2rem;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 30px 20px;
    min-height: auto;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-image-card {
    aspect-ratio: 16/9;
  }

  .chairman-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .chairman-img-wrap {
    aspect-ratio: 3/4;
    max-width: 320px;
    margin: 0 auto;
  }

  .activities-grid {
    grid-template-columns: 1fr;
  }

  .activities-right {
    flex-direction: row;
  }

  .activities-header {
    flex-direction: column;
  }

  .explore-link {
    margin-top: 0;
  }
}

@media (max-width: 600px) {

  /* Slider Mobile Responsive */
  .slider-container {
    height: 240px;
  }

  .slider-caption {
    padding: 16px;
  }

  .slider-caption h3 {
    font-size: 1.1rem;
    margin-bottom: 4px;
  }

  .slider-caption p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .slider-btn {
    width: 32px;
    height: 32px;
    font-size: 1rem;
    left: 10px;
    right: 10px;
  }

  .slider-dots {
    bottom: 10px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }

  .donate-cta-card {
    padding: 32px 20px;
  }

  .activities-right {
    flex-direction: column;
  }
}