/* ==========================================================================
   THE BRANDLAUREATE ACCREDITATION COUNCIL
   MINIMALIST LUXURY ANIMATED COMING SOON PAGE
   Colors:
   - Deep Midnight Obsidian / Dark Green: #001300 (#00130)
   - Signature BrandLaureate Gold: #B8913E
   - Pristine White: #FFFFFF
   - Luxury Obsidian Black: #111111
   ========================================================================== */

:root {
  --color-primary-gold: #B8913E;
  --color-gold-light: #DFC07A;
  --color-gold-bright: #F7E4B5;
  --color-gold-dark: #7A5C1F;
  --color-gold-glow: rgba(184, 145, 62, 0.4);
  
  --color-obsidian-deep: #001300; /* #00130 */
  --color-rich-black: #111111;
  
  --color-pure-white: #FFFFFF;
  --color-white-muted: rgba(255, 255, 255, 0.85);
  --color-white-subtle: rgba(255, 255, 255, 0.5);
  
  --font-serif: 'Cinzel', 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', system-ui, -apple-system, sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  background-color: var(--color-rich-black);
  color: var(--color-pure-white);
  font-family: var(--font-body);
  overflow: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Atmospheric Background - #111111 layered with deep #001300 gradients */
body {
  background: 
    radial-gradient(circle at 50% 50%, rgba(0, 19, 0, 0.9) 0%, rgba(17, 17, 17, 0.98) 75%),
    radial-gradient(circle at 20% 20%, rgba(184, 145, 62, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 19, 0, 0.7) 0%, transparent 60%),
    #111111;
}

/* Dynamic Interactive Particle Canvas */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}

/* Ambient Ambient Glows */
.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  animation: floatAmbient 16s ease-in-out infinite alternate;
}

.glow-1 {
  width: 650px;
  height: 650px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(184, 145, 62, 0.35) 0%, rgba(0, 19, 0, 0.2) 65%, transparent 100%);
}

.glow-2 {
  width: 500px;
  height: 500px;
  bottom: -100px;
  right: -50px;
  background: radial-gradient(circle, rgba(0, 19, 0, 0.85) 0%, rgba(184, 145, 62, 0.18) 60%, transparent 100%);
  animation-delay: -8s;
}

@keyframes floatAmbient {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-48%, -52%) scale(1.1); }
  100% { transform: translate(-52%, -48%) scale(0.95); }
}

/* Cursor Spotlight */
.cursor-spotlight {
  position: fixed;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 145, 62, 0.14) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: transform 0.08s ease-out, opacity 0.4s ease;
  opacity: 0;
}

body:hover .cursor-spotlight {
  opacity: 1;
}

/* Main Perfectly Centered Container */
.page-container {
  position: relative;
  z-index: 5;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.brand-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 1100px;
  animation: heroEntrance 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroEntrance {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Main Title: The BrandLaureate */
.main-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 7.8vw, 5.8rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.12;
  margin-bottom: 0.9rem;
  text-transform: uppercase;
}

/* Shimmering Metallic Gold Text */
.gold-shimmer-text {
  background: linear-gradient(
    115deg,
    #FFFFFF 0%,
    #DFC07A 20%,
    #B8913E 45%,
    #FFFFFF 55%,
    #B8913E 68%,
    #F3E5AB 85%,
    #FFFFFF 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerSweep 6s ease-in-out infinite;
  display: inline-block;
  filter: drop-shadow(0 4px 24px rgba(184, 145, 62, 0.4));
}

@keyframes shimmerSweep {
  0% { background-position: 100% 0; }
  50% { background-position: 0% 0; }
  100% { background-position: 100% 0; }
}

/* Subtitle: Accreditation Council (Smaller than Main Title) */
.subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 2.8rem;
  width: 100%;
}

.sub-line {
  height: 1px;
  width: clamp(40px, 8vw, 90px);
  background: linear-gradient(90deg, transparent, var(--color-primary-gold));
}

.sub-line.right {
  background: linear-gradient(90deg, var(--color-primary-gold), transparent);
}

.sub-title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.8vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.32em;
  color: var(--color-pure-white);
  text-transform: uppercase;
  opacity: 0.96;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8), 0 0 20px rgba(184, 145, 62, 0.25);
}

/* Animated Coming Soon Badge */
.coming-soon-wrapper {
  margin-top: 0.5rem;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 19, 0, 0.7);
  border: 1px solid rgba(184, 145, 62, 0.45);
  padding: 0.75rem 2.2rem;
  border-radius: 9999px;
  box-shadow: 
    0 10px 30px rgba(0, 0, 0, 0.6),
    0 0 20px rgba(184, 145, 62, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  transition: var(--transition-smooth);
}

.coming-soon-badge:hover {
  border-color: var(--color-gold-light);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.8),
    0 0 30px rgba(184, 145, 62, 0.45);
  transform: translateY(-2px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary-gold);
  box-shadow: 0 0 10px var(--color-primary-gold);
  animation: pulseDot 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.8); box-shadow: 0 0 4px var(--color-primary-gold); }
}

.badge-text {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.3vw, 0.92rem);
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--color-gold-light);
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 680px) {
  .page-container {
    padding: 1.5rem;
  }

  .subtitle-wrapper {
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .sub-line {
    width: 25px;
  }

  .coming-soon-badge {
    padding: 0.65rem 1.6rem;
    gap: 0.75rem;
  }

  .badge-text {
    letter-spacing: 0.25em;
  }
}
