/* Cvjećarna Ljiljan – pastel/pink theme */
:root{
  --bg: #fff7f8;
  --bg2: #ffffff;
  --ink: #1f2a24;
  --muted: #5a6660;
  --line: rgba(31,42,36,.12);

  --pink: #fde3e7;
  --pink2: #fff0f2;
  --green: #2f4b3f;
  --green2: #3f6a57;

  --shadow: 0 12px 32px rgba(0,0,0,.08);
  --radius: 18px;
  --radius2: 26px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg2) 35%, var(--bg2) 100%);
}

img{max-width:100%; display:block}
a{color:inherit}
.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

.skip-link{
  position:absolute; left:-9999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px; width:auto; height:auto;
  padding:10px 12px; background:#fff; border:1px solid var(--line); border-radius:12px;
  z-index:9999;
}

.header{
  position:sticky; top:0; z-index:50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:14px;
}
.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand__logo{
  width:64px; height:64px; object-fit:contain;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  background: rgba(255,255,255,.7);
  padding:6px;
}

.nav{
  display:flex; align-items:center; gap:18px;
}
.nav a{
  text-decoration:none;
  font-weight:600;
  font-size:14px;
  color: rgba(31,42,36,.82);
}
.nav a:hover{color: var(--green)}

.nav-toggle{
  display:none;
  border:1px solid var(--line);
  background:#fff;
  border-radius: 14px;
  padding:10px;
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:22px;
  height:2px;
  background: rgba(31,42,36,.8);
  margin:4px 0;
  border-radius:2px;
}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius: 999px;
  padding:12px 16px;
  font-weight:700;
  text-decoration:none;
  border:1px solid transparent;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
  white-space:nowrap;
}
.btn:active{transform: translateY(1px)}
.btn--sm{padding:10px 14px; font-size:14px}
.btn--primary{
  background: linear-gradient(135deg, var(--green2), var(--green));
  color:#fff;
  box-shadow: 0 12px 22px rgba(47,75,63,.18);
}
.btn--primary:hover{box-shadow: 0 16px 26px rgba(47,75,63,.24)}
.btn--ghost{
  background: rgba(255,255,255,.72);
  border-color: var(--line);
}
.btn--ghost:hover{background:#fff}

.badge{
  display:inline-flex;
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  border:1px solid var(--line);
  font-weight:700;
  font-size:13px;
  color: rgba(31,42,36,.78);
}

.hero{
  position:relative;
  padding: 54px 0 34px;
  overflow:hidden;
}
.hero__bg{
  position:absolute; inset:-120px -120px auto -120px;
  height: 520px;
  background:
    radial-gradient(600px 300px at 20% 20%, rgba(253,227,231,.85), transparent 60%),
    radial-gradient(700px 380px at 80% 10%, rgba(255,240,242,.9), transparent 60%),
    radial-gradient(700px 380px at 60% 80%, rgba(47,75,63,.10), transparent 60%);
  z-index:-1;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items:center;
}
.hero h1{
  font-size: clamp(34px, 5vw, 52px);
  margin: 14px 0 8px;
  letter-spacing:-.02em;
}
.lead{
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight:800;
  color: rgba(31,42,36,.88);
  margin: 0 0 12px;
}
.muted{color: var(--muted); line-height:1.6}
.hero__actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:18px}
.hero__meta{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 18px;
}
.meta-card{
  background: rgba(255,255,255,.72);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  box-shadow: 0 10px 18px rgba(0,0,0,.05);
}
.meta-card__title{
  font-size: 12px;
  font-weight:800;
  color: rgba(31,42,36,.62);
  text-transform: uppercase;
  letter-spacing:.06em;
}
.meta-card__value{
  margin-top:4px;
  font-weight:900;
  color: rgba(31,42,36,.92);
}

.hero__visual{display:flex; justify-content:flex-end}
.hero__photo{
  position:relative;
  width: min(430px, 100%);
  margin:0;
  border-radius: 30px;
  overflow:hidden;
  box-shadow: 0 24px 55px rgba(31,42,36,.18);
  border: 1px solid rgba(255,255,255,.7);
  background:#fff;
}
.hero__img{
  display:block;
  width:100%;
  height: 430px;
  object-fit: cover;
}
.hero__location{
  position:absolute;
  left:18px;
  bottom:18px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 12px 30px rgba(0,0,0,.14);
  color:#1f2a24;
}
.hero__location span{
  display:block;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#2f5d46;
}
.hero__location strong{display:block; font-size:15px; margin-top:2px}

.section{
  padding: 56px 0;
}
.section--alt{
  background: linear-gradient(180deg, rgba(253,227,231,.25), rgba(255,255,255,.85));
  border-top: 1px solid rgba(31,42,36,.08);
  border-bottom: 1px solid rgba(31,42,36,.08);
}
.section__head{
  max-width: 720px;
  margin-bottom: 22px;
}
.section__head h2{
  font-size: clamp(26px, 3.6vw, 34px);
  margin: 0 0 8px;
  letter-spacing:-.02em;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
.card{
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  padding: 18px 18px 16px;
  box-shadow: 0 12px 20px rgba(0,0,0,.05);
}
.card__icon{
  width:44px; height:44px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(253,227,231,.65);
  border: 1px solid rgba(31,42,36,.10);
  margin-bottom: 10px;
  font-size:20px;
}
.card h3{margin: 8px 0 8px; font-size: 18px}
.card p{margin:0; color: var(--muted); line-height:1.6}

.about{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items:start;
}
.info-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 18px;
}
.info{
  padding: 14px 14px 12px;
  background: rgba(255,255,255,.80);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.info__label{
  display:block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing:.06em;
  text-transform: uppercase;
  color: rgba(31,42,36,.62);
}
.info__value{display:block; margin-top:4px; font-weight:800}

.about__frame{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #fff;
}
.about__frame img{
  width:100%;
  height: 320px;
  object-fit: cover;
}
.about__note{
  margin-top: 12px;
  padding: 14px 14px 12px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: var(--radius2);
}
.about__note-title{font-weight:900; margin-bottom:4px}


.gallery-filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin: 6px 0 20px;
}
.gallery-filter{
  appearance:none;
  border:1px solid var(--line);
  background: rgba(255,255,255,.78);
  color: rgba(31,42,36,.82);
  border-radius:999px;
  padding:10px 14px;
  font-weight:900;
  cursor:pointer;
  box-shadow: 0 8px 16px rgba(0,0,0,.04);
}
.gallery-filter:hover,
.gallery-filter.is-active{
  background: linear-gradient(135deg, var(--green2), var(--green));
  color:#fff;
  border-color: transparent;
}

