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

:root {
  --pink:       #e30c80;
  --pink-dark:  #b50a66;
  --dark:       #1c1c2e;
  --text:       #333;
  --muted:      #666;
  --light:      #f6f6f8;
  --white:      #fff;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.09);
  --transition: 0.2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 1rem;
}

img { display: block; max-width: 100%; }
a { color: var(--pink); }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 60px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.35);
}

.nav-logo img { height: 40px; }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--pink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ── */
#hero {
  min-height: 88vh;
  background: var(--dark) url('img/head-bg.png') center top / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(28,28,46,0.72) 0%, rgba(28,28,46,0.55) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-logo {
  width: 110px;
  margin: 0 auto 1.8rem;
  filter: drop-shadow(0 3px 10px rgba(0,0,0,0.6));
}

.hero-inner h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  color: var(--white);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-inner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.2rem;
}

/* ── PAGE HERO (subpages) ── */
.page-hero {
  background: var(--dark);
  padding: 3rem 2rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--white);
  font-weight: 700;
}
.page-hero h1 em { color: var(--pink); font-style: normal; }
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 0.6rem; font-size: 1rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--pink);
  color: white;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition);
}
.btn:hover { background: var(--pink-dark); transform: translateY(-2px); color: white; }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
section:nth-of-type(even) { background: var(--light); }

.container { max-width: 960px; margin: 0 auto; }

.section-header { margin-bottom: 2.5rem; }
.section-header h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-header h2 em { color: var(--pink); font-style: normal; }
.divider { width: 44px; height: 4px; background: var(--pink); border-radius: 2px; }
.section-header p { margin-top: 1rem; color: var(--muted); max-width: 640px; }

/* ── SERVICE CARDS ── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.8rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--pink);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 36px rgba(0,0,0,0.13); }

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.card ul { list-style: none; }
.card ul li {
  padding: 0.28rem 0 0.28rem 1.1rem;
  position: relative;
  color: var(--muted);
  font-size: 0.92rem;
}
.card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--pink);
  font-weight: 700;
}

/* ── PHOTO GRID ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.photo-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--transition);
}
.photo-grid img:hover { transform: scale(1.02); }

/* ── COSTUME GALLERY ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  margin-top: 2rem;
}

.gallery-grid img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
}
.gallery-grid img:hover { opacity: 0.85; transform: scale(1.03); }

/* ── LIGHTBOX ── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
#lightbox.active { display: flex; }
#lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
#lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity var(--transition);
}
#lightbox-close:hover { opacity: 1; }

/* ── REFERENCE VIDEOS ── */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.video-wrap.wide { grid-column: 1 / -1; }

/* ── CONTACT ── */
#kontakt { background: var(--dark); }
#kontakt .section-header h2 { color: var(--white); }
#kontakt .section-header p { color: rgba(255,255,255,0.6); }

.contact-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.contact-photo {
  width: 240px;
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}

.contact-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }

.contact-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-value { color: rgba(255,255,255,0.85); font-size: 0.97rem; }
.contact-value a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color var(--transition); }
.contact-value a:hover { color: var(--pink); }

.contact-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(227,12,128,0.15);
  border: 1px solid rgba(227,12,128,0.35);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-dot svg { width: 16px; height: 16px; fill: var(--pink); }

/* ── FOOTER ── */
footer {
  background: #111;
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 1.5rem 2rem;
  font-size: 0.82rem;
}
footer a { color: rgba(255,255,255,0.4); }
footer a:hover { color: var(--pink); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 1.2rem; }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 0.5rem 0 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { display: block; padding: 0.7rem 2rem; }
  .nav-toggle { display: flex; }

  section { padding: 3.5rem 1.4rem; }

  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-photo { width: 180px; margin: 0 auto; }
}

@media (max-width: 480px) {
  #hero { min-height: 75vh; }
  .photo-grid img { height: 160px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); }
  .gallery-grid img { height: 120px; }
}
