/* ===== Homepage Full-screen Sections ===== */
.home-sections {
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.home-section {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  overflow: hidden;
}

/* Video Background */
.home-section .video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-section .video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.home-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 21, 34, 0.45);
  z-index: 1;
}

/* Content */
.home-section .content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 30px;
  max-width: 800px;
}

.home-section .content h1 {
  font-size: 60px;
  font-weight: 300;
  letter-spacing: 6px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.home-section .content .subtitle {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 35px;
  color: rgba(239, 236, 234, 0.85);
}

/* Section Index Indicator */
.section-indicator {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section-indicator .dot {
  width: 10px; height: 10px;
  border: 1px solid rgba(239, 236, 234, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}
.section-indicator .dot.active {
  background: var(--gold);
  border-color: var(--gold);
}

/* Scroll Down Hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
  animation: bounce 2s infinite;
}
.scroll-hint span { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; }
.scroll-hint .arrow-down {
  width: 20px; height: 20px;
  border-right: 1px solid var(--light);
  border-bottom: 1px solid var(--light);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Section 2 — Premium Brand */
.home-section--brand .overlay {
  background: linear-gradient(135deg, rgba(0, 21, 34, 0.7), rgba(175, 128, 97, 0.2));
}

/* Section 3 — Story */
.home-section--story .overlay {
  background: rgba(0, 21, 34, 0.55);
}

/* Section 4 — Consultation */
.home-section--consult .overlay {
  background: linear-gradient(to right, rgba(0, 21, 34, 0.8), rgba(0, 21, 34, 0.3));
}
.home-section--consult .content { text-align: left; max-width: 600px; margin-left: 10%; }

/* Section 5 — News */
.home-section--news .overlay {
  background: rgba(0, 21, 34, 0.65);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .home-section .content h1 { font-size: 36px; letter-spacing: 3px; }
  .home-section .content .subtitle { font-size: 16px; }
  .home-section--consult .content { text-align: center; margin-left: 0; }
  .section-indicator { right: 15px; }
  .scroll-hint { bottom: 25px; }
}
