
:root{
  --gold:#c8912d;
  --gold-dark:#a97312;
  --dark:#070707;
  --text:#111;
  --muted:#666;
  --soft:#f8f6f2;
  --card:#fff;
  --line:#ece7dc;
  --shadow:0 18px 45px rgba(0,0,0,.08);
  --radius:18px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',Arial,sans-serif;
  color:var(--text);
  background:#fff;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1160px,calc(100% - 48px));margin:0 auto}

/* HEADER */
.header{
  height:150px;
  background:#fff;
  display:flex;
  align-items:center;
  border-bottom:1px solid rgba(0,0,0,.06);
  position:sticky;
  top:0;
  z-index:50;
}
.header-inner{
  width:min(1160px,calc(100% - 48px));
  margin:0 auto;
  display:grid;
  grid-template-columns:220px 1fr auto;
  align-items:center;
  gap:24px;
}
.logo-wrap{display:flex;align-items:center}
.logo{
  width:175px; /* OVDJE MIJENJAŠ VELIČINU LOGA NA DESKTOPU */
  height:auto;
}
.nav{
  display:flex;
  justify-content:center;
  gap:54px;
  align-items:center;
  font-size:14px;
  font-weight:700;
  letter-spacing:.02em;
}
.nav a{
  padding:20px 2px 18px;
  position:relative;
}
.nav a.active,.nav a:hover{color:var(--gold-dark)}
.nav a.active:after{
  content:"";
  position:absolute;
  height:4px;
  border-radius:8px;
  left:0;right:0;bottom:0;
  background:linear-gradient(90deg,var(--gold),#e1b65b);
}

.menu-btn{display:none;background:none;border:0;font-size:28px}

/* HERO */
.hero{
  position:relative;
  min-height:500px; /* OVDJE MIJENJAŠ VISINU POČETNE SLIKE */
  background-image:linear-gradient(90deg,rgba(0,0,0,.78) 0%,rgba(0,0,0,.58) 28%,rgba(0,0,0,.12) 58%,rgba(0,0,0,0) 100%), url('../images/hero.jpg');
  background-size:cover;
  background-position:center center; /* ako želiš pomjeriti kadar: left center / center center / right center */
  display:flex;
  align-items:center;
}
.hero-content{
  width:min(1160px,calc(100% - 48px));
  margin:0 auto;
  color:white;
}
.script{
  font-family:'Playfair Display',serif;
  font-style:italic;
  color:var(--gold);
  font-size:48px;
  line-height:1;
  margin:0 0 8px;
}
.hero h1{
  font-family:'Playfair Display',serif;
  font-size:64px;
  line-height:.95;
  margin:0 0 20px;
  font-weight:700;
  max-width:520px;
}
.hero p{
  font-size:21px;
  line-height:1.55;
  max-width:430px;
  margin:0 0 30px;
  font-weight:600;
}
.btn-row{display:flex;flex-direction:column;gap:14px;width:290px}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:58px;
  padding:16px 22px;
  border-radius:10px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.02em;
  border:1px solid transparent;
}
.btn.gold{background:linear-gradient(135deg,#d4a445,#b97c19);color:#fff}
.btn.dark{background:rgba(0,0,0,.55);border-color:rgba(255,255,255,.75);color:#fff}

/* QUICK CARDS */
.quick{background:#fff;padding:34px 0 42px}
.quick-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.quick-card{
  background:#fff;
  min-height:120px;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
  padding:24px 22px;
  display:grid;
  grid-template-columns:54px 1fr;
  gap:15px;
  align-items:center;
}
.icon{
  color:var(--gold-dark);
  font-size:40px;
  line-height:1;
}
.quick-card h3{
  margin:0 0 8px;
  font-size:14px;
  text-transform:uppercase;
}
.quick-card p{margin:0;color:#333;font-size:14px;line-height:1.45}

/* SECTIONS */
.section{padding:70px 0;border-top:1px solid #f1eee7}
.apartment-grid{
  display:grid;
  grid-template-columns:1fr 1.25fr;
  gap:60px;
  align-items:center;
}
.section-label{
  font-family:'Playfair Display',serif;
  font-style:italic;
  color:var(--gold);
  font-size:34px;
  margin:0 0 4px;
}
.section h2{
  font-family:'Playfair Display',serif;
  font-size:44px;
  line-height:1.1;
  margin:0 0 20px;
}
.section p{font-size:17px;line-height:1.7;color:#333}
.features{
  display:flex;
  flex-wrap:wrap;
  gap:26px;
  margin:32px 0;
}
.feature{text-align:center;min-width:72px}
.feature .ficon{font-size:30px;color:var(--gold-dark)}
.feature strong{display:block;margin-top:6px}
.feature span{font-size:11px;text-transform:uppercase;color:#333}
.gallery-preview{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:10px;
}
.gallery-preview img{
  width:100%;
  height:132px;
  object-fit:cover;
  border-radius:12px;
}
.gallery-preview img:first-child{
  grid-column:1 / -1;
  height:260px;
}

/* SARAJEVO */
.sarajevo-card{
  border-radius:16px;
  overflow:hidden;
  min-height:330px;
  background-image:linear-gradient(90deg,rgba(0,0,0,.82),rgba(0,0,0,.45),rgba(0,0,0,.05)),url('../images/sarajevo.jpg');
  background-size:cover;
  background-position:center;
  color:white;
  padding:42px;
  display:flex;
  align-items:center;
}
.sarajevo-card h2{color:white;margin-bottom:14px}
.sarajevo-card p{color:white;max-width:410px}

/* CONTACT */
.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:30px;
  align-items:center;
}
.contact-list{display:grid;gap:18px;font-size:17px}
.contact-list div{display:flex;gap:12px;align-items:center}
.contact-list span{color:var(--gold-dark);font-size:24px}
.contact-photo{
  border-radius:16px;
  overflow:hidden;
  background:#eee;
  min-height:190px;
}
.contact-photo img{width:100%;height:220px;object-fit:cover}
.footer{
  background:#070707;
  color:#fff;
  text-align:center;
  padding:24px;
  font-size:14px;
}

/* PRIVATE INFO */
.private-box{
  background:linear-gradient(135deg,#111,#2a2112);
  color:white;
  border:1px solid rgba(200,145,45,.45);
  border-radius:18px;
  padding:28px;
  margin:34px 0 0;
}
.private-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:18px}
.private-item{background:rgba(255,255,255,.08);border-radius:14px;padding:18px}
.private-item span{display:block;color:#e3bf72;font-size:13px;text-transform:uppercase;font-weight:800}
.private-item strong{display:block;font-size:22px;margin-top:6px}

/* GALLERY PAGE */
.gallery-page{padding:60px 0}
.gallery-full{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.gallery-full img{width:100%;height:260px;object-fit:cover;border-radius:16px;box-shadow:var(--shadow)}

/* MOBILE */
@media (max-width:850px){
  .header{height:120px}
  .header-inner{
    grid-template-columns:48px 1fr auto;
    width:calc(100% - 28px);
  }
  .logo-wrap{justify-content:center}
  .logo{width:118px}
  .menu-btn{display:block}
  .nav{display:none}
  
  .hero{
    min-height:430px;
    background-image:linear-gradient(180deg,rgba(0,0,0,.15) 0%,rgba(0,0,0,.2) 30%,rgba(0,0,0,.82) 100%), url('../images/hero.jpg');
    background-position:center center;
    align-items:flex-end;
    padding-bottom:32px;
  }
  .hero-content{width:calc(100% - 28px)}
  .script{font-size:31px}
  .hero h1{font-size:42px}
  .hero p{font-size:15px;max-width:330px}
  .btn-row{width:100%}
  .quick{padding:18px 0 28px}
  .container{width:calc(100% - 28px)}
  .quick-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .quick-card{
    min-height:118px;
    padding:18px 12px;
    grid-template-columns:1fr;
    text-align:center;
    gap:8px;
  }
  .icon{font-size:32px}
  .quick-card h3{font-size:12px}
  .quick-card p{font-size:12px}
  .section{padding:44px 0}
  .apartment-grid,.contact-grid{grid-template-columns:1fr;gap:30px}
  .section h2{font-size:34px}
  .features{gap:18px}
  .gallery-preview img:first-child{height:210px}
  .sarajevo-card{padding:28px;min-height:310px}
  .private-grid{grid-template-columns:1fr}
  .gallery-full{grid-template-columns:1fr}
}


/* BACK TO TOP BUTTON */
#backToTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:linear-gradient(135deg,#d4a445,#b97c19);
    color:white;
    font-size:28px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    z-index:9999;
    opacity:0;
    visibility:hidden;
    transition:.3s;
}
#backToTop.show{
    opacity:1;
    visibility:visible;
}
#backToTop:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(0,0,0,.35);
}

/* LANGUAGE DROPDOWN */
.language-dropdown{
  position:relative;
  justify-self:end;
}
.language-current{
  border:1px solid #ddd;
  border-radius:10px;
  padding:10px 14px;
  font-weight:700;
  font-size:14px;
  background:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:7px;
  min-width:118px;
  justify-content:center;
}
.language-current:hover{
  border-color:var(--gold);
}
.language-menu{
  position:absolute;
  right:0;
  top:calc(100% + 8px);
  width:190px;
  background:#fff;
  border:1px solid #e7e1d6;
  border-radius:14px;
  box-shadow:0 18px 45px rgba(0,0,0,.14);
  padding:8px;
  display:none;
  z-index:99999;
}
.language-menu.show{
  display:block;
}
.language-menu button{
  width:100%;
  border:0;
  background:transparent;
  padding:11px 12px;
  border-radius:10px;
  font-weight:700;
  text-align:left;
  cursor:pointer;
}
.language-menu button:hover{
  background:#f7f2e9;
  color:var(--gold-dark);
}

@media (max-width:850px){
  .language-current{
    min-width:96px;
    font-size:12px;
    padding:8px 9px;
  }
  .language-menu{
    width:170px;
  }
}


/* V5: STICKY HEADER - transparent at top, white after scroll */
.header{
  transition: background .28s ease, box-shadow .28s ease, height .28s ease, border-color .28s ease;
}
body.home-top .header{
  background:rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
}
.header.scrolled{
  background:#fff;
  box-shadow:0 12px 35px rgba(0,0,0,.09);
}

/* V5: MOBILE MENU */
@media (max-width:850px){
  .header-inner{
    position:relative;
  }
  .nav{
    position:absolute;
    left:0;
    right:0;
    top:100%;
    display:none;
    flex-direction:column;
    gap:0;
    background:#fff;
    border:1px solid #eee4d8;
    border-radius:0 0 18px 18px;
    box-shadow:0 18px 40px rgba(0,0,0,.12);
    overflow:hidden;
    z-index:9999;
  }
  .nav.open{
    display:flex;
  }
  .nav a{
    width:100%;
    padding:17px 18px;
    border-bottom:1px solid #f2ecdf;
    text-align:left;
  }
  .nav a.active:after{
    display:none;
  }
}

/* V5: REVEAL ANIMATIONS */
.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible{
  opacity:1;
  transform:translateY(0);
}

/* V5: PRIVATE PAGE LOCK */
.private-lock{
  position:fixed;
  inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.97),rgba(248,246,242,.97));
  z-index:200000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.private-lock.hidden{
  display:none;
}
.private-lock-card{
  width:min(520px,100%);
  background:#fff;
  border:1px solid #ece1cf;
  border-radius:24px;
  box-shadow:0 25px 70px rgba(0,0,0,.13);
  padding:34px;
  text-align:center;
}
.private-lock-logo{
  width:150px;
  margin:0 auto 18px;
}
.private-lock-card h2{
  font-family:'Playfair Display',serif;
  font-size:38px;
  line-height:1.05;
  margin:8px 0 14px;
}
.private-lock-card p{
  color:#444;
  line-height:1.6;
}
#privateAccessInput{
  width:100%;
  height:56px;
  border:1px solid #ddd2c1;
  border-radius:12px;
  padding:0 16px;
  font-size:18px;
  text-align:center;
  margin:18px 0 14px;
  outline:none;
}
#privateAccessInput:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(200,145,45,.12);
}
.private-lock-error{
  display:none;
  color:#a00000 !important;
  font-weight:700;
  margin-top:12px;
}
.private-lock-error.show{
  display:block;
}
.private-protected.locked{
  filter:blur(10px);
  pointer-events:none;
  user-select:none;
}

@media (max-width:850px){
  #whatsappFloat{
    right:18px;
    bottom:86px;
    width:50px;
    height:50px;
  }
  #backToTop{
    right:18px;
    bottom:24px;
    width:50px;
    height:50px;
  }
  .private-lock-card{
    padding:26px 20px;
  }
}


/* V6: FIX ANCHOR POSITION UNDER STICKY HEADER */
section[id],
main[id]{
  scroll-margin-top:165px;
}

@media (max-width:850px){
  section[id],
  main[id]{
    scroll-margin-top:135px;
  }
}


/* V7: LOCATION / GOOGLE MAP */
.location-grid{
  display:grid;
  grid-template-columns:0.9fr 1.35fr;
  gap:38px;
  align-items:center;
}
.map-wrap{
  width:100%;
  min-height:360px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.10);
  border:1px solid #ece7dc;
}
.map-wrap iframe{
  width:100%;
  height:360px;
  border:0;
  display:block;
}
@media (max-width:850px){
  .location-grid{
    grid-template-columns:1fr;
  }
  .map-wrap,
  .map-wrap iframe{
    height:310px;
    min-height:310px;
  }
}


/* V11: elegantniji zlatni rukopisni font za "Dobrodošli u" i "Sarajevo ♡" */
.script{
  font-family:'Playfair Display', serif;
  font-style:italic;
  color:#c8912d;
  font-weight:600;
  letter-spacing:.5px;
  line-height:1;
}

/* Početna stranica - "Dobrodošli u" */
.hero .script{
  font-size:46px;
  margin-bottom:10px;
}

/* Sarajevo blok - "Sarajevo ♡" */
.sarajevo-card .script{
  font-size:54px;
  color:#c8912d;
  margin-bottom:10px;
}

/* Mobitel */
@media (max-width:850px){
  .hero .script{
    font-size:32px;
  }

  .sarajevo-card .script{
    font-size:40px;
  }
}


/* V12 - Great Vibes font kao na problem5 */
.hero .script{
    font-family:'Great Vibes', cursive !important;
    font-size:68px !important;
    color:#c8912d !important;
    font-weight:400 !important;
    line-height:1.1;
    letter-spacing:0;
}

.sarajevo-card .script{
    font-family:'Great Vibes', cursive !important;
    font-size:86px !important;
    color:#c8912d !important;
    font-weight:400 !important;
    line-height:1;
    letter-spacing:0;
}

@media (max-width:850px){
    .hero .script{
        font-size:46px !important;
    }

    .sarajevo-card .script{
        font-size:58px !important;
    }
}


/* V13: HERO LOCATION BUTTON */
.btn.outline-gold{
  background:rgba(255,255,255,.92);
  color:#8a5b0d;
  border:1px solid rgba(200,145,45,.85);
}
.btn.outline-gold:hover{
  background:#fff;
  transform:translateY(-2px);
}

/* V13: FLOATING LOCATION BUTTON */
#locationFloat{
  position:fixed;
  right:25px;
  bottom:92px;
  width:55px;
  height:55px;
  border-radius:50%;
  background:linear-gradient(135deg,#d4a445,#b97c19);
  color:white;
  font-size:25px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  z-index:9999;
  transition:.3s;
}
#locationFloat:hover{
  transform:translateY(-4px);
  box-shadow:0 15px 40px rgba(0,0,0,.35);
}

