:root {
  --coral: #EF5244;
  --turquoise: #0EB4B4;
  --yellow: #F7B00F;
  --navy: #092B61;
  --cream: #F7EEDF;
  --pink: #E8375E;
  --royal-blue: #0446C9;
  --hero-bg: #E3F5F3;
  --yellow-tint: #FBEAC2;
  --whatsapp-green: #25D366;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Barlow Condensed', 'Arial Narrow', sans-serif;

  --radius-lg: 24px;
  --radius-pill: 999px;
  --wrap: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.4;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; margin: 0 0 .4em; line-height: 1.15; }
p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  border-radius: var(--radius-pill);
  padding: 14px 30px;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-cta { background: var(--coral); color: #fff; box-shadow: 0 6px 0 rgba(9,43,97,.15); }
.btn-cta-light { background: #fff; color: var(--coral); }
.btn-outline { background: transparent; border: 3px solid var(--navy); color: var(--navy); }
.btn-lg { font-size: 22px; padding: 18px 40px; }
.btn-nav-cta { font-size: 16px; padding: 12px 24px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 3px solid var(--navy);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo-img { width: 140px; height: 140px; object-fit: contain; }
.main-nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  font-weight: 700;
  font-size: 19px;
  text-transform: uppercase;
}
.main-nav a:hover { color: var(--coral); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { width: 26px; height: 3px; background: var(--navy); border-radius: 2px; }

/* Decorative elements */
.deco { position: absolute; pointer-events: none; user-select: none; z-index: 0; }
.deco-confetti { top: 0; right: -40px; width: 420px; max-width: 55%; opacity: .85; }
.deco-blobs { top: -60px; left: 50%; transform: translateX(-50%); width: 1100px; max-width: none; opacity: .07; z-index: 0; }
.how-it-works { position: relative; overflow: hidden; }
.how-it-works .wrap { position: relative; z-index: 1; }

/* Photo banners */
.photo-banner { position: relative; height: 380px; overflow: hidden; }
.photo-banner img { width: 100%; height: 100%; object-fit: cover; }
.photo-banner-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(9,43,97,.15) 0%, rgba(9,43,97,0) 30%, rgba(9,43,97,0) 70%, rgba(9,43,97,.25) 100%);
}
.photo-banner-text { height: 560px; }
.photo-banner-text img { object-position: 50% 22%; }
.photo-banner-text .photo-banner-fade {
  background: linear-gradient(90deg, rgba(9,43,97,.82) 0%, rgba(9,43,97,.55) 45%, rgba(9,43,97,.2) 100%);
}
.photo-banner-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 640px;
}
.photo-banner-content .eyebrow {
  color: var(--yellow);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .6em;
}
.photo-banner-content h2 { color: #fff; font-size: 36px; margin-bottom: .35em; }
.photo-banner-content p { color: rgba(255,255,255,.92); font-size: 19px; margin-bottom: 0; max-width: 520px; }

/* Hero */
.hero {
  padding: 70px 0 0;
  overflow: hidden;
  position: relative;
  background: var(--hero-bg);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: end;
  gap: 40px;
}
.hero-text { padding-bottom: 90px; }
.hero h1 { font-size: 46px; color: var(--navy); }
.hero-sub { font-size: 22px; font-weight: 700; margin-bottom: 1.4em; }
.hero-media { align-self: end; }
.hero-media img {
  width: 100%;
  height: auto;
  max-width: 620px;
  aspect-ratio: 1100 / 733;
  object-fit: contain;
  object-position: bottom;
  display: block;
  margin: 0 0 0 auto;
}

/* Ribbon */
.ribbon { background: var(--navy); padding: 18px 0; }
.ribbon-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: .05em;
  flex-wrap: wrap;
  text-align: center;
}
.ribbon-inner i { color: var(--yellow); font-style: normal; }

