/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: #fffaf3;
  color: #333;
  line-height: 1.6;
}

/* NAVBAR */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 20px;
  font-weight: 600;
  color: #cf9e34;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #cfa827;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #c89b3c;
}

/* HERO
.hero {
  height: 90vh;
  background: url('https://source.unsplash.com/1600x900/?iskcon,temple') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: rgba(255, 255, 255, 0.85);
  padding: 50px;
  border-radius: 10px;
  text-align: center;
  animation: fadeUp 1s ease;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.hero p {
  margin-bottom: 20px;
} */

/* BUTTON */
.btn {
  background: #c89b3c;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s;
}

.btn:hover {
  background: #a87f2f;
}

/* SECTIONS */
.section {
  padding: 70px 20px;
  text-align: center;
}

.section h2 {
  margin-bottom: 20px;
  color: #c89b3c;
}

.intro {
  max-width: 700px;
  margin: auto;
}

/* CARDS */
.cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.card {
  width: 260px;
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-8px);
}

.card img {
  width: 100%;
  height: 180px;        /* fixed height */
  object-fit: cover;    /* crop properly */
  border-radius: 8px;
  margin-bottom: 10px;
}

.card h3 {
  margin-bottom: 5px;
}

/* BOOKS SECTION */
.books {
  background: #fff3dc;
}

/* FORM */
.form {
  margin-top: 20px;
}

form input {
  width: 250px;
  padding: 10px;
  margin: 10px auto;
  display: block;
  border: 1px solid #ddd;
  border-radius: 5px;
}

button {
  background: #c89b3c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #a87f2f;
}

/* TESTIMONIAL */
.testimonial {
  background: #fff0d6;
  font-style: italic;
  padding: 60px 20px;
}

/* CTA */
.cta {
  background: #fce8c8;
}

/* CONTACT */
.contact {
  background: #fffaf3;
}

.whatsapp {
  display: inline-block;
  margin: 10px 0;
  background: #25D366;
  color: white;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
}

/* FOOTER */
footer {
  background: #f5e6cc;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .hero h1 {
    font-size: 28px;
  }

  .hero-overlay {
    padding: 25px;
  }

  header {
    flex-direction: column;
  }

  nav {
    margin-top: 10px;
  }

}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* VIDEO FIX (IMPORTANT) */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* OVERLAY */
.hero-bg-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 250, 240, 0.6);
  z-index: 2;
}

/* CENTER CONTENT */
.hero-content {
  position: relative;
  z-index: 3;

  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  text-align: center;
  padding: 20px;
}

/* TEXT STYLE */
.hero-content h1 {
  font-size: 48px;
  color: #fff6a1;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #fff6a1;
}

/* BUTTON */
.btn {
  background: #c89b3c;
  color: white;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #a87f2f;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 14px;
  }
}
.card img {
  transition: 0.4s;
}

.card:hover img {
  transform: scale(1.05);
}

/* TRIPS SECTION */
.trips-section {
  background: #fff7e8;
}

.trips-subtext {
  margin-bottom: 30px;
  color: #555;
}

/* LAYOUT */
.trips-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* LEFT SIDE */
.trips-info {
  max-width: 350px;
  text-align: left;
}

.trips-info h3 {
  margin-bottom: 10px;
  color: #c89b3c;
}

.trips-info ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.trips-info li {
  margin-bottom: 8px;
}

/* NOTE */
.note {
  font-size: 14px;
  color: #777;
}

/* FORM BOX */
.trips-form-box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  width: 300px;
}

.trips-form-box h3 {
  margin-bottom: 15px;
  color: #c89b3c;
}

/* FORM */
.trips-form-box input {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.trips-form-box button {
  width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .trips-container {
    flex-direction: column;
    align-items: center;
  }

  .trips-info {
    text-align: center;
  }
}

.donation-container {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.donation-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  width: 320px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.qr {
  width: 200px;
  margin: 15px 0;
}

.note {
  font-size: 14px;
  margin-top: 10px;
  color: #666;
}

.small-hero {
  height: 50vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
              url('images/tovp.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}