/* pomjeri back-to-top malo niže od lokacije */
#backToTop{
  bottom:25px;
}

@media (max-width:850px){
  #locationFloat{
    right:18px;
    bottom:86px;
    width:50px;
    height:50px;
    font-size:22px;
  }
}


/* V14: dugmad u sekciji Apartman */
.apartment-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  align-items:center;
}

.apartment-actions .btn{
  min-height:54px;
}

@media (max-width:850px){
  .apartment-actions{
    flex-direction:column;
    align-items:stretch;
  }
}


/* V15: širi meni za dodatne jezike */
.language-menu{
  width:210px;
  max-height:360px;
  overflow-y:auto;
}

/* bolji prikaz za arapski tekst */
html[lang="ar"] body{
  direction:rtl;
}
html[lang="ar"] .header-inner,
html[lang="ar"] .quick-grid,
html[lang="ar"] .apartment-grid,
html[lang="ar"] .contact-grid,
html[lang="ar"] .location-grid{
  direction:rtl;
}
html[lang="ar"] .language-dropdown{
  direction:ltr;
}
html[lang="ar"] .hero{
  background-image:linear-gradient(270deg,rgba(0,0,0,.78) 0%,rgba(0,0,0,.58) 28%,rgba(0,0,0,.12) 58%,rgba(0,0,0,0) 100%), url('../images/hero.jpg');
}
html[lang="ar"] .hero-content{
  text-align:right;
}
html[lang="ar"] .btn-row{
  align-items:stretch;
}