/* How it works */
.how-it-works { padding: 70px 0; }
.section-title { text-align: center; font-size: 40px; color: var(--navy); margin-bottom: .8em; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  position: relative;
  background: #fff;
  border: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 24px 18px 20px;
  text-align: center;
}
.step-card img { width: 100%; height: 140px; object-fit: contain; margin-bottom: 10px; }
.step-card h3 { font-size: 21px; margin-bottom: .3em; }
.step-card p { font-size: 17px; margin-bottom: 0; }
.step-num {
  position: absolute;
  top: -16px; left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  border: 3px solid var(--cream);
}
.step-num-coral { background: var(--coral); }
.step-num-turquoise { background: var(--turquoise); }
.step-num-yellow { background: var(--yellow); color: var(--navy); }
.step-num-pink { background: var(--pink); }
.how-it-works-note { text-align: center; max-width: 640px; margin: 30px auto 0; font-size: 18px; }

/* Story */
.story {
  position: relative;
  background: var(--royal-blue);
  color: #fff;
  padding: 110px 0;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.story-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.story-fade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,70,201,.88) 0%, rgba(4,70,201,.72) 45%, rgba(9,43,97,.35) 100%);
}
.story-inner { position: relative; z-index: 1; max-width: 620px; }
.story h2 { color: #fff; font-size: 38px; }
.story p { font-size: 19px; }

/* Benefits */
.benefits { padding: 70px 0; }
.benefits-panel {
  background: #fff;
  border: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
}
.benefits-lead { text-align: center; font-size: 20px; max-width: 560px; margin: 0 auto 2em; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.benefit-item { text-align: center; }
.benefit-icon {
  width: 130px; height: 130px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
}
.benefit-icon img { height: 100%; width: 100%; object-fit: contain; margin: 0; }
.benefit-icon-coral { background: rgba(239,82,68,.12); }
.benefit-icon-turquoise { background: rgba(14,180,180,.12); }
.benefit-icon-yellow { background: rgba(247,176,15,.16); }
.benefit-icon-pink { background: rgba(232,55,94,.12); }
.benefit-icon-navy { background: rgba(9,43,97,.08); }
.benefit-item h3 { font-size: 20px; }
.benefits-footer-note { text-align: center; font-size: 18px; margin-top: 2em; margin-bottom: 0; }

/* Occasions */
.occasions { background: var(--turquoise); padding: 70px 0; }
.occasions .section-title { color: #fff; }
.occasions-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.occasion-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: 19px;
  background: #fff;
  text-transform: uppercase;
  border: 3px solid transparent;
}
.occasion-emoji { font-size: 22px; }
.occasion-navy { color: var(--navy); border-color: var(--navy); }
.occasion-pink { color: var(--pink); border-color: var(--pink); }
.occasion-yellow { color: var(--yellow); border-color: var(--yellow); }
.occasion-coral { color: var(--coral); border-color: var(--coral); }
.occasion-royal { color: var(--royal-blue); border-color: var(--royal-blue); }

/* Packages */
.packages { padding: 20px 0 70px; }
.packages-inner { text-align: center; }
.packages-lead { max-width: 560px; margin: 0 auto 2em; font-size: 19px; }
.packages-card {
  background: #fff;
  border: 3px dashed var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}
.packages-card h3 { font-size: 26px; }
.packages-card p { font-size: 18px; margin-bottom: 1.6em; }

/* Gallery */
.gallery { padding: 20px 0 70px; }
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.gallery-filter {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 17px;
  text-transform: uppercase;
  background: #fff;
  border: 2px solid var(--navy);
  color: var(--navy);
  border-radius: var(--radius-pill);
  padding: 8px 20px;
  cursor: pointer;
}
.gallery-filter.active,
.gallery-filter:hover { background: var(--navy); color: #fff; }
.gallery-filter[data-filter="vjencanja"] { border-color: var(--turquoise); color: var(--turquoise); }
.gallery-filter[data-filter="vjencanja"].active,
.gallery-filter[data-filter="vjencanja"]:hover { background: var(--turquoise); color: #fff; }
.gallery-filter[data-filter="rodjendani"] { border-color: var(--pink); color: var(--pink); }
.gallery-filter[data-filter="rodjendani"].active,
.gallery-filter[data-filter="rodjendani"]:hover { background: var(--pink); color: #fff; }
.gallery-filter[data-filter="djevojacke"] { border-color: var(--coral); color: var(--coral); }
.gallery-filter[data-filter="djevojacke"].active,
.gallery-filter[data-filter="djevojacke"]:hover { background: var(--coral); color: #fff; }
.gallery-filter[data-filter="eventi"] { border-color: var(--royal-blue); color: var(--royal-blue); }
.gallery-filter[data-filter="eventi"].active,
.gallery-filter[data-filter="eventi"]:hover { background: var(--royal-blue); color: #fff; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  padding: 0;
  border: 3px solid var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  background: none;
  aspect-ratio: 4 / 3;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item.hidden { display: none; }
.gallery-item-featured { grid-column: span 2; aspect-ratio: 8 / 3; }
.gallery-item[data-category="vjencanja"] { border-color: var(--turquoise); }
.gallery-item[data-category="rodjendani"] { border-color: var(--pink); }
.gallery-item[data-category="djevojacke"] { border-color: var(--coral); }
.gallery-item[data-category="eventi"] { border-color: var(--royal-blue); }
.gallery-note { text-align: center; font-size: 16px; margin-top: 26px; margin-bottom: 0; }
.gallery-note a { text-decoration: underline; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(9,43,97,.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: 16px; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
}

/* FAQ */
.faq { background: var(--yellow-tint); padding: 70px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 2px solid var(--navy);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  color: var(--navy);
  padding: 20px 4px;
  cursor: pointer;
}
.faq-icon {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--coral);
  transition: transform .2s ease;
  flex-shrink: 0;
  margin-left: 12px;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}
.faq-answer p { padding: 0 4px 18px; font-size: 18px; margin: 0; }

/* Final CTA */
.final-cta { background: var(--coral); padding: 80px 0; text-align: center; }
.final-cta h2 { color: #fff; font-size: 42px; margin-bottom: 1em; }

/* Footer / Kontakt */
.site-footer { background: var(--navy); color: #fff; padding: 70px 0 40px; }
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer-logo { border-radius: 16px; }
.footer-title { color: #fff; font-size: 34px; margin: 10px 0 6px; }
.footer-contact {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
  font-weight: 800;
  font-size: 25px;
  margin: 10px 0 20px;
}
.footer-contact a { display: flex; align-items: center; gap: 10px; }
.footer-contact a:hover { color: var(--yellow); }
.footer-icon { font-size: 26px; }
.footer-credit { font-size: 15px; opacity: .8; margin: 0; }
.footer-credit a { text-decoration: underline; }

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 999;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--whatsapp-green);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px rgba(9,43,97,.35);
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }

/* Responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; align-items: center; }
  .hero-text { padding-bottom: 0; text-align: center; }
  .hero-media img { margin: 20px auto 0; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-banner { height: 260px; }
  .photo-banner-text { height: 440px; }
  .story { min-height: 460px; padding: 70px 0; }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .hero h1 { font-size: 34px; }
  .section-title { font-size: 30px; }
  .story h2 { font-size: 30px; }
  .final-cta h2 { font-size: 30px; }
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: center;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
  }
  .main-nav.open { max-height: 300px; border-bottom: 3px solid var(--navy); }
  .main-nav a { padding: 16px 0; width: 100%; text-align: center; }
  .btn-nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-panel { padding: 30px 20px; }
  .occasion-pill { font-size: 16px; padding: 12px 18px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-filter { font-size: 15px; padding: 7px 16px; }
  .gallery-item-featured { grid-column: span 2; aspect-ratio: 4 / 3; }
  .photo-banner { height: 190px; }
  .photo-banner-text { height: 380px; }
  .photo-banner-content h2 { font-size: 26px; }
  .photo-banner-content p { font-size: 16px; }
  .deco-confetti { width: 220px; opacity: .6; }
  .deco-blobs { width: 700px; opacity: .06; }
  .benefit-icon { width: 100px; height: 100px; }
  .story { min-height: 380px; padding: 50px 0; }
  .story h2 { font-size: 28px; }
  .footer-title { font-size: 26px; }
  .footer-contact { gap: 20px; font-size: 19px; }
  .whatsapp-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
}
