html {
  scroll-behavior: smooth;
}

section {
  scroll-margin-top: 80px;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: flex;
}


:root{
    --primary:#21759c;
    --dark:#0f172a;
    --light:#f8fafc;
}
*{box-sizing:border-box;}
body{
    margin:0;
    font-family:Segoe UI, Arial, sans-serif;
    background:#f4f6f8;
}

/* Sticky call bar */
.top-bar{
    position:fixed;
    top:0;left:0;
    width:100%;
    height:64px;
    background:var(--primary);
    color:white;
    z-index:9999;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:20px;
    font-weight:600;
}
.top-bar a{color:white;text-decoration:none;}

.nav-inner{
    width:100%;
    max-width:1400px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 30px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    margin-left:20px;
    font-size:15px;
    opacity:0.9;
}

.nav-links a:hover{
    opacity:1;
    text-decoration:underline;
}

.hamburger{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:white;
}

/* Mobile menu */
.mobile-menu{
    display:none;
    flex-direction:column;
    background:#1e3a8a;
    position:absolute;
    top:64px;
    left:0;
    width:100%;
    text-align:center;
    padding:20px 0;
}

.mobile-menu a{
    color:white;
    text-decoration:none;
    padding:15px;
    font-size:18px;
    border-bottom:1px solid rgba(255,255,255,.2);
}

.mobile-menu .call{
    background:#22c55e;
    margin:15px;
    border-radius:30px;
}

/* Responsive */
@media(max-width:900px){
    .desktop{
        display:none;
    }
    .hamburger{
        display:block;
    }
}


/* HERO */
.hero{
    height:85vh;
    width:100%;
    display:flex;
    align-items:center;
    padding-top:64px;
    position:relative;
    overflow:hidden;
}

.hero-overlay{
    background:rgba(0,0,0,.55);
    color:white;
    padding:50px;
    max-width:600px;
    margin-left:10%;
    border-radius:20px;
}

.hero-video::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1;
}

.hero-video-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-video-bg iframe{
    position:absolute;
    top:50%;
    left:50%;
    width:105vw;
    height:105vh;
    transform:translate(-50%, -50%);
    border:0;
    pointer-events:none;
}


.hero h1{font-size:48px;margin:0;}
.hero p{font-size:20px;margin:10px 0;}
.hero .btn{
    background:#22c55e;
    padding:16px 30px;
    border-radius:40px;
    color:white;
    text-decoration:none;
    display:inline-block;
    margin-top:20px;
    font-size:20px;
}

/* SECTIONS */
section{padding:80px 10%;}
h2{text-align:center;font-size:38px;margin-bottom:40px;}

/* Highlights */
.highlights{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:30px;
}
.card{
    background:white;
    padding:30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}
.card i{font-size:36px;color:var(--primary);margin-bottom:15px;}

/* Gallery */
/* PREMIUM GALLERY */
.gallery{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
}

.gallery img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:20px;
    cursor:pointer;
    transition:transform .4s ease, box-shadow .4s ease;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

.gallery img:hover{
    transform:scale(1.05);
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

/* sakrivene slike */
.gallery img.extra{
    display:none;
}

/* dugme */
.gallery-btn{
    display:block;
    margin:50px auto 0;
    padding:16px 40px;
    font-size:18px;
    background:#21759c;
    color:white;
    border:none;
    border-radius:40px;
    cursor:pointer;
    transition:.3s;
}

.gallery-btn:hover{
    background:#1e6487;
    transform:translateY(-2px);
}

/* mobile */
@media(max-width:900px){
    .gallery{
        grid-template-columns:1fr 1fr;
    }
}


/* Modal */
/* LIGHTBOX */
#modal{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    backdrop-filter:blur(6px);
    justify-content:center;
    align-items:center;
    z-index:10000;
}

#modal img{
    max-width:92%;
    max-height:92%;
    border-radius:24px;
    box-shadow:0 30px 80px rgba(0,0,0,.6);
    animation:zoomIn .4s ease;
}

@keyframes zoomIn{
    from{transform:scale(.85);opacity:0}
    to{transform:scale(1);opacity:1}
}


.cta{
    background:var(--primary);
    color:white;
    text-align:center;
    padding:80px 20px;
}
.cta a{
    background:#22c55e;
    padding:18px 40px;
    border-radius:40px;
    color:white;
    text-decoration:none;
    font-size:22px;
}
footer{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:30px;
}
.reviews{
    padding:80px 10%;
    background:#f9fafb;
}