/* V16: FACEBOOK / INSTAGRAM ICONS */
.social-links{
  display:flex;
  gap:12px;
  margin-top:6px;
  flex-wrap:wrap;
}
.social-link{
  display:inline-flex;
  align-items:center;
  gap:9px;
  min-height:46px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid #e7ddcd;
  background:#fff;
  color:#111;
  font-weight:800;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  transition:.25s ease;
}
.social-link svg{
  width:23px;
  height:23px;
  fill:currentColor;
}
.social-link.facebook{
  color:#1877F2;
}
.social-link.instagram{
  color:#C13584;
}
.social-link:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(0,0,0,.12);
  border-color:var(--gold);
}
.footer-social{
  margin:14px auto 0;
  display:flex;
  justify-content:center;
  gap:12px;
}
.footer-social a{
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(255,255,255,.1);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:.25s ease;
}
.footer-social a:hover{
  background:var(--gold);
  transform:translateY(-3px);
}
.footer-social svg{
  width:22px;
  height:22px;
  fill:currentColor;
}
@media (max-width:850px){
  .social-links{
    justify-content:flex-start;
  }
  .social-link{
    width:100%;
    justify-content:center;
  }
}


/* V17: Social ikonice bez teksta, jedna pored druge */
.social-links{
  display:flex !important;
  flex-direction:row !important;
  gap:12px;
  margin-top:8px;
  align-items:center;
  flex-wrap:nowrap;
}

.social-link{
  width:48px;
  height:48px;
  min-height:48px;
  padding:0 !important;
  border-radius:50%;
  justify-content:center;
  align-items:center;
  box-shadow:0 10px 24px rgba(0,0,0,.08);
}

.social-link svg{
  width:25px;
  height:25px;
}

.social-link.facebook{
  background:#1877F2;
  color:#fff;
  border-color:#1877F2;
}

.social-link.instagram{
  background:linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
  color:#fff;
  border:none;
}

.social-link:hover{
  transform:translateY(-3px);
  box-shadow:0 16px 34px rgba(0,0,0,.16);
}

@media (max-width:850px){
  .social-links{
    flex-direction:row !important;
    justify-content:flex-start !important;
    flex-wrap:nowrap !important;
  }

  .social-link{
    width:48px !important;
    height:48px !important;
  }
}


/* V18 Follow us text */
.social-wrapper{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:10px;
}
.social-title{
  margin:0;
  font-weight:700;
  color:#555;
  text-transform:uppercase;
  letter-spacing:1px;
  font-size:14px;
}
@media (max-width:850px){
  .social-wrapper{
    flex-wrap:wrap;
  }
  .social-title{
    width:100%;
  }
}


/* V19 Luxury social section */
.social-wrapper{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin-top:18px;
}

.social-title{
  position:relative;
  font-size:13px;
  font-weight:800;
  color:#b8860b;
  text-transform:uppercase;
  letter-spacing:2px;
  padding-bottom:12px;
}

.social-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:90px;
  height:2px;
  background:linear-gradient(90deg,#c8912d,transparent);
}

.social-links{
  margin-top:0 !important;
}

@media (max-width:850px){
  .social-wrapper{
    align-items:center;
  }

  .social-title{
    text-align:center;
  }

  .social-title::after{
    left:50%;
    transform:translateX(-50%);
  }
}


/* V20: fix kontakt layout - social blok ostaje u srednjoj koloni, logo ostaje desno */
.contact-grid{
  align-items:center;
}

.contact-list{
  align-self:center;
}

.contact-photo{
  align-self:center;
}

.social-wrapper{
  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;
  gap:12px !important;
  margin-top:22px !important;
  margin-bottom:0 !important;
}

.social-title{
  position:relative;
  margin:0 !important;
  font-size:13px !important;
  font-weight:800 !important;
  color:#b8860b !important;
  text-transform:uppercase;
  letter-spacing:2px;
  padding-bottom:12px;
}

.social-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:90px;
  height:2px;
  background:linear-gradient(90deg,#c8912d,transparent);
}

.social-links{
  display:flex !important;
  flex-direction:row !important;
  gap:12px !important;
  margin-top:0 !important;
  align-items:center !important;
  flex-wrap:nowrap !important;
}

.social-link{
  width:48px !important;
  height:48px !important;
  min-height:48px !important;
  padding:0 !important;
  border-radius:50% !important;
  justify-content:center !important;
  align-items:center !important;
}

@media (max-width:850px){
  .social-wrapper{
    align-items:flex-start !important;
  }

  .social-title{
    text-align:left !important;
  }

  .social-title::after{
    left:0 !important;
    transform:none !important;
  }
}


/* V23: ručno odabrane outline ikonice u zlatnoj boji */
.quick-card .icon{
  display:flex;
  align-items:center;
  justify-content:center;
  color:#c8912d;
}

