/* ===== BABELLA WEBSITE - MAIN STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800;900&family=Playfair+Display:wght@700;900&display=swap');

:root {
  --pink: #FF6B9D;
  --purple: #9B5DE5;
  --mint: #00C9B1;
  --dark-pink: #E84B82;
  --dark-purple: #7B3FD4;
  --soft-pink: #FFF0F5;
  --soft-purple: #F5EEFF;
  --soft-mint: #E8FBF8;
  --dark: #1A0B2E;
  --text: #2D1B4E;
  --gray: #6B7280;
  --light-gray: #F9FAFB;
  --white: #FFFFFF;
  --gradient: linear-gradient(135deg, var(--pink), var(--purple));
  --gradient-soft: linear-gradient(135deg, #FFE4F0, #F0E6FF, #E0FFF9);
  --shadow: 0 20px 60px rgba(155, 93, 229, 0.15);
  --shadow-sm: 0 8px 24px rgba(155, 93, 229, 0.1);
  --radius: 24px;
  --radius-sm: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: 'Playfair Display', serif; line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 900; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.tag-pink { background: var(--soft-pink); color: var(--pink); }
.tag-purple { background: var(--soft-purple); color: var(--purple); }
.tag-mint { background: var(--soft-mint); color: var(--mint); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-family: 'Nunito', sans-serif;
}
.btn-gradient {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 30px rgba(155,93,229,0.35);
}
.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(155,93,229,0.45);
}
.btn-dark {
  background: var(--dark);
  color: white;
  box-shadow: 0 8px 30px rgba(26,11,46,0.25);
}
.btn-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(26,11,46,0.35);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--purple);
  color: var(--purple);
}
.btn-outline:hover { background: var(--purple); color: white; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(155,93,229,0.08);
  transition: all 0.3s;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--purple); background: var(--soft-purple); }
.nav-links .nav-cta {
  background: var(--gradient);
  color: white !important;
  box-shadow: var(--shadow-sm);
}
.nav-links .nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.nav-lang {
  display: flex;
  gap: 4px;
}
.lang-btn {
  background: none;
  border: 1px solid rgba(155,93,229,0.2);
  color: var(--gray);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  transition: all 0.2s;
}
.lang-btn:hover, .lang-btn.active {
  background: var(--purple);
  color: white;
  border-color: var(--purple);
}

/* ===== HERO ===== */
.hero {
  padding: 130px 0 80px;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -150px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(155,93,229,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,107,157,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(155,93,229,0.1);
  color: var(--purple);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 1px solid rgba(155,93,229,0.2);
}
.hero h1 { color: var(--dark); margin-bottom: 20px; }
.hero-sub {
  font-size: 18px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  color: var(--gray);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}
.trust-dot { color: var(--mint); font-size: 18px; }

/* Phone screenshots gallery */
.hero-visual {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: center;
}
.phone-frame {
  background: white;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid rgba(255,255,255,0.8);
}
.phone-frame img {
  width: 160px;
  display: block;
}
.phone-frame.main {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 30px 80px rgba(155,93,229,0.25);
}
.phone-frame.side {
  opacity: 0.85;
  margin-top: 30px;
}

/* ===== STATS ===== */
.stats {
  background: linear-gradient(135deg, var(--dark), #2D1B4E);
  padding: 60px 0;
}
.stats .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--mint));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 6px;
}
.stat-label {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  font-weight: 600;
}

/* ===== FEATURES ===== */
.features { padding: 100px 0; background: white; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { color: var(--dark); margin-bottom: 14px; }
.section-header p { font-size: 18px; color: var(--gray); max-width: 560px; margin: 0 auto; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feat-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient);
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.feat-card:hover {
  background: white;
  border-color: rgba(155,93,229,0.12);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon { font-size: 44px; margin-bottom: 16px; }
.feat-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  font-family: 'Nunito', sans-serif;
}
.feat-desc { font-size: 14px; color: var(--gray); line-height: 1.6; }

/* ===== SCREENSHOTS SECTION ===== */
.screenshots { padding: 100px 0; background: var(--gradient-soft); }
.screenshots-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 40px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }
.screen-item {
  flex-shrink: 0;
  scroll-snap-align: start;
}
.screen-item img {
  width: 200px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 3px solid white;
  transition: transform 0.3s;
}
.screen-item img:hover { transform: scale(1.05); }
.screen-label {
  text-align: center;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray);
}

