/* ============================================================
   AKADEMIA URODY WARSZAWA — Wspólny arkusz stylów
   ============================================================ */

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f7f7f7;
  color: #1a1a1a;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== HEADER ===== */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.logo { font-size: 17px; font-weight: 700; letter-spacing: 0.4px; color: #1a1a1a; }
.logo span { color: #b06090; }

nav ul { list-style: none; display: flex; gap: 32px; }
nav ul li a { font-size: 14px; font-weight: 500; color: #555; transition: color .2s; }
nav ul li a:hover,
nav ul li a.active { color: #b06090; }
nav ul li a.active { border-bottom: 2px solid #b06090; padding-bottom: 2px; }

.nav-cta {
  background: linear-gradient(135deg, #b06090, #8040a0);
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: opacity .2s !important;
  border-bottom: none !important;
}
.nav-cta:hover { opacity: 0.85; color: #fff !important; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d1b4e 50%, #4a1942 100%);
  color: #fff;
  text-align: center;
  padding: 90px 24px 100px;
}
.hero-badge {
  display: inline-block;
  background: rgba(232,180,208,.18);
  border: 1px solid rgba(232,180,208,.4);
  color: #e8b4d0;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 22px;
  border-radius: 30px;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero h1 span { color: #e8b4d0; }
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== PRZYCISKI ===== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #b06090, #8040a0);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  transition: opacity .2s, transform .15s;
  cursor: pointer;
}
.btn-primary:hover { opacity: .87; transform: scale(1.02); color: #fff; }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 32px;
  border-radius: 10px;
  border: 2px solid rgba(255,255,255,.35);
  transition: border-color .2s;
}
.btn-outline:hover { border-color: rgba(255,255,255,.75); color: #fff; }

.btn-dark {
  display: inline-block;
  background: #1a1a2e;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 10px;
  transition: opacity .2s;
}
.btn-dark:hover { opacity: .85; color: #fff; }

/* ===== SEKCJE ===== */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 24px;
}
.section-white { background: #fff; }
.section-white .section { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #b06090;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 3.5vw, 40px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-title span { color: #b06090; }
.section-sub {
  font-size: 16px;
  color: #777;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ===== STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 56px;
}
.stat-card {
  background: rgba(232,180,208,.12);
  border: 1px solid rgba(232,180,208,.25);
  border-radius: 14px;
  padding: 28px 16px;
  text-align: center;
}
.stat-card strong {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: #e8b4d0;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-card span { font-size: 13px; color: rgba(255,255,255,.55); letter-spacing: .5px; }

/* ===== KARTY USŁUG ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  transition: transform .25s, box-shadow .25s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.card-icon {
  font-size: 40px;
  margin-bottom: 18px;
  display: block;
}
.card h3 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.card p { font-size: 14px; color: #777; line-height: 1.65; }
.card-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 14px;
  font-weight: 600;
  color: #b06090;
}
.card-link:hover { text-decoration: underline; }

/* Wariant ciemny karty */
.card-dark {
  background: linear-gradient(135deg, #1a1a2e, #2d1b4e);
  color: #fff;
}
.card-dark h3 { color: #e8b4d0; }
.card-dark p { color: rgba(255,255,255,.65); }

/* ===== SEKCJA O NAS ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p { font-size: 16px; color: #555; line-height: 1.85; margin-bottom: 20px; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: #444;
}
.about-feature .dot {
  width: 22px; height: 22px;
  background: linear-gradient(135deg, #b06090, #8040a0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: #fff;
  font-size: 12px;
}
.about-visual {
  background: linear-gradient(135deg, #1a1a2e, #4a1942);
  border-radius: 20px;
  padding: 48px 36px;
  color: #fff;
  text-align: center;
}
.about-visual .big-emoji { font-size: 80px; margin-bottom: 24px; display: block; }
.about-visual h3 { font-size: 22px; font-weight: 700; color: #e8b4d0; margin-bottom: 12px; }
.about-visual p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ===== ZESPÓŁ ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.team-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  text-align: center;
  transition: transform .25s;
}
.team-card:hover { transform: translateY(-5px); }
.team-avatar {
  background: linear-gradient(135deg, #1a1a2e, #4a1942);
  padding: 36px 20px 28px;
  font-size: 64px;
}
.team-body { padding: 24px 20px 28px; }
.team-body h3 { font-size: 18px; font-weight: 700; color: #1a1a1a; margin-bottom: 4px; }
.team-role {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b06090;
  margin-bottom: 12px;
}
.team-body p { font-size: 13px; color: #888; line-height: 1.65; }

/* ===== OPINIE ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  position: relative;
}
.review-stars { color: #f5a623; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #b06090, #8040a0);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}
.review-author-name { font-size: 14px; font-weight: 700; color: #1a1a1a; }
.review-author-sub { font-size: 12px; color: #bbb; }

/* ===== FAQ ===== */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.05);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-q .arr { font-size: 20px; color: #b06090; transition: transform .25s; flex-shrink: 0; }
.faq-a { padding: 0 24px 20px; font-size: 14px; color: #666; line-height: 1.75; display: none; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #4a1942 100%);
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}
.cta-banner h2 { font-size: clamp(24px, 3.5vw, 40px); font-weight: 700; margin-bottom: 16px; }
.cta-banner h2 span { color: #e8b4d0; }
.cta-banner p { font-size: 16px; color: rgba(255,255,255,.65); max-width: 480px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== GALERIA ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #e0e0e0;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.gallery-item:hover img { transform: scale(1.05); }

/* ===== STOPKA ===== */
footer {
  background: #fff;
  border-top: 1px solid #ebebeb;
  padding: 56px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo { font-size: 18px; font-weight: 700; margin-bottom: 14px; display: block; }
.footer-logo span { color: #b06090; }
.footer-brand p { font-size: 14px; color: #999; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: #f0f0f0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: background .2s;
}
.social-link:hover { background: #e8b4d0; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { font-size: 14px; color: #999; margin-bottom: 10px; }
.footer-col ul li a { color: #999; transition: color .2s; }
.footer-col ul li a:hover { color: #b06090; }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: #ccc;
}
.footer-bottom a { color: #ccc; }
.footer-bottom a:hover { color: #b06090; }

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.mobile-nav {
  display: none; /* ukryte na desktopie */
}
.mob-overlay {
  display: none; /* ukryte na desktopie */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  nav ul { display: none; }
  .hamburger { display: flex; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero { padding: 64px 20px 72px; }

  /* Mobile nav widoczny tylko na telefonie */
  .mobile-nav {
    display: block;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    z-index: 99;
    transform: translateY(-110%);
    transition: transform .3s cubic-bezier(.4,0,.2,1);
    border-top: 1px solid #f0f0f0;
  }
  .mobile-nav.open { transform: translateY(0); }
  .mobile-nav ul { list-style: none; padding: 10px 0 20px; }
  .mobile-nav ul li a {
    display: block;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    transition: color .2s, background .2s;
  }
  .mobile-nav ul li a:hover,
  .mobile-nav ul li a.active { color: #b06090; background: #fdf5f9; }

  .mob-overlay {
    position: fixed;
    inset: 0;
    top: 68px;
    background: rgba(0,0,0,.3);
    z-index: 98;
  }
  .mob-overlay.open { display: block; }
}