.quick-card .line-icon{
  width:48px;
  height:48px;
  stroke:#c8912d;
  stroke-width:1.7;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

@media (max-width:850px){
  .quick-card .line-icon{
    width:38px;
    height:38px;
  }
}


/* V24: dodatne SVG ikonice za dugmad, features i About stranicu */
.btn-icon{
  width:20px;
  height:20px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.btn-icon .line-icon{
  width:20px;
  height:20px;
  stroke:currentColor;
  stroke-width:1.9;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.contact-icon{
  color:#c8912d;
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.contact-icon .line-icon{
  width:25px;
  height:25px;
  stroke:#c8912d;
  stroke-width:1.8;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.feature .ficon{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
}
.feature-svg{
  width:34px;
  height:34px;
  stroke:#c8912d;
  stroke-width:1.7;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.about-page{
  padding-top:90px;
}
.about-layout{
  display:grid;
  grid-template-columns:1fr 1.15fr;
  gap:50px;
  align-items:center;
}
.about-layout h1{
  font-family:'Playfair Display',serif;
  font-size:52px;
  line-height:1.05;
  margin:0 0 20px;
}
.about-info-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:14px;
  margin:30px 0;
}
.about-info-card{
  border:1px solid #ece7dc;
  border-radius:16px;
  padding:20px;
  background:#fff;
  box-shadow:0 12px 30px rgba(0,0,0,.05);
}
.about-info-card strong{
  display:block;
  font-size:24px;
  color:#111;
  margin-bottom:5px;
}
.about-info-card span{
  color:#666;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.04em;
}
.about-photo{
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.10);
}
.about-photo img{
  width:100%;
  height:520px;
  object-fit:cover;
}
@media (max-width:850px){
  .about-layout{
    grid-template-columns:1fr;
  }
  .about-layout h1{
    font-size:38px;
  }
  .about-info-grid{
    grid-template-columns:1fr;
  }
  .about-photo img{
    height:300px;
  }
}


/* V25: dugmad u apartman sekciji u jednom redu i iste boje */
.apartment-actions{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  gap:12px !important;
  align-items:center !important;
}
.apartment-actions .btn{
  flex:1 1 0;
  white-space:nowrap;
  min-width:0;
  padding-left:14px;
  padding-right:14px;
}
@media (max-width:850px){
  .apartment-actions{
    flex-wrap:wrap !important;
  }
  .apartment-actions .btn{
    flex:1 1 100%;
  }
}

/* V25: Bootstrap telephone icon */
.btn-icon .line-icon{
  stroke:currentColor;
  fill:none;
}
.contact-phone-svg{
  width:24px;
  height:24px;
  stroke:#c8912d;
  fill:none;
  stroke-width:1.2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* V25: Sarajevo info page */
.sarajevo-page{
  padding-top:85px;
}
.sarajevo-layout{
  display:grid;
  gap:38px;
}
.sarajevo-intro{
  max-width:820px;
}
.sarajevo-intro h1{
  font-family:'Playfair Display',serif;
  font-size:54px;
  line-height:1.08;
  margin:0 0 18px;
}
.sarajevo-intro p:not(.script){
  font-size:18px;
  line-height:1.75;
  color:#333;
}
.sarajevo-places-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.place-card{
  background:#fff;
  border:1px solid #ece7dc;
  border-radius:18px;
  padding:24px;
  box-shadow:0 12px 30px rgba(0,0,0,.06);
}
.place-card h3{
  margin:0 0 10px;
  font-family:'Playfair Display',serif;
  font-size:26px;
}
.place-card p{
  margin:0;
  color:#444;
  line-height:1.65;
}
.sarajevo-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
@media (max-width:850px){
  .sarajevo-intro h1{
    font-size:38px;
  }
  .sarajevo-places-grid{
    grid-template-columns:1fr;
  }
  .sarajevo-actions{
    flex-direction:column;
  }
}


/* V26: Gallery camera icon and location icon */
.btn-line-icon{
  width:19px;
  height:19px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.35;
  stroke-linecap:round;
  stroke-linejoin:round;
  display:block;
}

.geo-icon{
  fill:currentColor;
  stroke:none;
}

#locationFloat{
  color:#fff;
}

#locationFloat .btn-line-icon{
  width:25px;
  height:25px;
  fill:#fff;
  stroke:none;
}

/* kraći tekst omogućava da 3 dugmeta ostanu uredno u jednom redu */
.apartment-actions .btn{
  gap:8px;
  justify-content:center;
}

@media (max-width:1050px){
  .apartment-actions .btn{
    font-size:13px;
    padding-left:10px;
    padding-right:10px;
  }
}


/* V27: poravnanje feature ikonica i tekstova */
.features{
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px 18px !important;
  align-items:stretch;
}

.feature{
  min-width:0 !important;
  height:104px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  text-align:center;
}

.feature .ficon{
  width:42px;
  height:42px;
  min-height:42px !important;
  margin:0 auto 8px;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  color:#c8912d;
  font-size:32px;
  line-height:1;
}

.feature .feature-svg{
  width:34px;
  height:34px;
  display:block;
}

.feature strong{
  min-height:22px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-top:0 !important;
  line-height:1.15;
  text-align:center;
}

.feature span{
  min-height:28px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  text-align:center;
  line-height:1.2;
}

/* V27: elegantni hover tooltip za floating dugmad */
#locationFloat,
#backToTop{
  overflow:visible;
}

#locationFloat::after,
#backToTop::after{
  content:attr(data-tooltip);
  position:absolute;
  right:68px;
  top:50%;
  transform:translateY(-50%) translateX(8px);
  background:#111;
  color:#fff;
  font-size:13px;
  font-weight:800;
  letter-spacing:.02em;
  white-space:nowrap;
  padding:8px 11px;
  border-radius:9px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:.25s ease;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
}

#locationFloat::before,
#backToTop::before{
  content:"";
  position:absolute;
  right:58px;
  top:50%;
  transform:translateY(-50%);
  border-left:7px solid #111;
  border-top:7px solid transparent;
  border-bottom:7px solid transparent;
  opacity:0;
  visibility:hidden;
  transition:.25s ease;
}

#locationFloat:hover::after,
#locationFloat:hover::before,
#backToTop:hover::after,
#backToTop:hover::before{
  opacity:1;
  visibility:visible;
  transform:translateY(-50%) translateX(0);
}

#locationFloat:hover::before,
#backToTop:hover::before{
  transform:translateY(-50%);
}

/* Na mobitelu nema hovera, zato se tooltip ne prikazuje */
@media (max-width:850px){
  .features{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:20px 12px !important;
  }

  .feature{
    height:100px;
  }

  #locationFloat::after,
  #locationFloat::before,
  #backToTop::after,
  #backToTop::before{
    display:none;
  }
}


/* V36 FINAL: Sarajevo stranica - prikaz assets/images/sarajevo.jpg */
.sarajevo-page .sarajevo-header-image,
.sarajevo-header-image{
  width:100%;
  margin:0 0 42px 0;
  border-radius:24px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(0,0,0,.14);
  border:1px solid #ece7dc;
}

.sarajevo-page .sarajevo-header-image img,
.sarajevo-header-image img{
  width:100%;
  height:430px;
  object-fit:cover;
  display:block;
}

/* V36 FINAL: Sarajevo ♡ isti rukopisni zlatni stil kao na početnoj */
.sarajevo-page .sarajevo-page-script,
.sarajevo-page .script.sarajevo-page-script,
.script.sarajevo-page-script{
  font-family:'Great Vibes', cursive !important;
  font-size:86px !important;
  color:#c8912d !important;
  font-weight:400 !important;
  line-height:1 !important;
  letter-spacing:0 !important;
  margin:0 0 10px 0 !important;
}

