@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Poppins:wght@400;500;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  line-height: 1.7;
  color: #2c2c2c;
  background: #fafafa;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

header {
  background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
              url("images/sikkim1.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 90px 20px;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

header p {
  font-size: 18px;
  opacity: 0.95;
}

.btn {
  display: inline-block;
  margin: 12px 8px;
  padding: 14px 28px;
  background: #c9a227; /* premium gold */
  color: #111;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #b8961e;
  transform: translateY(-2px);
}

.btn.green {
  background: #25d366;
  color: #fff;
}

section {
  padding: 70px 20px;
  max-width: 1100px;
  margin: auto;
}

.gray {
  background: #ffffff;
}

section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  text-align: center;
  margin-bottom: 30px;
}

footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 25px;
  font-size: 14px;
}
.gallery-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}

.gallery-section h2 {
  text-align: center;
  margin-bottom: 25px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

/* VIDEO BACKGROUND HERO */
.video-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.video-hero iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300vh;
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.video-content h1 {
  font-size: 52px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

.video-content p {
  font-size: 20px;
  margin-bottom: 24px;
}

/* PHONE / MOBILE FALLBACK */
@media (max-width: 768px) {
  .video-hero iframe {
    display: none;
  }
  .video-hero {
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url("images/sikkim1.jpg") center / cover no-repeat;
  }
}

