/* ==========================================================================
   Easy to Travel - Recreated Logo & Coming Soon Stylesheet
   Modern, Ultra-Premium Responsive Design System (Default Light Theme)
   ========================================================================== */

:root {
  /* Brand Color Palette */
  --brand-cyan-light: #38bdf8;
  --brand-cyan: #06b6d4;
  --brand-cyan-dark: #0e7490;
  --brand-pink-light: #f472b6;
  --brand-pink: #ec4899;
  --brand-pink-dark: #be185d;
  --brand-gold: #fbbf24;
  --brand-emerald: #10b981;

  /* Theme: Light Tropical Mode (Default) */
  --bg-primary: #f0fdfa;
  --bg-secondary: #e0f2fe;
  --card-bg: rgba(255, 255, 255, 0.92);
  --card-border: rgba(14, 165, 233, 0.22);
  --card-shadow: 0 25px 50px -12px rgba(14, 116, 144, 0.16), 0 0 30px rgba(236, 72, 153, 0.06);
  
  --text-main: #0f172a;
  --text-muted: #475569;
  --text-highlight: #0284c7;

  --input-bg: #ffffff;
  --input-border: rgba(14, 165, 233, 0.28);

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  background-image: radial-gradient(at 100% 0%, rgba(224, 242, 254, 0.8) 0px, transparent 50%),
                    radial-gradient(at 0% 100%, rgba(240, 253, 250, 0.9) 0px, transparent 50%),
                    radial-gradient(at 50% 50%, rgba(253, 242, 248, 0.6) 0px, transparent 60%);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  line-height: 1.6;
}

/* Canvas Ambient Background */
#ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
}

/* Ambient Glow Blobs */
.glow-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
}

.orb-1 {
  width: min(500px, 80vw);
  height: min(500px, 80vw);
  top: -80px;
  left: -80px;
  background: radial-gradient(circle, var(--brand-cyan), transparent 70%);
  animation: floatOrb 18s ease-in-out infinite alternate;
}

.orb-2 {
  width: min(550px, 85vw);
  height: min(550px, 85vw);
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, var(--brand-pink), transparent 70%);
  animation: floatOrb 22s ease-in-out infinite alternate-reverse;
}

.orb-3 {
  width: min(380px, 60vw);
  height: min(380px, 60vw);
  top: 40%;
  left: 55%;
  background: radial-gradient(circle, #38bdf8, transparent 70%);
  animation: floatOrb 15s ease-in-out infinite alternate;
}

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.1); }
  100% { transform: translate(-30px, -40px) scale(0.92); }
}

/* ==========================================================================
   Layout Wrapper
   ========================================================================== */
.app-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem) 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 4vw, 3rem);
}

/* ==========================================================================
   Top Header & Announcement Badge
   ========================================================================== */
.top-header {
  text-align: center;
  max-width: 820px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.75rem, 2vw, 1.25rem);
}

/* Badge: PRÓXIMAMENTE - ESTAMOS TRABAJANDO */
.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.55rem 1.35rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(14, 165, 233, 0.35);
  box-shadow: 0 4px 20px rgba(6, 182, 212, 0.18), inset 0 0 12px rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulseBadge 3s infinite ease-in-out;
  max-width: 100%;
}

.coming-soon-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.25);
}