@media (max-width:850px){
  .sarajevo-page .sarajevo-header-image img,
  .sarajevo-header-image img{
    height:250px;
  }

  .sarajevo-page .sarajevo-page-script,
  .sarajevo-page .script.sarajevo-page-script,
  .script.sarajevo-page-script{
    font-size:58px !important;
  }
}


/* V44: Public/private guestbook pages */
.guest-page{
  padding-top:95px;
}
.guest-layout{
  display:grid;
  gap:30px;
}
.guest-hero-card,
.private-gate-card{
  background:#fff;
  border:1px solid #ece7dc;
  border-radius:26px;
  box-shadow:0 18px 45px rgba(0,0,0,.09);
  padding:34px;
  text-align:center;
}
.guest-logo{
  width:150px;
  margin:0 auto 18px;
}
.guest-hero-card h1,
.private-gate-card h1{
  font-family:'Playfair Display',serif;
  font-size:48px;
  line-height:1.08;
  margin:8px 0 14px;
}
.guest-hero-card p,
.private-gate-card p{
  max-width:680px;
  margin-left:auto;
  margin-right:auto;
}
.guest-info-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.guest-info-card{
  background:#fff;
  border:1px solid #ece7dc;
  border-radius:20px;
  box-shadow:0 12px 34px rgba(0,0,0,.06);
  padding:26px 20px;
  text-align:center;
}
.guest-card-icon{
  width:58px;
  height:58px;
  margin:0 auto 14px;
  color:#c8912d;
  display:flex;
  align-items:center;
  justify-content:center;
}
.guest-icon-svg{
  width:48px;
  height:48px;
  stroke:#c8912d;
  stroke-width:1.7;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.guest-info-card span{
  display:block;
  color:#777;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  margin-bottom:8px;
}
.guest-info-card strong{
  display:block;
  font-size:28px;
  color:#111;
  word-break:break-word;
}
.guest-note{
  background:#f8f3ea;
  border:1px solid #ebddc9;
  border-radius:18px;
  padding:24px;
  text-align:center;
}
.private-gate{
  max-width:620px;
  margin:0 auto;
}
.private-gate-card input{
  width:100%;
  height:58px;
  border:1px solid #ddd2c1;
  border-radius:14px;
  text-align:center;
  font-size:19px;
  outline:none;
  margin:18px 0 14px;
}
.private-gate-card input:focus{
  border-color:#c8912d;
  box-shadow:0 0 0 4px rgba(200,145,45,.13);
}
.private-gate-error{
  display:none;
  color:#a00000 !important;
  font-weight:800;
  margin-top:12px !important;
}
.private-gate-error.show{
  display:block;
}
.hidden{
  display:none !important;
}
.private-content{
  display:grid;
  gap:30px;
}
.gate-icon{
  margin-bottom:8px;
}
@media (max-width:850px){
  .guest-page{
    padding-top:70px;
  }
  .guest-info-grid{
    grid-template-columns:1fr;
  }
  .guest-hero-card h1,
  .private-gate-card h1{
    font-size:34px;
  }
  .guest-info-card strong{
    font-size:24px;
  }
}


/* V46: guestbook full info layout */
.guest-section-card{
  background:#fff;
  border:1px solid #ece7dc;
  border-radius:22px;
  box-shadow:0 14px 38px rgba(0,0,0,.07);
  padding:28px;
}
.guest-section-title{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}
.guest-section-title .guest-icon-svg{
  width:38px;
  height:38px;
}
.guest-section-title h2{
  font-family:'Playfair Display',serif;
  font-size:32px;
  margin:0;
}
.guest-list{
  margin:0;
  padding-left:22px;
  line-height:1.8;
  color:#333;
}
.guest-mini-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.guest-mini-grid div{
  background:#faf7f1;
  border:1px solid #eee3d2;
  border-radius:16px;
  padding:18px;
}
.guest-mini-grid p{
  margin-bottom:0;
  color:#555;
  line-height:1.6;
}
.video-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.video-placeholder{
  min-height:110px;
  border:1px dashed #c8912d;
  background:#fffaf0;
  border-radius:16px;
  font-weight:800;
  color:#8a5b0d;
  cursor:pointer;
}
.guest-muted{
  color:#777;
  margin-bottom:0;
}
@media(max-width:850px){
  .guest-mini-grid,
  .video-grid{
    grid-template-columns:1fr;
  }
}


/* V51: guestbook full info layout + crni prozor */
.guest-section-card{
  background:#fff;
  border:1px solid #ece7dc;
  border-radius:22px;
  box-shadow:0 14px 38px rgba(0,0,0,.07);
  padding:28px;
}
.guest-section-title{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:16px;
}
.guest-section-title .guest-icon-svg{
  width:38px;
  height:38px;
}
.guest-section-title h2{
  font-family:'Playfair Display',serif;
  font-size:32px;
  margin:0;
}
.guest-list{
  margin:0;
  padding-left:22px;
  line-height:1.8;
  color:#333;
}
.guest-mini-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}
.guest-mini-grid div{
  background:#faf7f1;
  border:1px solid #eee3d2;
  border-radius:16px;
  padding:18px;
}
.guest-mini-grid p{
  margin-bottom:0;
  color:#555;
  line-height:1.6;
}
.video-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
.video-placeholder{
  min-height:110px;
  border:1px dashed #c8912d;
  background:#fffaf0;
  border-radius:16px;
  font-weight:800;
  color:#8a5b0d;
  cursor:pointer;
}
.guest-muted{
  color:#777;
  margin-bottom:0;
}
.guest-private-box{
  background:linear-gradient(135deg,#111 0%,#24211d 100%);
  color:#fff;
  border-radius:26px;
  padding:34px;
  box-shadow:0 22px 55px rgba(0,0,0,.20);
  border:1px solid rgba(200,145,45,.35);
}
.guest-private-box .section-label{
  color:#c8912d;
}
.guest-private-box h2{
  font-family:'Playfair Display',serif;
  font-size:42px;
  line-height:1.1;
  margin:8px 0 12px;
  color:#fff;
}
.guest-private-box p{
  color:rgba(255,255,255,.78);
  margin-bottom:22px;
}
.guest-private-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.guest-private-item{
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  padding:22px 18px;
}
.guest-private-item span{
  display:block;
  color:#c8912d;
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:8px;
}
.guest-private-item strong{
  display:block;
  color:#fff;
  font-size:26px;
  line-height:1.2;
  word-break:break-word;
}
.guest-stay-grid{
  grid-template-columns:repeat(3,minmax(0,1fr));
}
@media(max-width:850px){
  .guest-mini-grid,
  .video-grid,
  .guest-private-grid,
  .guest-stay-grid{
    grid-template-columns:1fr;
  }
  .guest-private-box{
    padding:26px 20px;
  }
  .guest-private-box h2{
    font-size:32px;
  }
  .guest-private-item strong{
    font-size:23px;
  }
}


/* V53 */
.guest-logo{
  width:180px !important;
}


/* V54 guestbook corrections */
.guest-logo{
  width:210px !important;
}


/* V55 guestbook logo spacing */
.guest-hero-card .guest-logo,
.private-gate-card .guest-logo{
  width:210px !important;
  margin-bottom:4px !important;
}
.guest-hero-card h1,
.private-gate-card h1{
  margin-top:0 !important;
}


/* V56 guestbook standalone layout */
.guest-simple-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 32px;
  background:#fff;
  border-bottom:1px solid #eee3d2;
  position:sticky;
  top:0;
  z-index:100;
}
.guest-simple-logo{
  width:95px;
  display:block;
}
.guest-hero-card .guest-logo,
.private-gate-card .guest-logo{
  width:210px !important;
  margin-bottom:-14px !important;
}
.guest-hero-card h1,
.private-gate-card h1{
  margin-top:-8px !important;
}
@media(max-width:768px){
 .guest-simple-header{padding:14px 18px;}
 .guest-simple-logo{width:80px;}
}