.reviews h2{
    text-align:center;
    font-size:38px;
    margin-bottom:50px;
}

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.review-card{
    background:white;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
}

.review-card h3{
    margin:0;
    font-size:22px;
    font-weight:700;
}

.stars{
    color:#f59e0b;
    font-size:18px;
    margin:10px 0;
}

.stars span{
    color:#6b7280;
    font-size:14px;
    margin-left:10px;
}

.review-card p{
    font-size:18px;
    line-height:1.6;
    color:#374151;
}
.location-section{
    padding:80px 10%;
    background:#f9fafb;
}

.location-section h2{
    text-align:center;
    font-size:38px;
    margin-bottom:50px;
}

.location-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}

.map-box{
    width:100%;
    height:400px;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.map-box iframe{
    width:100%;
    height:100%;
    border:0;
}

.location-info h3{
    font-size:26px;
    margin-bottom:20px;
}

.location-info p{
    font-size:18px;
    line-height:1.7;
    margin-bottom:20px;
    color:#374151;
}

/* Mobile */
@media(max-width:900px){
    .location-grid{
        grid-template-columns:1fr;
    }
}

.amenities{
    padding:80px 10%;
    background:#fff;
}

.amenities h2{
    text-align:center;
    font-size:38px;
    margin-bottom:60px;
}

.amenities-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:30px;
}

.amenity-card{
    background:#f9fafb;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.amenity-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.amenity-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.amenity-card ul{
    padding-left:18px;
}

.amenity-card li{
    margin-bottom:8px;
    color:#374151;
}

.map-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 28px;
    background:#2563eb;
    color:white;
    font-size:16px;
    border-radius:30px;
    text-decoration:none;
    transition:.3s;
    box-shadow:0 8px 25px rgba(37,99,235,.4);
}

.map-btn:hover{
    background:#1d4ed8;
    transform:translateY(-2px);
}

.map-btn.secondary{
    background:#10b981;
    box-shadow:0 8px 25px rgba(16,185,129,.4);
    margin-left:15px;
}

.map-btn.secondary:hover{
    background:#059669;
}

.nearby{
    margin-top:40px;
    background:#f3f4f6;
    padding:25px;
    border-radius:20px;
}

.nearby h4{
    font-size:20px;
    margin-bottom:15px;
}

.nearby ul{
    list-style:none;
    padding:0;
}

.nearby li{
    font-size:16px;
    margin-bottom:10px;
}

.rules{
    padding:80px 10%;
    background:#f9fafb;
}

.rules h2{
    text-align:center;
    font-size:38px;
    margin-bottom:50px;
}

.rules-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(300px, 1fr));
    gap:40px;
}

.rules-card{
    background:white;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.rules-card h3{
    font-size:24px;
    margin-bottom:20px;
}

.rules-card ul{
    padding-left:20px;
}

.rules-card li{
    font-size:18px;
    margin-bottom:12px;
    color:#374151;
}

.why-us{
    padding:80px 10%;
    background:white;
}

.why-us h2{
    text-align:center;
    font-size:38px;
    margin-bottom:60px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px, 1fr));
    gap:30px;
}

.why-card{
    background:#f9fafb;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.why-card h3{
    font-size:22px;
    margin-bottom:10px;
}

.why-card p{
    font-size:17px;
    color:#374151;
    line-height:1.6;
}

.who-for{
    padding:80px 10%;
    background:#f9fafb;
}

.who-for h2{
    text-align:center;
    font-size:38px;
    margin-bottom:50px;
}

.who-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:30px;
}