.gallery{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}
.gallery__item{
  margin:0;
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid var(--line);
  box-shadow: 0 14px 22px rgba(0,0,0,.05);
  background:#fff;
}
.gallery__btn{
  appearance:none;
  border:0;
  padding:0;
  width:100%;
  cursor:pointer;
  background:transparent;
  position:relative;
  overflow:hidden;
}
.gallery__btn img{
  width:100%;
  height: 260px;
  object-fit: cover;
  transition: transform .18s ease;
}
.gallery__btn:hover img{transform: scale(1.02)}
.gallery__label{
  position:absolute;
  left:12px;
  bottom:12px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(31,42,36,.12);
  color: var(--green);
  font-weight:900;
  font-size:13px;
  padding:7px 10px;
  border-radius:999px;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}
.gallery__item.is-hidden{display:none}

.lightbox{
  position:fixed; inset:0;
  background: rgba(10,12,11,.72);
  display:none;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 100;
}
.lightbox.is-open{display:flex}
.lightbox__figure{
  margin:0;
  max-width: min(980px, 92vw);
  max-height: 84vh;
  width:100%;
  display:flex;
  flex-direction:column;
  gap: 10px;
  align-items:center;
}
.lightbox__img{
  width:100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(0,0,0,.35);
  background: rgba(255,255,255,.06);
}
.lightbox__caption{
  color: rgba(255,255,255,.9);
  font-weight:700;
  text-align:center;
}
.lightbox__close{
  position:absolute; top:14px; right:14px;
  width:44px; height:44px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08);
  color:#fff;
  font-size: 26px;
  cursor:pointer;
}
.lightbox__nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:46px; height:46px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color:#fff;
  font-size: 30px;
  cursor:pointer;
}
.lightbox__nav--prev{left:14px}
.lightbox__nav--next{right:14px}

.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.contact-cards{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 14px;
}
.contact-card{
  padding: 14px 14px 12px;
  background: rgba(255,255,255,.80);
  border:1px solid var(--line);
  border-radius: var(--radius2);
}
.contact-card__label{
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing:.06em;
  color: rgba(31,42,36,.62);
}
.contact-card__value{margin-top:4px; font-weight:900}
.contact-card__value a{text-decoration:none; color: var(--green)}
.contact__actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 14px;
}
.map-frame{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  background:#fff;
}
.map-frame iframe{
  width:100%;
  height: 420px;
  border:0;
}

.footer{
  padding: 20px 0 30px;
  background: rgba(255,255,255,.72);
  border-top:1px solid var(--line);
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}
.footer__left{
  display:flex; align-items:center; gap: 12px;
}
.footer__left img{
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0,0,0,.06);
  background: rgba(255,255,255,.7);
  padding: 6px;
}
.footer__title{font-weight: 950}
.footer__sub{color: var(--muted); font-weight:700; font-size:14px}
.footer__right{color: var(--muted); font-weight:700; font-size:14px}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns: 1fr; gap: 18px}
  .hero__visual{justify-content:flex-start}
  .cards{grid-template-columns: repeat(2, minmax(0,1fr))}
  .about{grid-template-columns: 1fr}
  .contact{grid-template-columns: 1fr}
  .gallery{grid-template-columns: repeat(2, minmax(0,1fr))}
  .hero__meta{grid-template-columns: 1fr; }
}

@media (max-width: 720px){
  .brand__logo{width:56px; height:56px}
  .nav-toggle{display:inline-flex}
  .nav{
    position:absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap: 10px;
    padding: 12px;
    background: rgba(255,255,255,.94);
    border:1px solid var(--line);
    border-radius: var(--radius2);
    box-shadow: var(--shadow);
  }
  .nav.is-open{display:flex}
  .nav a{padding: 10px 12px; border-radius: 14px; background: rgba(253,227,231,.25)}
  .nav a.btn{background: linear-gradient(135deg, var(--green2), var(--green)); color:#fff}
  .cards{grid-template-columns: 1fr}
  .gallery{grid-template-columns: 1fr}
  .gallery__btn img{height: 240px}
  .footer__inner{flex-direction:column; align-items:flex-start}
  .map-frame iframe{height: 340px}
}


.badge{background:#2f5d46 !important;border:none !important;}
.btn--primary{background:#2f5d46 !important;}
header{backdrop-filter: blur(10px);}

/* V4 visible fixes */
.btn--primary{color:#ffffff !important;}
.meta-card__value{color:#1f2a24 !important;}
@media (max-width: 920px){.hero__img{height:360px}.hero__photo{width:100%}}