/* V57 */
.guest-simple-logo-link{
  cursor:default;
}
.guest-simple-header .language-switcher{
  display:flex !important;
  gap:8px;
  flex-wrap:wrap;
}
.guest-simple-header .lang-btn{
  min-width:46px;
}


/* V58: guestbook language dropdown like index.html */
.guest-simple-header{
  gap:16px;
}

.guest-simple-header .guest-language-dropdown{
  position:relative;
  display:block !important;
}

.guest-simple-header .language-current{
  display:flex;
  align-items:center;
  gap:8px;
  background:#fff;
  border:1px solid #eadcc7;
  border-radius:999px;
  padding:9px 14px;
  cursor:pointer;
  box-shadow:0 8px 22px rgba(0,0,0,.07);
  font-weight:800;
  color:#111;
}

.guest-simple-header .language-menu{
  position:absolute;
  right:0;
  top:calc(100% + 10px);
  min-width:185px;
  background:#fff;
  border:1px solid #eadcc7;
  border-radius:16px;
  box-shadow:0 18px 45px rgba(0,0,0,.16);
  padding:8px;
  display:none;
  z-index:999;
}

.guest-simple-header .language-menu.open{
  display:block;
}

.guest-simple-header .language-menu button{
  width:100%;
  border:0;
  background:transparent;
  padding:10px 12px;
  border-radius:10px;
  text-align:left;
  cursor:pointer;
  font-weight:700;
  color:#111;
}

.guest-simple-header .language-menu button:hover{
  background:#f8f1e6;
}

@media(max-width:768px){
  .guest-simple-header .language-current{
    padding:8px 10px;
    font-size:13px;
  }
  .guest-simple-header .language-menu{
    min-width:165px;
  }
}


/* V59: popravljeno otvaranje language dropdowna na guestbook stranicama */
.guest-simple-header{
  overflow:visible !important;
}

.guest-simple-header .guest-language-dropdown,
.guest-simple-header .language-dropdown{
  position:relative !important;
  display:block !important;
  z-index:2000 !important;
}

.guest-simple-header .language-current{
  position:relative;
  z-index:2001;
}

.guest-simple-header .language-menu{
  display:none !important;
  position:absolute !important;
  right:0 !important;
  top:calc(100% + 10px) !important;
  z-index:3000 !important;
}

.guest-simple-header .language-menu.open{
  display:block !important;
}


/* V60: SmartStay-style accordion guestbook */
.guest-hero-compact{
  padding-top:24px !important;
  padding-bottom:24px !important;
}
.guest-accordion{
  display:grid;
  gap:14px;
}
.guest-accordion-item{
  background:#fff;
  border:1px solid #ece7dc;
  border-radius:20px;
  box-shadow:0 12px 34px rgba(0,0,0,.06);
  overflow:hidden;
}
.guest-accordion-toggle{
  width:100%;
  border:0;
  background:#fff;
  display:grid;
  grid-template-columns:54px 1fr 34px;
  align-items:center;
  gap:14px;
  padding:18px 20px;
  cursor:pointer;
  text-align:left;
}
.guest-accordion-icon{
  width:54px;
  height:54px;
  border-radius:16px;
  background:#fbf5eb;
  border:1px solid #eadcc7;
  display:flex;
  align-items:center;
  justify-content:center;
}
.guest-accordion-icon .guest-icon-svg{
  width:32px;
  height:32px;
}
.guest-accordion-title{
  font-size:19px;
  font-weight:900;
  color:#111;
  letter-spacing:-.01em;
}
.guest-accordion-arrow{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#c8912d;
  background:#fbf5eb;
  transition:.25s ease;
  font-size:22px;
}
.guest-accordion-item.open .guest-accordion-arrow{
  transform:rotate(180deg);
}
.guest-accordion-panel{
  display:none;
  border-top:1px solid #f0e7d8;
  background:#fffdf9;
}
.guest-accordion-item.open .guest-accordion-panel{
  display:block;
}
.guest-accordion-content{
  padding:22px;
}
.guest-private-box-compact{
  box-shadow:none;
}
.single-info-card{
  max-width:520px;
}
.guest-accordion-content .guest-info-grid{
  margin:0;
}
.guest-accordion-content .guest-private-box{
  margin:0;
}
@media(max-width:850px){
  .guest-accordion-toggle{
    grid-template-columns:48px 1fr 30px;
    padding:15px 15px;
    gap:12px;
  }
  .guest-accordion-icon{
    width:48px;
    height:48px;
  }
  .guest-accordion-title{
    font-size:17px;
  }
  .guest-accordion-content{
    padding:16px;
  }
}


