/* ===================================================
   MOVITA EMS & PILATES – COMING SOON STYLES
   Brand palette: #E8620A (orange), #2E1A0E (dark brown),
   #F5EDE3 (warm cream), #C8490A (deep orange)
   =================================================== */

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

:root {
  --orange:      #E8620A;
  --orange-deep: #C8490A;
  --orange-light:#FF8C42;
  --orange-glow: rgba(232, 98, 10, 0.35);
  --brown-dark:  #2E1A0E;
  --brown-med:   #3D2410;
  --cream:       #F5EDE3;
  --cream-light: #FDF8F3;
  --warm-white:  #FFF9F4;
  --text-dark:   #1A0D05;
  --text-muted:  #7A5C46;
  --glass-bg:    rgba(255, 249, 244, 0.08);
  --glass-border:rgba(232, 98, 10, 0.25);
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--brown-dark);
  color: var(--cream);
  position: relative;
}

/* ===== BACKGROUND ORBS ===== */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
  animation: orb-float 8s ease-in-out infinite;
  z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: var(--orange);
  top: -200px; left: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: var(--orange-light);
  bottom: -100px; right: 30%;
  animation-delay: 3s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: #FFB347;
  top: 40%; right: 10%;
  animation-delay: 5s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.05); }
}

/* ===== FLOATING PARTICLES ===== */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--orange);
  border-radius: 50%;
  opacity: 0;
  animation: particle-rise 6s infinite;
}
.particles span:nth-child(1)  { left: 10%; animation-delay: 0s;   animation-duration: 7s; }
.particles span:nth-child(2)  { left: 25%; animation-delay: 1.5s; animation-duration: 6s; }
.particles span:nth-child(3)  { left: 40%; animation-delay: 3s;   animation-duration: 8s; }
.particles span:nth-child(4)  { left: 55%; animation-delay: 0.5s; animation-duration: 5s; }
.particles span:nth-child(5)  { left: 68%; animation-delay: 2s;   animation-duration: 9s; }
.particles span:nth-child(6)  { left: 80%; animation-delay: 4s;   animation-duration: 6s; }
.particles span:nth-child(7)  { left: 90%; animation-delay: 1s;   animation-duration: 7s; }
.particles span:nth-child(8)  { left: 15%; animation-delay: 2.5s; animation-duration: 8s; }

@keyframes particle-rise {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.2; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}

/* ===== PAGE LAYOUT ===== */
.page-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* ===== LEFT PANEL ===== */
.left-panel {
  position: relative;
  width: 42%;
  flex-shrink: 0;
  overflow: hidden;
}

/* Gallery slides */
.studio-gallery {
  position: absolute;
  inset: 0;
}
.gallery-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.gallery-slide.active {
  opacity: 1;
}

/* Gradient overlay on left panel */
.left-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(46,26,14,0.3) 0%, transparent 40%),
    linear-gradient(to top,   rgba(46,26,14,0.85) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(46,26,14,0.4) 0%, transparent 30%);
  z-index: 2;
}

/* Neon tagline overlay */
.panel-overlay {
  position: absolute;
  bottom: 80px;
  right: 32px;
  z-index: 3;
  text-align: right;
}

.neon-tagline {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.neon-tagline span {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 600;
  color: #FFD580;
  text-shadow:
    0 0 10px rgba(255, 183, 77, 0.9),
    0 0 25px rgba(255, 150, 30, 0.7),
    0 0 50px rgba(232, 98, 10, 0.5);
  line-height: 1.3;
  animation: neon-pulse 3s ease-in-out infinite;
}
.neon-tagline span:nth-child(2) { animation-delay: 0.5s; }
.neon-tagline span:nth-child(3) { animation-delay: 1s;   }

@keyframes neon-pulse {
  0%, 100% { text-shadow: 0 0 10px rgba(255,183,77,0.9), 0 0 25px rgba(255,150,30,0.7), 0 0 50px rgba(232,98,10,0.5); }
  50%       { text-shadow: 0 0 20px rgba(255,183,77,1.0), 0 0 45px rgba(255,150,30,1.0), 0 0 80px rgba(232,98,10,0.8); }
}

.panel-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 213, 128, 0.7);
  margin-top: 8px;
  text-align: right;
}

/* Gallery dots */
.gallery-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.dot.active {
  background: var(--orange);
  transform: scale(1.4);
  box-shadow: 0 0 10px var(--orange-glow);
}

/* ===== RIGHT PANEL ===== */
.right-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 56px 30px 52px;
  overflow-y: auto;
  overflow-x: hidden;
  background: linear-gradient(135deg,
    rgba(46,26,14,0.97) 0%,
    rgba(28,14,4,0.99) 100%);
  position: relative;
}

/* Subtle right panel edge glow */
.right-panel::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent, var(--orange), var(--orange-deep), transparent);
  opacity: 0.4;
}

/* ===== LOGO ===== */
.logo-wrap {
  margin-bottom: 24px;
  animation: fade-up 0.8s ease both;
}
.logo-img {
  height: 80px;
  width: auto;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 4px 20px rgba(232, 98, 10, 0.4));
  transition: filter 0.3s ease;
}
.logo-img:hover {
  filter: drop-shadow(0 4px 30px rgba(232, 98, 10, 0.7));
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 98, 10, 0.12);
  border: 1px solid rgba(232, 98, 10, 0.35);
  border-radius: 30px;
  padding: 6px 16px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange-light);
  margin-bottom: 20px;
  width: fit-content;
  animation: fade-up 0.8s 0.1s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--orange);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* ===== HEADLINE ===== */
.headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream-light);
  margin-bottom: 16px;
  animation: fade-up 0.8s 0.2s ease both;
}
.headline em {
  color: var(--orange);
  font-style: italic;
  display: block;
}

.sub-headline {
  font-size: 0.95rem;
  color: rgba(245, 237, 227, 0.7);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 30px;
  animation: fade-up 0.8s 0.3s ease both;
}
.sub-headline strong {
  color: var(--orange-light);
  font-weight: 600;
}

/* ===== COUNTDOWN ===== */
.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  animation: fade-up 0.8s 0.4s ease both;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(232, 98, 10, 0.08);
  border: 1px solid rgba(232, 98, 10, 0.2);
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 72px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.countdown-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,98,10,0.05), transparent);
}
.countdown-item:hover {
  border-color: rgba(232, 98, 10, 0.5);
  box-shadow: 0 0 20px rgba(232, 98, 10, 0.15);
}

.count-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1;
  text-shadow: 0 0 20px rgba(232, 98, 10, 0.4);
  transition: transform 0.3s ease;
}
.count-number.flip {
  animation: count-flip 0.4s ease;
}
@keyframes count-flip {
  0%   { transform: translateY(0); opacity: 1; }
  50%  { transform: translateY(-8px); opacity: 0; }
  51%  { transform: translateY(8px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.count-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 237, 227, 0.45);
  margin-top: 4px;
}

.countdown-sep {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--orange);
  opacity: 0.5;
  margin-bottom: 16px;
  animation: sep-blink 1s ease-in-out infinite;
}
@keyframes sep-blink {
  0%, 100% { opacity: 0.5; }
  50%       { opacity: 0.1; }
}

/* ===== SCRIPT DIVIDER ===== */
.script-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  animation: fade-up 0.8s 0.5s ease both;
}
.script-divider::before,
.script-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(232,98,10,0.3), transparent);
}
.script-text {
  font-family: 'Dancing Script', cursive;
  font-size: 1.15rem;
  color: rgba(232, 98, 10, 0.75);
  white-space: nowrap;
}

/* ===== FEATURES GRID ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
  animation: fade-up 0.8s 0.55s ease both;
}

.feature-card {
  background: rgba(255, 249, 244, 0.04);
  border: 1px solid rgba(232, 98, 10, 0.12);
  border-radius: 12px;
  padding: 16px 10px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}
.feature-card:hover {
  background: rgba(232, 98, 10, 0.1);
  border-color: rgba(232, 98, 10, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 98, 10, 0.12);
}

.feat-icon {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.feat-title {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange-light);
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}
.feat-desc {
  font-size: 0.62rem;
  color: rgba(245,237,227,0.5);
  line-height: 1.5;
}

/* ===== NOTIFY SECTION ===== */
.notify-section {
  margin-bottom: 24px;
  animation: fade-up 0.8s 0.65s ease both;
}
.notify-label {
  font-size: 0.82rem;
  color: rgba(245,237,227,0.65);
  margin-bottom: 12px;
}
.notify-form {
  display: flex;
  gap: 0;
  max-width: 420px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(232, 98, 10, 0.3);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.notify-form:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232, 98, 10, 0.15);
}
.notify-input {
  flex: 1;
  background: rgba(255, 249, 244, 0.06);
  border: none;
  outline: none;
  padding: 13px 18px;
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  color: var(--cream);
}
.notify-input::placeholder {
  color: rgba(245,237,227,0.35);
}
.notify-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  border: none;
  padding: 13px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.notify-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}
.notify-btn:hover::after {
  background: rgba(255,255,255,0.1);
}
.notify-btn:hover {
  box-shadow: 0 4px 15px rgba(232, 98, 10, 0.4);
}

.success-msg {
  display: none;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #6EDB90;
  animation: fade-up 0.4s ease;
}
.success-msg.show {
  display: block;
}

/* ===== CONTACT BAR ===== */
.contact-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 98, 10, 0.15);
  animation: fade-up 0.8s 0.75s ease both;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(245,237,227,0.6);
  text-decoration: none;
  transition: color 0.3s;
}
.contact-item:hover {
  color: var(--orange-light);
}
.contact-item svg {
  flex-shrink: 0;
  color: var(--orange);
}
.location-item {
  cursor: default;
}

/* ===== ANIMATIONS ===== */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== SCROLLBAR ===== */
.right-panel::-webkit-scrollbar {
  width: 4px;
}
.right-panel::-webkit-scrollbar-track {
  background: transparent;
}
.right-panel::-webkit-scrollbar-thumb {
  background: rgba(232, 98, 10, 0.3);
  border-radius: 2px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  html, body {
    overflow: auto;
  }
  .page-wrapper {
    flex-direction: column;
    height: auto;
    min-height: 100vh;
  }
  .left-panel {
    width: 100%;
    height: 55vw;
    min-height: 260px;
    max-height: 400px;
  }
  .right-panel {
    padding: 36px 28px 40px;
    overflow: visible;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .headline {
    font-size: 2rem;
  }
  .neon-tagline span {
    font-size: 1.5rem;
  }
  .countdown-item {
    padding: 10px 14px;
    min-width: 60px;
  }
  .count-number {
    font-size: 1.6rem;
  }
}

@media (max-width: 500px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .countdown-wrap {
    gap: 8px;
  }
  .contact-bar {
    gap: 14px;
  }
  .notify-form {
    flex-direction: column;
    border-radius: 12px;
  }
  .notify-btn {
    border-radius: 0 0 12px 12px;
    padding: 13px;
  }
}
