/* Hero Section Styles */
.header {
  background: transparent;
}
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.gallery-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 1rem;
  max-width: 900px;
  margin: 0 auto;
  animation: fade-in 1.2s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}
.hero-title-highlight {
  display: block;
  color: #fbbf24;
  font-size: 1.2em;
  margin-top: 0.2em;
}
.hero-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #e5e7eb;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 600px) {
  .hero-buttons {
    flex-direction: row;
  }
}
.hero-btn {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, transform 0.3s;
  outline: none;
}
.hero-btn-primary {
  background: #eab308;
  color: #fff;
}
.hero-btn-primary:hover {
  background: #ca8a04;
  transform: scale(1.05);
}
.hero-btn-secondary {
  background: #2d3a2e;
  color: #fff;
}
.hero-btn-secondary:hover {
  background: transparent;
  transform: scale(1.05);
}
/* Animations */
@keyframes fade-in {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 4;
  animation: bounce 1.5s infinite;
}
.scroll-indicator-outer {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid #fff;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.scroll-indicator-inner {
  width: 0.25rem;
  height: 0.75rem;
  background: #fff;
  border-radius: 999px;
  margin-top: 0.5rem;
  animation: pulse 1.2s infinite;
}
/* Responsive Typography */
@media (max-width: 900px) {
  .hero-title { font-size: 2.2rem; }
  .hero-content { max-width: 95vw; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 1.5rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-btn { font-size: 1rem; padding: 0.8rem 1.5rem; }
}
