/* CSS Variables for Romantic Theme */
:root {
  --gradient-primary: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  --gradient-secondary: linear-gradient(135deg, #4ecdc4, #88d8d0);
  --gradient-accent: linear-gradient(135deg, #ffd166, #ffe1a0);
  
  --bg-primary: #fff0f5;
  --bg-secondary: #ffe6f0;
  --bg-tertiary: #ffddf5;
  
  --text-primary: #ff6b9d;
  --text-secondary: #ff8e8e;
  --text-tertiary: #a64ca6;
  
  --border-radius: 12px;
  --transition-speed: 300ms;
  --transition-ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-heading: 'Playfair Display', serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-align: center;
  margin-top: 2rem;
}

/* Container & Layout Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 10;
}

/* Coming Soon Section */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem 0;
  text-align: center;
  min-height: 100vh;
}

.coming-soon-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
}

.coming-soon-title {
  margin-bottom: 1.5rem;
  font-weight: 800;
  color: #ff6b9d;
  text-shadow: 0 0 10px rgba(255, 107, 157, 0.3);
}

.title-line {
  display: block;
}

.coming-soon-text {
  color: #ff8e8e;
  font-size: clamp(1.5rem, 4vw, 3rem);
  margin-bottom: 2.5rem;
  font-weight: 600;
  line-height: 1.7;
}

/* Falling Emojis */
.falling-emojis {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.emoji {
  position: absolute;
  font-size: 2rem;
  top: -50px;
  animation: fall linear forwards;
  opacity: 0.8;
}

@keyframes fall {
  to {
    transform: translateY(105vh) rotate(360deg);
  }
}

/* Heart Animation */
.heart {
  position: absolute;
  font-size: 2rem;
  color: #ff6b9d;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.8;
  }
}

/* Background Elements */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
  z-index: -1;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--gradient-primary);
  top: 10%;
  left: 10%;
  animation: float 15s infinite ease-in-out;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: var(--gradient-secondary);
  bottom: 10%;
  right: 10%;
  animation: float 12s infinite ease-in-out;
}

.orb-3 {
  width: 200px;
  height: 200px;
  background: var(--gradient-accent);
  top: 50%;
  left: 50%;
  animation: float 18s infinite ease-in-out;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  .coming-soon {
    padding: 3rem 0;
  }
  
  .coming-soon-content {
    padding: 0 1rem;
  }
  
  h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
  }
}

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