/* ═══════════════════════════════════════════
   ELLAFRYZ — style.css
   Paleta: krem #fef7ca | czerwień #c22525 | brzoskwinia #ebb798
   Filozofia: jasno, przestronnie, salonowo
═══════════════════════════════════════════ */

:root {
  --red:     #c22525;
  --red-dk:  #a01e1e;
  --peach:   #ebb798;
  --cream:   #fafafa;
  --cream-dk:#efefef;
  --dark:    #1c1c1c;
  --gray:    #6a6a6a;
  --gray-lt: #b0b0b0;
  --white:   #ffffff;
  --off-white: #fdfaf3;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-w: 1200px;
  --nav-h: 110px;
}

/* ─── RESET ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }

/* ─── UTILITY ────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.section   { padding: 100px 0; }
.center    { text-align: center; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}

h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}
h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 8px;
}
p { color: var(--gray); line-height: 1.85; }
p + p { margin-top: 12px; }

/* ─── BUTTONS ────────────────────────────── */
.btn {
  display: inline-block;
  padding: 15px 36px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s ease;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn--primary       { background: var(--red); color: var(--white); }
.btn--primary:hover { background: var(--red-dk); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(194,37,37,.25); }
.btn--outline       { background: transparent; border: 1.5px solid var(--red); color: var(--red); }
.btn--outline:hover { background: var(--red); color: var(--white); }
.btn--cream         { background: var(--cream); color: var(--dark); }
.btn--cream:hover   { background: var(--cream-dk); }
.btn--nav           { background: #ffffff; color: var(--dark); padding: 10px 24px; font-size: 11px; }
.btn--nav:hover     { background: #efefef; }
.btn--large         { padding: 18px 52px; font-size: 13px; }

/* ─── NAWIGACJA ──────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--red);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.1);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(194,37,37,.3); }
.nav__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 32px;
  height: var(--nav-h);
  display: flex; align-items: center; gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 120px;
  width: auto;
  object-fit: contain;
}
.nav__links {
  display: flex; gap: 32px; flex: 1;
}
.nav__links a {
  font-size: 12px; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  transition: color .2s;
}
.nav__links a:hover { color: #ffffff; }
.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto;
}
.nav__burger span { display: block; width: 24px; height: 1.5px; background: #ffffff; transition: .3s; }
.nav__mobile {
  display: none; flex-direction: column;
  padding: 16px 32px 28px; gap: 18px;
  border-top: 1px solid rgba(255,255,255,.2);
  background: var(--red);
}
.nav__mobile a {
  font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: #ffffff;
}
.nav__mobile.open { display: flex; }

/* SEO subtitle — widoczne dla robotów, niewidoczne dla użytkownika */
.seo-subtitle {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ─── HERO ───────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
  background: var(--off-white);
}

/* Dekoracyjny element — koło kremowe w tle */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  right: -5%;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  background: var(--cream);
  opacity: .55;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -8%;
  width: 30vw;
  height: 30vw;
  border-radius: 50%;
  background: var(--peach);
  opacity: .2;
  z-index: 0;
}

.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  /* Gdy będzie zdjęcie hero:
     background-image: url('../MEDIA/hero.jpg');
     background-size: cover; background-position: center; */
}

.hero__content {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  padding: 0 32px;
  width: 100%;
}

.hero__text {}

.hero__eyebrow {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 20px;
  display: block;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  color: var(--red);
}

.hero__sub {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__sub::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--peach);
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
}
.hero__visual-frame {
  aspect-ratio: 3/4;
  background: var(--cream);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.hero__visual-frame img {
  width: 100%; height: 100%; object-fit: contain; object-position: center;
}
.hero__visual-frame--empty {
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-lt); font-size: 13px;
  background: linear-gradient(135deg, var(--cream) 0%, var(--peach) 100%);
  opacity: .5;
}
/* Ozdobna ramka za zdjęciem */
.hero__visual::before {
  content: '';
  position: absolute;
  top: 20px; left: -20px;
  right: 20px; bottom: -20px;
  border: 1.5px solid var(--peach);
  border-radius: 4px;
  z-index: -1;
}
.hero__badge {
  position: absolute;
  bottom: -20px; left: -20px;
  background: var(--red);
  color: var(--white);
  padding: 20px 24px;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(194,37,37,.25);
}
.hero__badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 1;
}
.hero__badge span {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .85;
}

