/* ===== CSS CUSTOM PROPERTIES (Brand Colors) ===== */
:root {
  --color-black: #000000;
  --color-burnt-sienna: #8e3200;
  --color-beige: #d7a86e;
  --color-light-tan: #ffebc1;
  --color-white: #ffffff;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  color: var(--color-white);
  background: var(--color-black);
}

/* ===== VIDEO BACKGROUND ===== */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Fallback background when video is not available */
.video-bg .fallback-bg {
  position: absolute;
  inset: 0;
  background: var(--color-burnt-sienna);
  z-index: 0;
}

/* Dark overlay on top of video for readability */
.video-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.40);
  z-index: 1;
}

/* ===== MAIN CONTENT ===== */
.content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  text-align: center;
  padding: 24px;
}

/* ===== LOGO IMAGE ===== */
.logo-wrapper {
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.2s forwards;
}

.brand-logo {
  width: auto;
  height: 220px;
  max-width: 90vw;
  object-fit: contain;
  filter: drop-shadow(0 2px 20px rgba(0, 0, 0, 0.3));
}

/* ===== DIVIDER ===== */
.divider {
  width: 60px;
  height: 1px;
  background: var(--color-beige);
  margin: 36px auto 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease 0.9s forwards;
}

/* ===== COMING SOON ===== */
.coming-soon {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  margin-top: 28px;
  opacity: 0;
  animation: fadeInUp 1s ease 1.1s forwards;
  color: var(--color-beige);
}

/* ===== SCROLL CHEVRON ===== */
.scroll-chevron {
  position: fixed;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease 1.4s forwards;
}

.scroll-chevron svg {
  width: 28px;
  height: 28px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  animation: float 2.5s ease-in-out infinite;
}

.scroll-chevron:hover svg {
  opacity: 1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(24px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

/* ===== RESPONSIVE ===== */

/* Tablets */
@media (max-width: 768px) {
  .brand-logo {
    height: 180px;
  }

  .coming-soon {
    font-size: 0.75rem;
    letter-spacing: 0.4em;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .brand-logo {
    height: 140px;
  }

  .coming-soon {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
  }

  .scroll-chevron {
    bottom: 28px;
  }
}