/* ===== AI SECTION ===== */
.ai-section { padding: 100px 0; background: white; }
.ai-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ai-mockup {
  background: white;
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(155,93,229,0.1);
}
.ai-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--soft-purple);
}
.ai-avatar {
  width: 44px; height: 44px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.ai-name { font-weight: 800; font-size: 16px; color: var(--dark); }
.ai-sub { font-size: 12px; color: var(--mint); font-weight: 600; }
.chat-msg {
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}
.chat-user {
  background: var(--soft-purple);
  color: var(--text);
  border-radius: 18px 18px 4px 18px;
  margin-left: 20px;
}
.chat-ai {
  background: var(--gradient);
  color: white;
  border-radius: 18px 18px 18px 4px;
  margin-right: 20px;
}
.ai-sources {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.source-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  background: rgba(255,255,255,0.2);
}

.ai-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ai-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 16px;
  line-height: 1.5;
}
.check-icon {
  width: 28px; height: 28px;
  background: var(--soft-purple);
  color: var(--purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  font-weight: 800;
}

/* ===== DRESS SECTION ===== */
.dress-section { padding: 100px 0; background: var(--soft-mint); }
.dress-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.dress-card {
  background: white;
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--shadow);
}
.weather-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #E0F9FF, #F0E6FF);
  border-radius: 20px;
}
.temp-display {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
}
.weather-details { flex: 1; }
.weather-city { font-size: 18px; font-weight: 800; color: var(--dark); }
.weather-info { font-size: 13px; color: var(--gray); margin-top: 4px; }
.outfit-recommendation {
  background: var(--soft-purple);
  border-radius: 16px;
  padding: 16px 20px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  font-weight: 600;
}
.layers-list { display: flex; flex-direction: column; gap: 8px; }
.layer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--soft-purple);
}
.layer-num {
  width: 22px; height: 22px;
  background: var(--gradient);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ===== WHY BABELLA ===== */
.why-section { padding: 100px 0; background: white; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.why-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius);
  background: var(--light-gray);
  transition: all 0.3s;
}
.why-card:hover {
  background: white;
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.why-icon { font-size: 56px; margin-bottom: 20px; }
.why-title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.why-desc { font-size: 15px; color: var(--gray); line-height: 1.6; }

/* ===== CTA ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--dark), #2D1B4E);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(155,93,229,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 { color: white; margin-bottom: 16px; position: relative; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 40px; position: relative; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ===== FOOTER ===== */
footer {
  background: #0F061E;
  color: rgba(255,255,255,0.55);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-desc { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-langs { display: flex; gap: 8px; }
.footer-col h4 { color: white; font-size: 15px; font-weight: 700; margin-bottom: 20px; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 12px;
  transition: color 0.2s;
  font-weight: 500;
}
.footer-col a:hover { color: var(--pink); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}
.footer-links-bottom { display: flex; gap: 24px; }
.footer-links-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links-bottom a:hover { color: var(--pink); }

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding: 120px 0 60px;
  background: var(--gradient-soft);
  text-align: center;
}
.legal-hero h1 { color: var(--dark); margin-bottom: 16px; }
.legal-hero p { font-size: 18px; color: var(--gray); }
.legal-content {
  padding: 60px 0 100px;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
.legal-content h2 {
  font-size: 24px;
  color: var(--dark);
  margin: 40px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--soft-purple);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
}
.legal-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 16px 0 16px 24px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.8;
}
.legal-content ul li { margin-bottom: 8px; }
.legal-content a { color: var(--purple); }
.legal-date {
  display: inline-block;
  background: var(--soft-purple);
  color: var(--purple);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 40px;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: var(--soft-purple);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 16px;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--gradient);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.contact-label { font-size: 12px; color: var(--gray); font-weight: 600; text-transform: uppercase; }
.contact-value { font-size: 16px; color: var(--dark); font-weight: 700; }

.contact-form { background: white; border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 14px; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(155,93,229,0.15);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  transition: border-color 0.2s;
  background: white;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--purple);
}
.form-group textarea { height: 140px; resize: vertical; }

/* ===== DELETE ACCOUNT ===== */
.delete-warning {
  background: #FFF5F5;
  border: 2px solid #FCA5A5;
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.delete-warning-icon { font-size: 28px; flex-shrink: 0; }
.delete-warning h3 { color: #DC2626; font-size: 18px; margin-bottom: 8px; font-family: 'Nunito', sans-serif; font-weight: 800; }
.delete-warning p { color: #7F1D1D; font-size: 15px; line-height: 1.6; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.animate-float { animation: float 4s ease-in-out infinite; }
.fade-up { animation: fadeUp 0.7s ease forwards; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .navbar .container { padding: 0 20px; }
  .nav-links { display: none; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .ai-section .container,
  .dress-section .container,
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { justify-content: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .stats .container { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