/* V62: parking image, location buttons, contact buttons */
.guest-parking-layout{
  display:grid;
  grid-template-columns:0.9fr 1.25fr;
  gap:18px;
  align-items:stretch;
}
.guest-parking-photo{
  margin:0;
  background:#fff;
  border:1px solid #ece7dc;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.guest-parking-photo img{
  width:100%;
  height:100%;
  min-height:250px;
  object-fit:cover;
  display:block;
}
.guest-parking-photo figcaption{
  padding:12px 14px;
  font-size:13px;
  color:#777;
  background:#fffaf0;
  border-top:1px solid #ece7dc;
}
.guest-action-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}
.guest-contact-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}
.guest-contact-button{
  display:inline-flex;
  align-items:center;
  gap:10px;
  min-height:52px;
  padding:12px 16px;
  border-radius:999px;
  text-decoration:none;
  font-weight:900;
  border:1px solid #eadcc7;
  background:#fff;
  color:#111;
  box-shadow:0 10px 24px rgba(0,0,0,.07);
}
.guest-contact-button.phone{
  background:#111;
  color:#fff;
  border-color:#111;
}
.guest-contact-button.viber{
  background:#7360f2;
  color:#fff;
  border-color:#7360f2;
}
.guest-contact-button.whatsapp{
  background:#25d366;
  color:#fff;
  border-color:#25d366;
}
.guest-contact-svg{
  width:22px;
  height:22px;
  stroke:currentColor;
  stroke-width:1.5;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
@media(max-width:850px){
  .guest-parking-layout{
    grid-template-columns:1fr;
  }
  .guest-contact-actions,
  .guest-action-row{
    flex-direction:column;
  }
  .guest-contact-button{
    justify-content:center;
    width:100%;
  }
}

.guest-rules-intro,.guest-rules-closing{text-align:center;font-weight:700;margin:10px 0 20px}.guest-rules-closing{color:#c8912d;font-size:1.1rem}

/* V64 highlighted closing message */
.guest-rules-closing{
  display:block !important;
  text-align:center !important;
  color:#c8912d !important;
  font-size:1.35rem !important;
  font-weight:900 !important;
  margin-top:28px !important;
  padding:18px !important;
  background:linear-gradient(135deg,#fffaf0,#f8f1e6);
  border:2px solid #e5c07b;
  border-radius:18px;
  box-shadow:0 10px 25px rgba(200,145,45,.15);
}


/* V65 updates from uploaded V64 */
.parking-small-note{
  display:block;
  margin-top:10px;
  font-size:12px;
  line-height:1.35;
  color:#777;
  font-weight:700;
}
.about-detailed-text{
  margin:20px 0 28px;
}
.about-detailed-text p{
  margin:0 0 16px;
  line-height:1.75;
  color:#333;
}
.about-detailed-text strong{
  color:#111;
  font-weight:900;
}
.about-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:10px;
}
.about-actions .btn{
  justify-content:center;
}

/* V70 clean about grids */
.small-card-text{font-size:.85rem !important;}
.nearby-title.strong-style{
  font-family:inherit !important;
  font-size:1.25rem !important;
  font-weight:800 !important;
  color:#111 !important;
  text-align:left !important;
  margin:34px 0 18px !important;
}
.nearby-grid{margin-bottom:24px;}

/* V71 compact about cards + side logo */
.about-info-card{
  padding:16px 18px !important;
  min-height:105px !important;
}
.about-info-card strong{
  font-size:1.25rem !important;
  line-height:1.15 !important;
}
.about-info-card span{
  font-size:.72rem !important;
  line-height:1.25 !important;
}
.about-info-grid{
  gap:12px !important;
}
.nearby-title.strong-style{
  margin:24px 0 14px !important;
}
.about-side-logo{
  margin-top:18px;
  width:100%;
  border-radius:24px;
  background:#f7f2e8;
  border:1px solid #eadcc7;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:34px;
  box-shadow:0 18px 45px rgba(0,0,0,.08);
}
.about-side-logo img{
  width:100%;
  max-width:360px;
  display:block;
}
@media(max-width:850px){
  .about-info-card{
    min-height:90px !important;
  }
  .about-side-logo{
    padding:24px;
  }
}

/* V72 smaller desktop cards */
@media(min-width:851px){
  .about-info-card{
    padding:14px 16px !important;
    min-height:88px !important;
  }
  .about-info-card strong{
    font-size:1.1rem !important;
  }
  .about-info-card span{
    font-size:.66rem !important;
  }
  .about-info-grid{
    gap:10px !important;
  }
}

.gold-stars{color:#c8912d;font-size:1.15em;font-weight:700;letter-spacing:2px;}

.gold-stars{letter-spacing:4px !important;}

/* V76 about label same as Sarajevo title */
.about-script-title,
.section-label{
  font-family:'Great Vibes', cursive !important;
  color:#c8912d !important;
  font-size:clamp(2.8rem,6vw,4.2rem) !important;
  font-weight:400 !important;
  letter-spacing:0 !important;
}

/* V78 Sarajevo expanded text */
.sarajevo-expanded-text{
  max-width:1100px;
  margin:38px auto 42px;
  padding:0;
}
.sarajevo-expanded-text p{
  margin:0 0 18px;
  color:#333;
  font-size:1.05rem;
  line-height:1.85;
}
.sarajevo-expanded-text p:last-child{
  margin-bottom:0;
}

/* V86 reduce space below header on all pages */
.page-hero,
.hero-page,
.about-hero,
.sarajevo-hero,
.gallery-hero,
.page-header,
.section-hero{
  padding-top: 20px !important;
  margin-top: 0 !important;
}
main{
  padding-top: 10px;
}
@media (min-width: 768px){
  header + main,
  .site-header + main{
    margin-top: -20px;
  }
}

/* V87 extra reduce top spacing */
header + main,
.site-header + main{
  margin-top:-60px !important;
}
.page-hero,.about-hero,.sarajevo-hero,.gallery-hero,.page-header{
  padding-top:0 !important;
  margin-top:-20px !important;
}

/* V88 recommendations accordion */
.recommendations-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.recommendation-card{
  align-items:flex-start !important;
  text-align:left !important;
  min-height:auto !important;
}
.recommendation-card-wide{
  grid-column:1 / -1;
}
.recommendation-card strong{
  font-size:1rem !important;
  line-height:1.4 !important;
  margin-bottom:14px;
}
.recommendation-list{
  width:100%;
  display:grid;
  gap:10px;
  margin-top:8px;
}
.recommendation-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding:10px 0;
  border-top:1px solid #eee3d2;
}
.recommendation-name{
  font-weight:800;
  color:#111;
  line-height:1.25;
}
.recommendation-location-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:82px;
  padding:8px 12px;
  border-radius:999px;
  background:#c8912d;
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:.78rem;
  white-space:nowrap;
}
@media(max-width:850px){
  .recommendations-grid{
    grid-template-columns:1fr;
  }
  .recommendation-card-wide{
    grid-column:auto;
  }
  .recommendation-row{
    align-items:flex-start;
    flex-direction:column;
  }
  .recommendation-location-btn{
    width:100%;
  }
}


/* V90 functional gallery */
.gallery-heading{
  margin-bottom:28px;
}
.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:18px;
}
.gallery-item{
  border:0;
  padding:0;
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  cursor:pointer;
  box-shadow:0 14px 38px rgba(0,0,0,.08);
  border:1px solid #ece7dc;
  aspect-ratio:4 / 3;
}
.gallery-item img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  transition:transform .35s ease;
}
.gallery-item:hover img{
  transform:scale(1.04);
}
.gallery-actions{
  display:flex;
  justify-content:center;
  margin-top:34px;
}
.gallery-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}
.gallery-lightbox.open{
  display:flex;
}
.gallery-lightbox img{
  max-width:min(1100px,88vw);
  max-height:82vh;
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 18px 60px rgba(0,0,0,.45);
}
.gallery-lightbox-close,
.gallery-lightbox-nav{
  position:absolute;
  border:0;
  background:rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(6px);
}
.gallery-lightbox-close{
  top:24px;
  right:24px;
  width:48px;
  height:48px;
  border-radius:50%;
  font-size:34px;
}
.gallery-lightbox-nav{
  top:50%;
  transform:translateY(-50%);
  width:58px;
  height:58px;
  border-radius:50%;
  font-size:54px;
}
.gallery-lightbox-nav.prev{left:24px;}
.gallery-lightbox-nav.next{right:24px;}
.gallery-lightbox-counter{
  position:absolute;
  bottom:22px;
  color:#fff;
  font-weight:800;
  letter-spacing:.08em;
}
body.lightbox-open{
  overflow:hidden;
}
@media(max-width:768px){
  .gallery-grid{
    grid-template-columns:1fr;
  }
  .gallery-lightbox{
    padding:18px;
  }
  .gallery-lightbox-nav{
    width:44px;
    height:44px;
    font-size:38px;
  }
  .gallery-lightbox-nav.prev{left:10px;}
  .gallery-lightbox-nav.next{right:10px;}
}


/* V91 automatic gallery */
.gallery-note{
  max-width:900px;
  margin:0 auto 22px;
  text-align:center;
  color:#666;
  line-height:1.6;
}
.gallery-loading{
  grid-column:1 / -1;
  text-align:center;
  color:#777;
  padding:30px;
  background:#fff;
  border:1px solid #ece7dc;
  border-radius:18px;
}


