
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root{
  --yellow:#ffd200;
  --yellow2:#ffdf33;
  --black:#070707;
  --dark:#111111;
  --gray:#1b1b1b;
  --light:#f7f7f5;
  --text:#171717;
  --muted:#777;
  --radius:22px;
  --shadow:0 18px 55px rgba(0,0,0,.14);
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:'Montserrat',Arial,sans-serif;
  color:var(--text);
  background:var(--light);
  line-height:1.6;
}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
.container{width:min(1160px,92%);margin:auto}
header{
  position:sticky;top:0;z-index:1000;
  background:rgba(7,7,7,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{
  height:82px;display:flex;align-items:center;justify-content:space-between;
}
.brand{display:flex;align-items:center;gap:12px;color:white;font-weight:900;letter-spacing:-.5px}
.brand img{width:50px;height:50px;border-radius:50%;object-fit:cover}
.brand span{font-size:17px}
.navlinks{display:flex;gap:30px;align-items:center}
.navlinks a{color:#fff;font-size:14px;font-weight:700;text-transform:uppercase;letter-spacing:.6px;opacity:.82;transition:.2s}
.navlinks a:hover,.navlinks a.active{color:var(--yellow);opacity:1}
.nav-cta{
  background:var(--yellow);color:#000!important;padding:12px 18px;border-radius:999px;opacity:1!important;
}
.menu{display:none;background:none;border:0;color:#fff;font-size:28px;cursor:pointer}

.hero{
  min-height:calc(100vh - 82px);
  background:
    radial-gradient(circle at 80% 20%,rgba(255,210,0,.16),transparent 32%),
    linear-gradient(135deg,#080808 0%,#111 58%,#050505 100%);
  color:white;display:flex;align-items:center;overflow:hidden;position:relative;
}
.hero:after{
  content:"";position:absolute;width:620px;height:620px;border-radius:50%;
  right:-260px;bottom:-280px;border:1px solid rgba(255,210,0,.18);
  box-shadow:0 0 0 80px rgba(255,210,0,.025),0 0 0 160px rgba(255,210,0,.018);
}
.hero-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:70px;align-items:center;padding:75px 0}
.kicker{color:var(--yellow);font-size:13px;font-weight:800;text-transform:uppercase;letter-spacing:2px;margin-bottom:18px}
h1{font-size:clamp(42px,6vw,78px);line-height:1.02;letter-spacing:-3px;margin-bottom:25px}
h1 span{color:var(--yellow)}
.hero p{font-size:18px;color:#c9c9c9;max-width:610px;margin-bottom:34px}
.buttons{display:flex;gap:13px;flex-wrap:wrap}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:15px 24px;border-radius:999px;font-weight:800;font-size:14px;transition:.2s;cursor:pointer;border:0}
.btn-primary{background:var(--yellow);color:#000}
.btn-primary:hover{background:var(--yellow2);transform:translateY(-2px)}
.btn-outline{border:1px solid #555;color:#fff}
.btn-outline:hover{border-color:var(--yellow);color:var(--yellow)}
.hero-logo{
  width:min(430px,80vw);aspect-ratio:1;border-radius:50%;margin:auto;
  object-fit:cover;box-shadow:0 30px 100px rgba(0,0,0,.5);
  border:8px solid rgba(255,255,255,.04);
}
section{padding:95px 0}
.section-head{max-width:700px;margin-bottom:45px}
.section-head.center{text-align:center;margin-left:auto;margin-right:auto}
.eyebrow{color:#a48700;font-weight:900;text-transform:uppercase;font-size:12px;letter-spacing:2px;margin-bottom:10px}
h2{font-size:clamp(32px,4vw,50px);line-height:1.05;letter-spacing:-2px;margin-bottom:14px}
.section-head p{color:var(--muted)}
.cards{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.card{
  background:#fff;border:1px solid #e7e7e4;border-radius:var(--radius);padding:30px;
  box-shadow:0 10px 35px rgba(0,0,0,.05);transition:.25s
}
.card:hover{transform:translateY(-5px);box-shadow:var(--shadow)}
.icon{
  width:56px;height:56px;border-radius:16px;background:var(--yellow);
  display:grid;place-items:center;font-size:25px;margin-bottom:22px
}
.card h3{font-size:20px;margin-bottom:9px}
.card p{color:#6d6d6d;font-size:14px}
.dark{background:var(--black);color:#fff}
.dark .section-head p{color:#aaa}
.feature-grid{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.feature-list{display:grid;gap:18px;margin-top:28px}
.feature-item{display:flex;gap:15px;align-items:flex-start}
.check{width:30px;height:30px;border-radius:50%;background:var(--yellow);color:#000;display:grid;place-items:center;font-weight:900;flex:none}
.feature-item strong{display:block;margin-bottom:3px}
.feature-item span{font-size:14px;color:#999}
.preview{
  border-radius:28px;background:#181818;padding:12px;box-shadow:var(--shadow)
}
.preview img{border-radius:20px;aspect-ratio:4/3;object-fit:cover}
.gallery-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:15px}
.gallery-item{border-radius:18px;overflow:hidden;background:#ddd;aspect-ratio:1/1}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:.4s}
.gallery-item:hover img{transform:scale(1.06)}
.cta{
  background:var(--yellow);color:#000;border-radius:30px;padding:50px;
  display:flex;justify-content:space-between;gap:30px;align-items:center
}
.cta h2{margin:0}
.cta p{margin-top:8px;max-width:650px}
.btn-dark{background:#000;color:#fff}
.page-hero{background:var(--black);color:#fff;padding:75px 0}
.page-hero h1{font-size:clamp(40px,6vw,68px);margin:0}
.breadcrumb{color:#999;font-size:13px;margin-bottom:12px}
.contact-grid{display:grid;grid-template-columns:.8fr 1.2fr;gap:30px}
.contact-info,.form-box{background:#fff;border:1px solid #e4e4e1;border-radius:24px;padding:32px;box-shadow:0 10px 35px rgba(0,0,0,.05)}
.contact-row{display:flex;gap:15px;margin:23px 0}
.contact-row .icon{margin:0;width:46px;height:46px;border-radius:13px;font-size:18px}
.contact-row strong{display:block}
.contact-row span{color:#777;font-size:14px}
form{display:grid;gap:16px}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:15px}
label{font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.5px}
input,select,textarea{
  width:100%;margin-top:7px;padding:14px 15px;border:1px solid #ddd;border-radius:12px;
  font:inherit;outline:none;background:#fafafa
}
input:focus,select:focus,textarea:focus{border-color:#c4a500;box-shadow:0 0 0 3px rgba(255,210,0,.15)}
textarea{min-height:150px;resize:vertical}
footer{background:#050505;color:#aaa;padding:45px 0}
.footer-grid{display:flex;justify-content:space-between;gap:30px;align-items:center}
.footer-brand{color:#fff;font-weight:900}
.footer-brand span{color:var(--yellow)}
.small{font-size:12px}
.social{display:flex;gap:12px}
.social a{width:38px;height:38px;border:1px solid #333;border-radius:50%;display:grid;place-items:center;color:#fff}
.social a:hover{border-color:var(--yellow);color:var(--yellow)}
@media(max-width:850px){
  .navlinks{
    position:absolute;left:0;right:0;top:82px;background:#080808;display:none;
    flex-direction:column;padding:25px;border-bottom:1px solid #222
  }
  .navlinks.open{display:flex}
  .menu{display:block}
  .hero-grid,.feature-grid,.contact-grid{grid-template-columns:1fr;gap:40px}
  .hero{min-height:auto}
  .hero-grid{padding:65px 0 75px}
  .hero-logo{width:280px}
  .cards{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .cta{padding:35px 25px;display:block}
  .cta .btn{margin-top:22px}
  .footer-grid{flex-direction:column;align-items:flex-start}
}
@media(max-width:500px){
  h1{letter-spacing:-2px}
  section{padding:70px 0}
  .form-row{grid-template-columns:1fr}
  .gallery-grid{gap:10px}
}


/* === BESTMEMORY PHOTOBOOTH EFFECTS === */



/* 2) Lagani shutter / aperture efekt oko glavnog loga */
.shutter-logo{
  position:relative;
  width:min(430px,80vw);
  aspect-ratio:1;
  margin:auto;
  display:grid;
  place-items:center;
  isolation:isolate;
}
.shutter-logo .hero-logo{
  width:91%;
  margin:0;
  position:relative;
  z-index:3;
}
.shutter-ring{
  position:absolute;
  inset:-2%;
  border-radius:50%;
  z-index:1;
  opacity:.78;
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255,210,0,.86) 0deg 7deg,
      rgba(255,210,0,.08) 7deg 22deg,
      transparent 22deg 45deg
    );
  -webkit-mask:radial-gradient(circle,transparent 0 72%,#000 73% 100%);
  mask:radial-gradient(circle,transparent 0 72%,#000 73% 100%);
  filter:drop-shadow(0 0 16px rgba(255,210,0,.24));
  animation:shutterIntro 1.35s cubic-bezier(.2,.8,.2,1) both,
            shutterIdle 12s linear 1.35s infinite;
}
.shutter-logo::after{
  content:"";
  position:absolute;
  inset:5%;
  border-radius:50%;
  border:1px solid rgba(255,210,0,.28);
  box-shadow:0 0 28px rgba(255,210,0,.13), inset 0 0 22px rgba(255,210,0,.05);
  z-index:2;
  pointer-events:none;
}
@keyframes shutterIntro{
  0%{transform:rotate(-70deg) scale(.82);opacity:0}
  55%{opacity:.92}
  100%{transform:rotate(0deg) scale(1);opacity:.78}
}
@keyframes shutterIdle{
  to{transform:rotate(360deg)}
}

/* 3) Scroll reveal - klasa se dodaje kroz effects.js */
.reveal-on-scroll{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .72s ease, transform .72s cubic-bezier(.2,.75,.25,1);
  will-change:opacity,transform;
}
.reveal-on-scroll.revealed{
  opacity:1;
  transform:translateY(0);
}
.reveal-delay-1{transition-delay:.08s}
.reveal-delay-2{transition-delay:.16s}
.reveal-delay-3{transition-delay:.24s}

/* Hero sadržaj neka bude odmah vidljiv; ima svoju intro dinamiku */
.hero .reveal-on-scroll{opacity:1;transform:none}

/* 4) Polaroid hover samo na punoj galeriji */
.gallery-page .gallery-grid{
  gap:28px;
  align-items:start;
}
.gallery-page .gallery-item{
  aspect-ratio:auto;
  overflow:visible;
  padding:10px 10px 34px;
  background:#fff;
  border-radius:5px;
  box-shadow:0 14px 30px rgba(0,0,0,.14);
  transform:rotate(-1.25deg);
  transition:transform .32s cubic-bezier(.2,.8,.2,1), box-shadow .32s ease;
  transform-origin:center center;
}
.gallery-page .gallery-item:nth-child(3n+2){transform:rotate(1.15deg)}
.gallery-page .gallery-item:nth-child(3n){transform:rotate(-.45deg)}
.gallery-page .gallery-item img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:2px;
  transition:filter .3s ease, transform .3s ease;
}
.gallery-page .gallery-item:hover{
  transform:translateY(-9px) rotate(0deg) scale(1.025);
  box-shadow:0 24px 48px rgba(0,0,0,.22);
  z-index:3;
}
.gallery-page .gallery-item:hover img{
  transform:none;
  filter:saturate(1.07) contrast(1.03);
}
.gallery-page .gallery-item::after{
  right:17px;
  bottom:39px;
}

@media(max-width:850px){
  .shutter-logo{width:290px}
  .shutter-logo .hero-logo{width:91%}
  .gallery-page .gallery-grid{gap:18px}
  .gallery-page .gallery-item{padding:7px 7px 25px;transform:rotate(-.55deg)}
  .gallery-page .gallery-item:nth-child(3n+2){transform:rotate(.55deg)}
}

@media(prefers-reduced-motion:reduce){
  .shutter-ring{animation:none}
  .reveal-on-scroll{opacity:1;transform:none;transition:none}
  .gallery-page .gallery-item{transition:none;transform:none!important}
}


/* === ZASEBNA STRANICA CJENIK === */
.pricing-hero{
  background:
    radial-gradient(circle at 82% 25%,rgba(255,210,0,.12),transparent 28%),
    #070707;
}
.pricing-hero p{max-width:720px;color:#aaa;margin-top:18px;font-size:16px}
.price-page-section{background:#0a0a0a;color:#fff;padding-top:72px}
.price-package-card{
  background:linear-gradient(145deg,#111,#090909);
  border:1px solid rgba(255,210,0,.38);
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 30px 90px rgba(0,0,0,.26);
}
.price-package-top{
  display:grid;
  grid-template-columns:1fr auto;
  gap:45px;
  align-items:center;
  padding:42px 42px 34px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.price-package-top h2{font-size:clamp(31px,4vw,50px);max-width:700px;margin-bottom:12px}
.price-package-top p{color:#aaa;max-width:730px}
.pricing-badge{
  display:inline-flex;align-items:center;background:var(--yellow);color:#000;
  border-radius:999px;padding:8px 14px;font-size:11px;font-weight:900;
  letter-spacing:.8px;text-transform:uppercase;margin-bottom:18px;
}
.price-box{
  min-width:230px;
  text-align:center;
  background:var(--yellow);
  color:#000;
  border-radius:24px;
  padding:24px 28px 20px;
  box-shadow:0 12px 38px rgba(255,210,0,.12);
}
.price-amount{display:block;font-size:clamp(55px,7vw,82px);line-height:.95;font-weight:900;letter-spacing:-4px}
.price-caption{display:block;margin-top:9px;font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:1.2px}
.package-features{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0;
  padding:18px 42px;
}
.package-feature{
  display:flex;
  gap:18px;
  align-items:flex-start;
  padding:24px 18px 24px 0;
  border-bottom:1px solid rgba(255,255,255,.07);
}
.package-feature:nth-child(odd){padding-right:36px;border-right:1px solid rgba(255,255,255,.07)}
.package-feature:nth-child(even){padding-left:36px}
.package-feature:nth-last-child(-n+2){border-bottom:0}
.package-icon{
  width:52px;height:52px;flex:none;border-radius:50%;background:var(--yellow);color:#000;
  display:grid;place-items:center;box-shadow:0 8px 25px rgba(255,210,0,.1)
}
.package-icon svg{width:27px;height:27px;fill:none;stroke:currentColor;stroke-width:1.9;stroke-linecap:round;stroke-linejoin:round}
.package-feature strong{display:block;font-size:16px;margin-bottom:4px;color:#fff}
.package-feature span{display:block;color:#8f8f8f;font-size:13px;line-height:1.55}
.price-package-bottom{
  background:#0e0e0e;
  border-top:1px solid rgba(255,255,255,.08);
  padding:30px 42px;
  display:flex;align-items:center;justify-content:space-between;gap:30px;
}
.price-package-bottom strong{font-size:16px}
.price-package-bottom p{color:#888;font-size:13px;margin-top:4px}
.availability-dot{display:inline-block;width:9px;height:9px;background:var(--yellow);border-radius:50%;margin-right:8px;box-shadow:0 0 0 5px rgba(255,210,0,.1)}
.price-package-bottom .btn-outline{border-color:#444}
.pricing-note{color:#777;font-size:12px;text-align:center;margin-top:20px}
.pricing-note strong{color:#aaa}
@media(max-width:850px){
  .price-package-top{grid-template-columns:1fr;padding:32px 24px;gap:25px}
  .price-box{min-width:0;width:100%;max-width:340px}
  .package-features{grid-template-columns:1fr;padding:8px 24px}
  .package-feature,.package-feature:nth-child(odd),.package-feature:nth-child(even){padding:21px 0;border-right:0;border-bottom:1px solid rgba(255,255,255,.07)}
  .package-feature:last-child{border-bottom:0}
  .price-package-bottom{padding:28px 24px;flex-direction:column;align-items:flex-start}
}
@media(max-width:500px){
  .price-page-section{padding-top:48px}
  .price-package-card{border-radius:22px}
  .package-icon{width:46px;height:46px}
  .package-icon svg{width:24px;height:24px}
  .price-package-bottom .buttons{width:100%}
  .price-package-bottom .btn{width:100%}
}


/* BESTMEMORY EVENTS slikovni logo u navigaciji */
header .brand{
  gap:0;
  flex:0 0 auto;
}
header .brand .brand-logo{
  width:230px;
  height:auto;
  max-height:74px;
  border-radius:0;
  object-fit:contain;
  display:block;
}
header .nav{
  min-height:92px;
  height:auto;
  padding-top:8px;
  padding-bottom:8px;
}
.footer-logo-link{
  display:inline-block;
}
.footer-logo{
  width:175px;
  height:auto;
  display:block;
}

@media(max-width:850px){
  header .nav{
    min-height:84px;
    padding-top:7px;
    padding-bottom:7px;
  }
  header .brand .brand-logo{
    width:190px;
    max-height:68px;
  }
  .navlinks{
    top:84px;
  }
  .footer-logo{
    width:165px;
  }
}

@media(max-width:390px){
  header .brand .brand-logo{
    width:170px;
  }
}


/* BESTMEMORY EVENTS - slideshow u sekciji "Više od photobootha" */
.feature-slideshow{
  position:relative;
  width:100%;
  aspect-ratio:4/3;
  overflow:hidden;
  padding:0;
  background:#111;
  border-radius:28px;
}
.feature-slideshow .feature-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  border-radius:20px;
  opacity:0;
  transform:scale(1.035);
  transition:opacity .9s ease, transform 5.2s ease;
}
.feature-slideshow .feature-slide.active{
  opacity:1;
  transform:scale(1);
  z-index:1;
}
.feature-dots{
  position:absolute;
  z-index:3;
  left:50%;
  bottom:16px;
  transform:translateX(-50%);
  display:flex;
  gap:7px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(0,0,0,.48);
  backdrop-filter:blur(5px);
}
.feature-dot{
  appearance:none;
  -webkit-appearance:none;
  display:block;
  width:9px;
  height:9px;
  min-width:9px;
  padding:0;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.55);
  cursor:pointer;
  transition:.25s ease;
  touch-action:manipulation;
}
.feature-dot.active{
  width:22px;
  min-width:22px;
  border-radius:999px;
  background:var(--yellow);
}
.feature-dot:focus-visible{
  outline:2px solid #fff;
  outline-offset:3px;
}
.feature-slideshow-empty{
  height:100%;
  display:grid;
  place-items:center;
  padding:30px;
  color:#999;
  text-align:center;
}
@media(max-width:850px){
  .feature-slideshow{aspect-ratio:4/3;max-height:520px}
}
@media(prefers-reduced-motion:reduce){
  .feature-slideshow .feature-slide{transition:opacity .2s linear;transform:none!important}
}