.hero__scroll {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: var(--gray-lt); font-size: 18px;
  animation: bounce 2.2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ─── PASEK ZAUFANIA ─────────────────────── */
.trust-bar {
  background: var(--cream);
  padding: 24px 0;
  border-top: 1px solid rgba(0,0,0,.05);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.trust-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--dark);
}
.trust-item__num {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.trust-item__label {
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--gray);
  text-transform: uppercase;
}
.trust-divider {
  width: 1px; height: 40px;
  background: rgba(0,0,0,.1);
}

/* ─── O NAS ──────────────────────────────── */
.o-nas { background: var(--white); }
.o-nas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.o-nas__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--cream);
}
.o-nas__image-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--cream) 0%, var(--peach) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-lt); font-size: 13px;
  opacity: .6;
}
/* Dekoracyjna linia */
.o-nas__image::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 2px;
  pointer-events: none;
}
.o-nas__text { }
.o-nas__text h2 { margin-bottom: 20px; }
.o-nas__text p { margin-bottom: 14px; }
.o-nas__kerastase {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 12px 20px;
  background: var(--off-white);
  border-left: 3px solid var(--red);
  font-size: 13px;
  color: var(--dark);
  border-radius: 0 2px 2px 0;
}

/* ─── USŁUGI ─────────────────────────────── */
.uslugi { background: var(--off-white); }
.uslugi h2 { margin-bottom: 56px; }
.uslugi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.usluga-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid rgba(0,0,0,.06);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.usluga-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform .3s ease;
}
.usluga-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,.09); }
.usluga-card:hover::before { transform: scaleX(1); }
.usluga-card__icon {
  font-size: 1.4rem;
  color: var(--red);
  margin-bottom: 20px;
  opacity: .85;
}
.usluga-card h3 { margin-bottom: 10px; }
.usluga-card p  { font-size: 14px; }
.usluga-card__price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.06);
  font-size: 13px;
  font-weight: 500;
  color: var(--red) !important;
  letter-spacing: .04em;
}

/* ─── GALERIA ────────────────────────────── */
.galeria { background: var(--white); }
.galeria h2 { margin-bottom: 8px; }
.galeria__sub { color: var(--gray-lt) !important; margin-bottom: 56px; font-size: 15px; }
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* Gdy tylko 1 para — wyśrodkuj i ogranicz szerokość */
.galeria__grid--single {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin: 0 auto;
}
.galeria__para {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
}
.galeria__img-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--cream);
}
.galeria__img-wrap img { transition: transform .45s ease; }
.galeria__img-wrap:hover img { transform: scale(1.05); }
.galeria__label {
  position: absolute;
  bottom: 10px; left: 10px;
  font-size: 9px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  background: rgba(255,255,255,.85);
  color: var(--dark);
  padding: 4px 10px;
  border-radius: 20px;
}
.galeria__label--po {
  background: var(--red);
  color: var(--white);
}

/* ─── GALERIA FRYZUR ─────────────────────── */
.fryzury { background: var(--off-white); }
.fryzury__sub { color: var(--gray-lt) !important; margin-bottom: 48px; font-size: 15px; }
.fryzury__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.fryzury__item {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
}
.fryzury__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.fryzury__item:hover img { transform: scale(1.04); }

