/* ============================================
   COMING SOON PAGE — Style
   Minimalist split-screen design with 
   dark green accents on black background
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --bg-black: #000000;
  --green-dark: #145A32;
  --green-mid: #1E8449;
  --green-accent: #27AE60;
  --green-glow: rgba(39, 174, 96, 0.4);
  --text-green: #1E8449;
  --text-green-light: #2ECC71;
  --font-display: 'Outfit', sans-serif;
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html, body {
  height: 100%;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-black);
  font-family: var(--font-display);
  color: var(--text-green);
}

/* ---------- Split View Layout ---------- */
.split-view {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

/* ---------- Left Panel ---------- */
.left-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--bg-black) 0%,
    #0a0a0a 50%,
    #050505 100%
  );
}

/* Subtle ambient glow behind text */
.left-panel::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    var(--green-glow) 0%,
    transparent 70%
  );
  filter: blur(60px);
  opacity: 0.5;
  pointer-events: none;
}

/* Logo Image — large, above the heading */
.logo-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin-bottom: 40px;
  object-fit: contain;
}

.text-content {
  text-align: center;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

/* Main heading */
.main-heading {
  font-size: clamp(2.5rem, 3vw, 5rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-green);
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 
    0 0 30px var(--green-glow),
    0 0 60px rgba(39, 174, 96, 0.2);
  transition: var(--transition-smooth);
}

.main-heading:hover {
  color: var(--text-green-light);
  text-shadow: 
    0 0 40px var(--green-glow),
    0 0 80px rgba(39, 174, 96, 0.3);
}

/* Subheading */
.subheading {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--text-green);
  opacity: 0.8;
  animation: fadeInUp 1s ease-out 0.2s both;
}

/* ---------- Right Panel ---------- */
.right-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
}

/* Slideshow container */
.slideshow-container {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Individual slides */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  filter: grayscale(20%) contrast(1.05);
}

.slide.active {
  opacity: 1;
}

/* ---------- Footer ---------- */
.social-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  background: linear-gradient(to top, var(--bg-black) 0%, transparent 100%);
  z-index: 100;
}

.social-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

/* Social link icons */
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--text-green);
  transition: var(--transition-smooth);
}

.social-link svg {
  width: 24px;
  height: 24px;
}

.social-link:hover {
  color: var(--text-green-light);
  transform: scale(1.15) translateY(-2px);
  filter: drop-shadow(0 0 8px var(--green-glow));
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Responsive: Mobile Stack ---------- */
@media (max-width: 768px) {
  .split-view {
    flex-direction: column;
    min-height: 100vh;
  }

  .left-panel {
    flex: 0 0 auto;
    min-height: 50vh;
    padding: 3rem 2rem;
  }

  .right-panel {
    flex: 1;
    min-height: 50vh;
  }

  .text-content {
    animation: fadeInUp 0.8s ease-out;
  }

  .social-footer {
    position: relative;
    padding: 1.5rem;
    background: var(--bg-black);
  }
}

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