/* V92 gallery video support */
.gallery-video-item{
  position:relative;
}
.gallery-video-item video{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.gallery-video-badge{
  position:absolute;
  inset:auto 14px 14px auto;
  width:46px;
  height:46px;
  border-radius:50%;
  background:rgba(0,0,0,.62);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  box-shadow:0 10px 24px rgba(0,0,0,.2);
}
.gallery-lightbox-video{
  max-width:min(1100px,88vw);
  max-height:82vh;
  border-radius:18px;
  box-shadow:0 18px 60px rgba(0,0,0,.45);
  background:#000;
}


/* V96 homepage image lightbox */
.home-gallery-clickable{
  cursor:zoom-in !important;
}
.home-gallery-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}
.home-gallery-lightbox.open{
  display:flex;
}
.home-gallery-lightbox img{
  max-width:min(1100px,88vw);
  max-height:82vh;
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 18px 60px rgba(0,0,0,.45);
}
.home-gallery-close,
.home-gallery-nav{
  position:absolute;
  border:0;
  background:rgba(255,255,255,.12);
  color:#fff;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  backdrop-filter:blur(6px);
}
.home-gallery-close{
  top:24px;
  right:24px;
  width:48px;
  height:48px;
  border-radius:50%;
  font-size:34px;
}
.home-gallery-nav{
  top:50%;
  transform:translateY(-50%);
  width:58px;
  height:58px;
  border-radius:50%;
  font-size:54px;
}
.home-gallery-nav.prev{left:24px;}
.home-gallery-nav.next{right:24px;}
.home-gallery-counter{
  position:absolute;
  bottom:22px;
  color:#fff;
  font-weight:800;
  letter-spacing:.08em;
}
body.lightbox-open{
  overflow:hidden;
}
@media(max-width:768px){
  .home-gallery-lightbox{
    padding:18px;
  }
  .home-gallery-nav{
    width:44px;
    height:44px;
    font-size:38px;
  }
  .home-gallery-nav.prev{left:10px;}
  .home-gallery-nav.next{right:10px;}
}


/* V97 guestbook video player */
.guest-video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
  gap:12px;
}
.guest-video-button{
  min-height:78px;
  text-align:center;
  font-weight:900;
  border:1px solid #eadcc7;
  background:#fffaf0;
  color:#111;
  border-radius:18px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  cursor:pointer;
  position:relative;
  padding:18px 16px 18px 48px;
}
.guest-video-button::before{
  content:"▶";
  position:absolute;
  left:17px;
  top:50%;
  transform:translateY(-50%);
  width:26px;
  height:26px;
  border-radius:50%;
  background:#c8912d;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}
.guest-video-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.86);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:99999;
}
.guest-video-modal.open{
  display:flex;
}
.guest-video-modal-inner{
  width:min(1000px,94vw);
  background:#111;
  border-radius:22px;
  padding:18px;
  position:relative;
  box-shadow:0 20px 70px rgba(0,0,0,.5);
}
.guest-video-modal-inner h3{
  color:#fff;
  margin:0 52px 14px 0;
  font-size:1.25rem;
}
.guest-video-modal video{
  width:100%;
  max-height:76vh;
  display:block;
  border-radius:14px;
  background:#000;
}
.guest-video-close{
  position:absolute;
  right:16px;
  top:12px;
  width:42px;
  height:42px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.15);
  color:#fff;
  font-size:30px;
  cursor:pointer;
}


/* V98 private self checkin and extra videos */
.guest-self-checkin-box{
  margin-top:18px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:16px;
  align-items:stretch;
}
.guest-safe-photo{
  margin:0;
  background:#fff;
  border:1px solid #ece7dc;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 26px rgba(0,0,0,.06);
}
.guest-safe-photo img{
  width:100%;
  height:100%;
  min-height:220px;
  object-fit:cover;
  display:block;
}
.guest-safe-photo figcaption{
  padding:10px 14px;
  background:#fffaf0;
  color:#777;
  font-size:13px;
  border-top:1px solid #ece7dc;
}
.guest-self-checkin-video{
  min-height:100%;
}
@media(max-width:850px){
  .guest-self-checkin-box{
    grid-template-columns:1fr;
  }
}


/* V99 parking image lightbox */
.guest-parking-photo{
  cursor:zoom-in;
  position:relative;
}
.parking-zoom-badge{
  position:absolute;
  top:14px;
  right:14px;
  width:42px;
  height:42px;
  border-radius:50%;
  background:rgba(0,0,0,.62);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(0,0,0,.2);
  pointer-events:none;
}
.parking-lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.88);
  z-index:99999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:34px;
}
.parking-lightbox.open{
  display:flex;
}
.parking-lightbox img{
  max-width:min(1200px,92vw);
  max-height:86vh;
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 18px 60px rgba(0,0,0,.45);
}
.parking-lightbox-close{
  position:absolute;
  top:24px;
  right:24px;
  width:48px;
  height:48px;
  border:0;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  color:#fff;
  font-size:34px;
  cursor:pointer;
}


/* V102 key safe image and self checkin translation fix */
.guest-safe-photo img{
  max-height:300px !important;
  height:auto !important;
  width:100% !important;
  object-fit:contain !important;
  background:#fffaf0;
}
.guest-safe-photo{
  display:flex;
  flex-direction:column;
}
.guest-safe-photo figcaption{
  flex:0 0 auto;
}


/* V103 private safe photo compact fix */
.guest-self-checkin-box{
  grid-template-columns:1fr !important;
  align-items:start !important;
  gap:14px !important;
}
.guest-safe-photo{
  width:fit-content !important;
  max-width:100% !important;
  margin:0 !important;
  display:inline-flex !important;
  flex-direction:column !important;
  align-self:start !important;
  justify-self:start !important;
}
.guest-safe-photo img{
  display:block !important;
  width:auto !important;
  max-width:100% !important;
  max-height:300px !important;
  height:auto !important;
  object-fit:contain !important;
  background:#fffaf0;
}
.guest-safe-photo figcaption{
  width:100% !important;
  box-sizing:border-box !important;
}
.guest-self-checkin-video{
  width:100% !important;
  min-height:78px !important;
}


/* V104 self check-in image + video side by side */
.guest-self-checkin-box{
  display:grid !important;
  grid-template-columns:repeat(2,minmax(0,1fr)) !important;
  gap:14px !important;
  align-items:stretch !important;
}
.guest-self-checkin-box .guest-safe-photo{
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  margin:0 !important;
  display:flex !important;
  flex-direction:column !important;
  justify-self:stretch !important;
  align-self:stretch !important;
}
.guest-self-checkin-box .guest-safe-photo img{
  width:100% !important;
  max-width:100% !important;
  height:220px !important;
  max-height:220px !important;
  object-fit:contain !important;
  background:#fffaf0;
}
.guest-self-checkin-box .guest-safe-photo figcaption{
  font-weight:900 !important;
  color:#111 !important;
  text-align:center !important;
}
.guest-self-checkin-box .guest-self-checkin-video{
  width:100% !important;
  min-height:0 !important;
  height:100% !important;
  align-self:stretch !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:18px 16px 18px 48px !important;
}
@media(max-width:700px){
  .guest-self-checkin-box{
    grid-template-columns:1fr !important;
  }
  .guest-self-checkin-box .guest-self-checkin-video{
    height:78px !important;
  }
}


/* V107 WiFi copy button */
.wifi-copy-wrapper{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.wifi-copy-btn{
 background:#c89b2b;color:#fff;border:none;border-radius:8px;
 padding:8px 14px;cursor:pointer;font-weight:600;
}
.wifi-copy-btn:hover{opacity:.9}


/* V114 safe optimization variables */
:root{
  --noel-gold:#c8912d;
  --noel-gold-dark:#a87318;
  --noel-bg:#fffaf0;
  --noel-border:#ece7dc;
}
img, video{
  max-width:100%;
}


/* V116 spacing fix */
.page-hero,
.about-hero,
.sarajevo-hero,
.hero-banner,
.hero-image-section{
    margin-bottom: 40px !important;
}
.page-hero + section,
.about-hero + section,
.sarajevo-hero + section{
    margin-top: 20px !important;
}