@media (max-width: 600px) {
  .fryzury__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── ZESPÓŁ ─────────────────────────────── */
.zespol { background: var(--off-white); }
.zespol h2 { margin-bottom: 56px; }
.zespol__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 32px;
}
.zespol__card { text-align: center; }
.zespol__img-wrap {
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  width: 160px;
  background: var(--cream);
  position: relative;
  border: none;
}
.zespol__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.zespol__img-wrap--placeholder {
  background: linear-gradient(135deg, var(--cream) 0%, var(--peach) 100%);
  opacity: .5;
}
.zespol__card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.zespol__card p  { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--red) !important; }

/* ─── BOOKSY CTA ─────────────────────────── */
.cta-booksy {
  background: var(--dark);
  padding: 96px 24px;
  position: relative;
  overflow: hidden;
}
.cta-booksy::before {
  content: '';
  position: absolute;
  top: -30%; right: -5%;
  width: 50vw; height: 50vw;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.cta-booksy::after {
  content: '';
  position: absolute;
  bottom: -40%; left: -5%;
  width: 35vw; height: 35vw;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
}
.cta-booksy .container { position: relative; z-index: 1; }
.cta-booksy h2 { color: var(--white); margin-bottom: 12px; }
.cta-booksy p  { color: rgba(255,255,255,.75) !important; font-size: 16px; margin-bottom: 40px; }
.cta-booksy .btn--cream { background: var(--cream); color: var(--dark); }
.cta-booksy .btn--cream:hover { background: var(--cream-dk); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }

/* ─── KONTAKT ────────────────────────────── */
.kontakt { background: var(--white); }
.kontakt h2 { margin-bottom: 56px; }
.kontakt__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}
.kontakt__item { margin-bottom: 28px; }
.kontakt__item strong {
  display: block; font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.kontakt__item p { font-size: 15px; }
.kontakt__item a { color: var(--gray); transition: color .2s; }
.kontakt__item a:hover { color: var(--red); }
.kontakt__social { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.social-btn {
  display: inline-block; padding: 10px 22px;
  border: 1.5px solid rgba(0,0,0,.12);
  color: var(--dark); font-size: 12px;
  letter-spacing: .1em; text-transform: uppercase;
  border-radius: 2px; transition: all .2s;
}
.social-btn:hover { border-color: var(--red); color: var(--red); }
.kontakt__mapa { border-radius: 8px; overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.08); }

/* ─── FOOTER ─────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 44px 0;
}
.footer__inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
}
.footer__logo img { height: 36px; width: auto; object-fit: contain; filter: brightness(0) invert(1) opacity(.8); }
.footer__copy { font-size: 12px; color: rgba(255,255,255,.3) !important; }
.footer__links { display: flex; gap: 24px; }
.footer__links a {
  font-size: 12px; letter-spacing: .08em;
  color: rgba(255,255,255,.4); transition: color .2s;
}
.footer__links a:hover { color: var(--peach); }

/* ═══════════════════════════════════════════
   RESPONSYWNOŚĆ
═══════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav__links { display: none; }
  .btn--nav   { display: none; }
  .nav__burger { display: flex; }

  .hero__content { grid-template-columns: 1fr; gap: 48px; padding: 40px 24px; }
  .hero__title   { font-size: clamp(2.4rem, 7vw, 3.5rem); }

  .o-nas__grid   { grid-template-columns: 1fr; gap: 48px; }
  .o-nas__image  { display: none; }
  .uslugi__grid  { grid-template-columns: repeat(2, 1fr); }
  .galeria__grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt__grid { grid-template-columns: 1fr; }

  .trust-divider { display: none; }
  .trust-bar__inner { gap: 28px; }
}

@media (max-width: 600px) {
  .section        { padding: 64px 0; }
  .container      { padding: 0 20px; }
  .uslugi__grid   { grid-template-columns: 1fr; }
  .galeria__grid  { grid-template-columns: 1fr; }
  .hero__actions  { flex-direction: column; }
  .footer__inner  { flex-direction: column; text-align: center; }
  .footer__links  { flex-wrap: wrap; justify-content: center; }
}