.who-card{
    background:white;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.who-card h3{
    margin:15px 0 10px;
    font-size:22px;
}

.who-card p{
    font-size:17px;
    color:#374151;
}

.stay-story{
    padding:100px 10%;
    background:linear-gradient(to right, #0f172a, #1e293b);
    color:white;
    text-align:center;
}

.story-box{
    max-width:800px;
    margin:auto;
}

.stay-story h2{
    font-size:40px;
    margin-bottom:30px;
}

.stay-story p{
    font-size:20px;
    line-height:1.7;
    margin-bottom:25px;
    color:#e5e7eb;
}

.seo{
    padding:80px 10%;
    background:#f9fafb;
    color:#374151;
}

.seo h2{
    font-size:32px;
    margin-bottom:30px;
    text-align:center;
}

.seo p{
    max-width:900px;
    margin:0 auto 20px;
    font-size:18px;
    line-height:1.7;
}

.booking-steps{
    padding-bottom:80px;
    background:#f9fafb;
    text-align:center;
}

.steps-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:40px;
    margin-top:50px;
}

.step{
    background:white;
    padding:40px 30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.step span{
    display:inline-block;
    width:50px;
    height:50px;
    background:#21759c;
    color:white;
    border-radius:50%;
    font-size:22px;
    line-height:50px;
    margin-bottom:20px;
}

.step h3{
    font-size:22px;
    margin-bottom:10px;
}

.faq{
    padding:80px 10%;
    background:#ffffff;
}

.faq-box{
    max-width:900px;
    margin:0 auto;
}

.faq-box h3{
    font-size:22px;
    margin-top:30px;
}

.faq-box p{
    font-size:18px;
    line-height:1.6;
    color:#374151;
    margin-top:8px;
}
.direct-booking{
    padding:50px 10%;
    background:#f3f4f6;
    text-align:center;
    font-size:18px;
    color:#374151;
}


.hero-video{
    position:relative;
    overflow:hidden;
    height:85vh;
}

.hero-video-bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.hero-video-bg iframe{
    position:absolute;
    top:50%;
    left:50%;
    width:120vw;
    height:120vh;
    transform:translate(-50%, -50%);
    border:0;
    pointer-events:none;
}


.hero-video::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1;
}

.hero-overlay{
    position:relative;
    z-index:2;
}

@media (max-width: 768px){
  .hero-video-bg{
    display:none;
  }

  .hero{
    background:url("https://drive.google.com/thumbnail?id=11aQP5Kl9MHUGgIRBJDy2drndOoNQd3K7&sz=w2000")
               center/cover no-repeat;
  }
}


@keyframes fadeInVideo{
  from { opacity:0 }
  to   { opacity:1 }
}

.pricing{
    padding:30px 10%;
    background:#f9fafb;
    text-align:center;
}

.pricing-note{
    max-width:700px;
    margin:0 auto 50px;
    font-size:18px;
    color:#555;
}

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
    gap:30px;
    max-width:1000px;
    margin:0 auto 50px;
}

.price-card{
    background:white;
    padding:40px 30px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.price-card h3{
    font-size:22px;
    margin-bottom:15px;
}

.price{
    font-size:36px;
    font-weight:700;
    color:#21759c;
    margin-bottom:5px;
}

.price-card p{
    font-size:16px;
    color:#374151;
    margin-bottom:10px;
}

.price-card span{
    font-size:15px;
    color:#6b7280;
}

.price-card.highlight{
    border:2px solid #22c55e;
    transform:translateY(-5px);
}

.pricing-footer{
    font-size:18px;
    color:#374151;
    margin-bottom:30px;
}

.pricing-btn{
    display:inline-block;
    padding:16px 36px;
    background:#22c55e;
    color:white;
    text-decoration:none;
    font-size:20px;
    border-radius:40px;
}

.story-section {
  padding: 120px 10%;
  background: linear-gradient(to bottom, #0f172a, #1e293b);
  color: #ffffff;
  text-align: center;
}

.story-inner {
  max-width: 820px;
  margin: 0 auto;
}

.story-section h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.story-section p {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: #e5e7eb;
}

.story-note {
  margin-top: 40px;
  font-style: italic;
  color: #cbd5f5;
}

/* SEO – diskretno */
.seo-short {
  padding: 80px 10%;
  text-align: center;
  color: #6b7280;
}

.seo-short h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.seo-short p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}
.pricing-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 18px 42px;
  background: #22c55e;
  color: #fff;
  border-radius: 40px;
  font-size: 20px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(34,197,94,.35);
  transition: .3s ease;
}

.pricing-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(34,197,94,.45);
}


.lang-switch{
    margin-left:30px;
    font-size:14px;
    opacity:0.85;
}

.lang-switch a{
    color:white;
    text-decoration:none;
    margin:0 4px;
}

.lang-switch a:hover{
    text-decoration:underline;
    opacity:1;
}

.lang-switch a.active{
    font-weight:600;
    opacity:1;
}
