/* =============================================
   IRENA SHAIN — Influencer Website
   Shared Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --rose: #e8708a;
  --blush: #f4a6b8;
  --gold: #c9a96e;
  --cream: #fff8f2;
  --dark: #0d0a0b;
  --dark2: #1a1215;
  --glass: rgba(255, 255, 255, 0.06);
  --glass-b: rgba(255, 255, 255, 0.12);
  --text: #f0e8ea;
  --muted: #a89097;
  --radius: 16px;
  --nav-h: 72px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ---- Animated Gradient Background ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(232, 112, 138, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 80%, rgba(201, 169, 110, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 60% 30%, rgba(244, 166, 184, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Navigation ---- */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(13, 10, 11, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  z-index: 1000;
  transition: background 0.3s;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(13, 10, 11, 0.97);
  backdrop-filter: blur(20px);
  padding: 24px 40px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.mobile-menu a:hover {
  color: var(--rose);
}

/* ---- Glass Card ---- */
.glass-card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ---- Gradient Text ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Section Base ---- */
section {
  position: relative;
  z-index: 1;
  padding: 100px 40px;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--rose), #d4567a);
  color: #fff;
  box-shadow: 0 8px 32px rgba(232, 112, 138, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(232, 112, 138, 0.50);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: var(--glass-b);
  border-color: var(--rose);
  color: var(--rose);
  transform: translateY(-2px);
}

/* ---- Social Icons ---- */
.social-icons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--rose);
  border-color: var(--rose);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(232, 112, 138, 0.4);
  color: #fff;
}

/* ---- Divider ---- */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--gold));
  border-radius: 2px;
  margin: 16px 0 28px;
}

/* ---- Fade-in Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

.fade-in-delay-4 {
  transition-delay: 0.4s;
}

/* ---- Footer ---- */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
}

footer .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 12px;
}

footer .social-icons {
  justify-content: center;
  margin-bottom: 20px;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  section {
    padding: 80px 24px;
  }

  nav {
    padding: 0 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  footer {
    padding: 40px 24px;
  }
}

/* ---- Language Switcher ---- */
.lang-switcher {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px;
  border-radius: 50px;
  align-items: center;
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  outline: none;
}

.lang-btn:hover {
  color: var(--text);
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--rose), #d4567a);
  color: #fff;
  box-shadow: 0 4px 15px rgba(232, 112, 138, 0.3);
}

/* ---- RTL (Hebrew) Adjustments ---- */
html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .hero-inner {
  text-align: right;
}

@media (max-width: 900px) {
  html[dir="rtl"] .hero-inner {
    text-align: center;
  }
}

html[dir="rtl"] .badge-insta {
  right: auto;
  left: -20px;
}

html[dir="rtl"] .badge-tiktok {
  left: auto;
  right: -24px;
}

html[dir="rtl"] .badge-yt {
  right: auto;
  left: 0;
}

@media (max-width: 900px) {
  html[dir="rtl"] .badge-insta {
    left: auto;
    right: auto;
  }

  html[dir="rtl"] .badge-tiktok {
    left: auto;
    right: auto;
  }
}

/* Timeline RTL */
html[dir="rtl"] .timeline {
  border-left: none;
  border-right: 2px solid rgba(232, 112, 138, 0.3);
  padding-left: 0;
  padding-right: 28px;
}

html[dir="rtl"] .timeline-item::before {
  left: auto;
  right: -36px;
}

/* Alignment utilities for RTL */
html[dir="rtl"] .divider {
  margin: 16px 0 28px auto;
}

html[dir="rtl"] .divider.center {
  margin: 16px auto 28px;
}

html[dir="rtl"] .hero-stats {
  margin-top: 20px;
}

html[dir="rtl"] .about-tags {
  left: auto;
  right: 20px;
}