.badge-ping {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--brand-pink);
  box-shadow: 0 0 8px var(--brand-pink);
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.badge-ping::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid var(--brand-pink);
  animation: pingRing 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingRing {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

@keyframes pulseBadge {
  0%, 100% { box-shadow: 0 4px 20px rgba(6, 182, 212, 0.18); }
  50% { box-shadow: 0 6px 28px rgba(236, 72, 153, 0.3); }
}

.badge-icon {
  font-size: 1.15rem;
  animation: planeWiggle 2.5s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes planeWiggle {
  0%, 100% { transform: rotate(0deg) translate(0, 0); }
  25% { transform: rotate(8deg) translate(2px, -2px); }
  75% { transform: rotate(-6deg) translate(-1px, 1px); }
}

.badge-text {
  font-family: var(--font-heading);
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: linear-gradient(90deg, #0284c7, #db2777, #0284c7);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shineText 4s linear infinite;
  white-space: nowrap;
}

@keyframes shineText {
  to { background-position: 200% center; }
}

.main-heading {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.gradient-text {
  background: linear-gradient(135deg, #0284c7 0%, #06b6d4 40%, #db2777 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.sub-heading {
  font-size: clamp(0.95rem, 2.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.6;
}

/* ==========================================================
   Showcase Container & 3D Interactive Card
   ========================================================== */
.showcase-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

.logo-3d-card {
  position: relative;
  width: 100%;
  max-width: 680px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: clamp(20px, 4vw, 36px);
  padding: clamp(1.25rem, 3vw, 2.25rem) clamp(0.75rem, 2vw, 1.5rem) clamp(1rem, 2.5vw, 1.8rem);
  box-shadow: var(--card-shadow);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-3d-card:hover {
  box-shadow: 0 35px 70px -15px rgba(14, 116, 144, 0.25), 0 0 50px rgba(6, 182, 212, 0.18), 0 0 30px rgba(236, 72, 153, 0.12);
}

.svg-container {
  width: 100%;
  max-width: 580px;
  aspect-ratio: 900 / 1050;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  user-select: none;
}

.svg-container svg {
  width: 100%;
  height: 100%;
  max-height: 75vh;
  overflow: visible;
  filter: drop-shadow(0 15px 35px rgba(14, 116, 144, 0.18));
}

/* ==========================================================
   SVG Specific Elements & Animations
   ========================================================== */

/* Top & Bottom Curved Typography */
.curved-text-top textPath {
  fill: #14a3be;
  text-shadow: 0 3px 12px rgba(20, 163, 190, 0.3);
  font-weight: 900;
}

.curved-text-bottom textPath {
  fill: #db2777;
  text-shadow: 0 4px 15px rgba(219, 39, 119, 0.35);
  font-weight: 900;
}

/* Globe Shimmer / Ambient Breathing */
.globe-group {
  transform-origin: 450px 510px;
  animation: globeGentleFloat 8s ease-in-out infinite alternate;
}

@keyframes globeGentleFloat {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-8px) scale(1.012); }
}

/* Location Pins */
.map-pin {
  transform-origin: bottom center;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pin-yellow {
  animation: pinBounce 3.2s ease-in-out infinite;
}

.pin-green {
  animation: pinBounce 3.6s ease-in-out infinite 0.8s;
}

.pin-pink {
  animation: pinBounce 3.0s ease-in-out infinite 0.4s;
}

@keyframes pinBounce {
  0%, 100% { transform: scale(1); }
  50% { transform: translateY(-8px) scale(1.08); }
}

.pin-wave {
  animation: waveExpand 2.2s infinite ease-out;
  transform-origin: center;
}

.wave-heart {
  animation: heartPulse 1.4s infinite ease-in-out;
}

@keyframes waveExpand {
  0% { r: 6; opacity: 1; stroke-width: 3; }
  100% { r: 24; opacity: 0; stroke-width: 0.5; }
}

@keyframes heartPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

/* Airplane 3D Continuous Orbiting Flight Animation */
.flight-orbit-container {
  transform-origin: 450px 510px;
}

.airplane-object {
  cursor: pointer;
  transform-origin: center;
  transition: filter 0.3s ease;
}

.airplane-object:hover {
  filter: drop-shadow(0 0 20px #ff2a85) drop-shadow(0 0 35px #38bdf8);
}

/* Travel Luggage Items: Gentle, Subtle Ambient Floating (Anchored & Smooth) */
.luggage-item {
  pointer-events: none;
}

.item-anim-white {
  transform-origin: center bottom;
  animation: subtleFloatWhite 5s ease-in-out infinite alternate;
}

.item-anim-blue {
  transform-origin: center bottom;
  animation: subtleFloatBlue 5.8s ease-in-out infinite alternate 0.8s;
}

.item-anim-visa {
  transform-origin: center bottom;
  animation: subtleFloatVisa 4.6s ease-in-out infinite alternate 0.4s;
}

.item-anim-passport {
  transform-origin: center bottom;
  animation: subtleFloatPassport 5.2s ease-in-out infinite alternate 1.2s;
}

@keyframes subtleFloatWhite {
  0% { transform: translateY(0); }
  100% { transform: translateY(-4px); }
}

@keyframes subtleFloatBlue {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-3.5px) rotate(0.4deg); }
}

@keyframes subtleFloatVisa {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-4px) rotate(-0.6deg); }
}

@keyframes subtleFloatPassport {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-4.5px) rotate(0.5deg); }
}

/* ==========================================================
   Bottom Panel & Glass Cards
   ========================================================== */
.bottom-panel {
  width: 100%;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

.glass-panel {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: clamp(18px, 3vw, 24px);
  padding: clamp(1.25rem, 3vw, 1.8rem);
  box-shadow: 0 15px 35px -10px rgba(14, 116, 144, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* Return Soon Message Card */
.return-soon-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(240, 253, 250, 0.9));
  border: 1.5px solid rgba(14, 165, 233, 0.25);
  box-shadow: 0 20px 40px -12px rgba(14, 116, 144, 0.12), 0 0 25px rgba(236, 72, 153, 0.06);
  padding: clamp(1.8rem, 4vw, 2.5rem) clamp(1.2rem, 3vw, 2rem);
}

.return-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.95rem;
  border-radius: 9999px;
  background: rgba(236, 72, 153, 0.1);
  border: 1px solid rgba(236, 72, 153, 0.25);
  font-size: 0.78rem;
  font-weight: 800;
  color: #db2777;
  letter-spacing: 1px;
}

.return-soon-title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4.5vw, 2.4rem);
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.return-soon-text {
  font-size: clamp(0.95rem, 2.2vw, 1.12rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}

/* Features Highlights Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.feature-card {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(14, 165, 233, 0.18);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-cyan);
  box-shadow: 0 16px 32px -10px rgba(14, 116, 144, 0.15);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.feature-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: #0f172a;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================
   Footer
   ========================================================== */
.main-footer {
  text-align: center;
  padding: 1.5rem 1rem 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid rgba(14, 165, 233, 0.15);
  width: 100%;
}

.main-footer strong {
  color: #0284c7;
}

/* ==========================================================
   Responsive Breakpoints & Polishing
   ========================================================== */
@media (max-width: 768px) {
  .app-wrapper {
    padding: 1.25rem 0.85rem 2.5rem;
    gap: 1.75rem;
  }

  .logo-3d-card {
    padding: 1.25rem 0.5rem 1rem;
    border-radius: 24px;
  }

  .return-soon-card {
    padding: 1.5rem 1rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .badge-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  
  .coming-soon-badge {
    padding: 0.45rem 0.9rem;
    gap: 0.45rem;
  }
  
  .logo-3d-card {
    padding: 0.85rem 0.25rem 0.75rem;
    border-radius: 20px;
  }
}

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