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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: #ffffff;
  background: #0f172a;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.75) 0%,
      rgba(15, 23, 42, 0.85) 100%
    ),
    url("https://images.unsplash.com/photo-1605640840605-14ac1855827b?q=90&w=2400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  animation: subtleZoom 20s ease-in-out infinite alternate;
}

@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  animation: heroFadeIn 1.5s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.logo {
  width: clamp(120px, 20vw, 200px);
  height: auto;
  margin: 0 auto 3rem;
  filter: drop-shadow(0 10px 40px rgba(0, 0, 0, 0.5));
  animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.title {
  font-family: "Montserrat", serif;
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  text-shadow: 0 10px 50px rgba(0, 0, 0, 0.6);
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.subtitle {
  font-family: "Poppins", serif;
  font-size: clamp(1.2rem, 4vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: lowercase;
  opacity: 0.9;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator span {
  display: block;
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  position: relative;
}

.scroll-indicator span::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: scrollDown 2s infinite;
}

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

@keyframes scrollDown {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(16px);
  }
}

/* ========================================
   COMING SOON SECTION
   ======================================== */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.92) 0%,
      rgba(30, 41, 59, 0.88) 50%,
      rgba(15, 23, 42, 0.92) 100%
    ),
    url("https://images.unsplash.com/photo-1544735716-392fe2489ffa?q=90&w=2400&auto=format&fit=crop");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
}

.coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(220, 38, 38, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 50%,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 50%
    );
  animation: gradientShift 8s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.coming-soon-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 3rem 2rem;
  max-width: 800px;
  animation: fadeInScale 1.2s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.ornament {
  width: 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.6) 50%,
    transparent 100%
  );
  margin: 0 auto;
  position: relative;
}

.ornament.top {
  margin-bottom: 3rem;
}

.ornament.top::after,
.ornament.top::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.ornament.top::before {
  left: 0;
}

.ornament.top::after {
  right: 0;
}

.ornament.bottom {
  margin-top: 3rem;
  transform: rotate(180deg);
}

.ornament.bottom::after,
.ornament.bottom::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.ornament.bottom::before {
  left: 0;
}

.ornament.bottom::after {
  right: 0;
}

.coming-soon-title {
  font-family: "Cinzel", serif;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #fef3c7 50%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4));
  }
  to {
    filter: drop-shadow(0 0 45px rgba(255, 255, 255, 0.6));
  }
}

.coming-soon-text {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.05em;
  opacity: 0.95;
  line-height: 1.8;
  color: #f1f5f9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
  .hero-background {
    background-attachment: scroll;
  }

  .coming-soon {
    background-attachment: scroll;
  }

  .logo {
    width: clamp(100px, 25vw, 150px);
    margin-bottom: 2rem;
  }

  .title {
    font-size: clamp(2.5rem, 12vw, 5rem);
  }

  .subtitle {
    font-size: clamp(1rem, 4vw, 1.5rem);
  }

  .scroll-indicator {
    bottom: 2rem;
  }

  .coming-soon-content {
    padding: 2rem 1.5rem;
  }

  .ornament {
    width: 80px;
  }

  .ornament.top {
    margin-bottom: 2rem;
  }

  .ornament.bottom {
    margin-top: 2rem;
  }

  .coming-soon-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .coming-soon-text {
    font-size: clamp(1rem, 3vw, 1.3rem);
  }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-background {
    animation: none;
  }

  .logo {
    animation: none;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  .scroll-indicator {
    display: none;
  }
}
