:root { 
    --gold: #d4af37; 
    --white: #f8f8f8; 
    --black-bg: #050505; 
    
}

/* 1. OSNOVA */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    overflow-x: hidden; /* prepreči horizontalni scroll */
    width: 100%;        /* fiksna širina */
}

html { scroll-behavior: smooth; }
body { 
    background: radial-gradient(circle at center, #1a1a1a 0%, var(--black-bg) 100%); 
    color: var(--white);  
    font-family: 'Montserrat', sans-serif; 
    line-height: 1.8; 
    overflow-x: hidden; 
}
h1, h2, h3 { font-family: 'Cinzel', serif; letter-spacing: 2px; text-transform: uppercase; font-weight:500;}
a { text-decoration: none !important; } /* NO UNDERLINE GLOBALNO */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 100px 0; }

/* 2. NAVIGACIJA */
.main-nav { 
    position: fixed !important; 
    top: 0 !important; 
    width: 100% !important; 
    height: 80px !important; 
    background: #050505 !important; 
    z-index: 9999 !important; 
    display: flex !important;
    align-items: center !important;
    border-bottom: 1px solid rgba(212,175,55,0.2) !important;
}

.nav-container { 
    display: grid !important; 
    grid-template-columns: auto 1fr auto !important; 
    align-items: center !important; 
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.logo-area { display: block !important; }
.nav-logo { height: 80px !important; width: auto !important; }

.nav-links.desktop-only { 
    display: flex !important; 
    flex-direction: row !important; 
    justify-content: center !important; 
    gap: 35px !important; 
    list-style: none !important;
}

.nav-links a { 
    color: white !important; 
    font-size: 0.85rem !important; 
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    white-space: nowrap !important;
    transition: 0.3s;
}

.nav-links a:hover { color: var(--gold) !important; }

.nav-actions { 
    display: flex !important; 
    align-items: center !important;
    gap: 15px !important;
    justify-content: flex-end !important;
}

/* 3. GUMBI */
.btn-primary, .nav-booking-btn { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    gap: 10px; 
    padding: 14px 28px; 
    background: var(--gold); 
    color: black; 
    font-weight: 600; 
    font-size: 0.85rem; 
    border: none; 
    cursor: pointer; 
    transition: 0.3s; 
    letter-spacing: 1px;
}

.nav-booking-btn { 
    padding: 10px 22px !important; 
    font-size: 0.75rem !important; 
    background: transparent !important; 
    border: 1px solid var(--gold) !important; 
    color: var(--gold) !important; 
}

.nav-booking-btn:hover { background: var(--gold) !important; color: black !important; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 5px 15px rgba(212,175,55,0.3); }

/* 4. MOBILE HAMBURGER & WA */
.nav-circle-btn { 
    width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--gold); 
    display: flex; align-items: center; justify-content: center; color: var(--gold); 
}

.hamburger-circle { 
    width: 45px; height: 45px; border-radius: 50%; background: var(--gold); 
    display: flex; align-items: center; justify-content: center; 
    cursor: pointer; z-index: 10001; position: relative;
}

.nav-circle-btn.wa { z-index: 12000;}
.logo-area {
 
    z-index: 12000;
}

.hamburger-circle i { color: black !important; font-size: 1.2rem; }

/* 5. HERO */
.hero { 
    height: 100vh; display: flex; align-items: center; justify-content: center; 
    text-align: center; background: url('img/pav_thai_massage.webp') center/cover no-repeat; 
    position: relative; 
}
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.2), var(--black-bg)); }
.hero-content { position: relative; z-index: 2; max-width: 850px; padding: 0 20px; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--gold); margin: 20px 0; }
.hero-subtext { margin-bottom: 30px; font-weight: 300; }

.hero-review-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 0.8rem;
    letter-spacing: 1px;
    white-space: nowrap; /* NO WRAP */
    border-radius: 40px;
    background: linear-gradient(
        90deg,
        rgba(212,175,55,0.12),
        rgba(0,0,0,0.6),
        rgba(212,175,55,0.12)
    );
    border: 1px solid rgba(212,175,55,0.4);
}

.hero-review-inline .stars {
    display: flex;
    gap: 2px;
}

.hero-review-inline .stars i {
    font-size: 0.75rem;
    color: var(--gold);
}

.hero-review-inline .rating {
    font-weight: 600;
    color: white;
}



/* ✅ KROGEC DIVIDER – DESKTOP */
.hero-review-inline .divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold) !important;
    opacity: 0.6;
}

.hero-review-inline .trust {
    font-size: 0.7rem;
    color: #ddd;
}




@media (max-width: 768px) {
    .hero-review-inline {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        white-space: normal;
    }

    .hero-review-inline .divider {
        display: none !important; 
    }

    .hero-review-inline .trust {
        flex-basis: 100%;
        margin-top: 2px;
        font-size: 0.65rem;
    }
}




/* 6. CAROUSEL */
.section-header-carousel { 
    display: flex !important; 
    justify-content: space-between !important; 
    align-items: center !important; 
    margin-bottom: 40px !important;
}

.title-gold { color: var(--gold); font-size: 2.2rem; }
.subtitle { color: #888; font-size: 0.9rem; }
.title {text-align:center;}
.carousel-nav.desktop-only { 
    display: flex !important; 
    gap: 15px !important; 
    align-items: center !important;
}

.nav-btn-circle { 
    width: 45px; height: 45px; border-radius: 50%; border: 1px solid var(--gold); 
    background: transparent; color: var(--gold); display: flex; 
    align-items: center; justify-content: center; cursor: pointer; transition: 0.3s;
}

.nav-btn-circle:hover { background: var(--gold); color: black; }

.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; gap: 20px; transition: 0.6s cubic-bezier(0.23, 1, 0.32, 1); }

.service-card { 
    min-width: calc(25% - 15px); height: 450px; position: relative; 
    border: 1px solid rgba(212,175,55,0.1); overflow: hidden; 
}

.service-card img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.service-card:hover img { transform: scale(1.05); }

.card-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.95), transparent 60%); }
.card-info { position: absolute; bottom: 25px; left: 20px; }
.card-info h3 { font-size: 0.95rem; color: var(--gold); }

/* 7. CENIK */
.pricing-display { 
    margin-top: 80px; max-width: 600px; margin-inline: auto; padding: 40px; 
    background: rgba(255,255,255,0.02); border: 1px solid rgba(212,175,55,0.1); 
}
.price-row { display: flex; align-items: baseline; margin-bottom: 15px; font-family: 'Cinzel'; color: var(--gold); font-size: 1.1rem; }
.dots { flex: 1; border-bottom: 1px dotted var(--gold); margin: 0 15px; }
.price-cta-wrapper { text-align: center; margin-top: 30px; }

/* 8. KONTAKT & GRID */
.airy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start; }
.main-portrait { width: 100%; border: 1px solid var(--gold); padding: 5px; }
.contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; text-align: left; }
.gold-text { color: var(--gold); }
.work-hours { margin: 25px 0; padding: 10px 0 10px 25px; border-left: 2px solid var(--gold); text-align: left; }
.social-circles { display: flex; gap: 15px; margin-top: 30px; }
.circle-link { 
    width: 45px; height: 45px; border: 1px solid var(--gold); border-radius: 50%; 
    display: flex; align-items: center; justify-content: center; color: var(--gold); 
    transition: 0.3s; 
}
.circle-link:hover { background: var(--gold); color: black; }

/* 9. MAPA */
.map-box-container { width: 100%; height: 450px; border: 1px solid rgba(212,175,55,0.2); }
.map-box-container iframe { width: 100%; height: 100%; }

/* 10. FOOTER */
.footer-bottom { 
    display: flex; justify-content: space-between; align-items: center; 
    padding: 30px 0; border-top: 1px solid #222; font-size: 0.75rem; color: #555; 
}
.lion8 a { color: #888; font-weight: 600; }

/* 11. FLOATING BAR */
.floating-quick-actions { position: fixed; bottom: 20px; left: 0; width: 100%; z-index: 2000; padding: 5px 15px; white-space:nowrap;}
.floating-bar-container { 
    display: flex; gap: 8px; background: rgba(0,0,0,0.9); backdrop-filter: blur(15px); 
    padding: 8px; border-radius: 50px; border: 1px solid rgba(212,175,55,0.2); 
}
.f-btn { 
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; 
    padding: 14px 5px; border-radius: 40px; font-weight: 600; 
    font-size: 0.7rem; color: white; 
}
.f-btn.dark { background: #111; color: var(--gold); }
.f-btn.gold { background: var(--gold); color: black; }

/* 12. RESPONSIVE & MOBILE MENU */
.mobile-only { display: none !important; }
.tablet-mobile-only { display: none; }
.desktop-only { display: flex; } /* Privzeto za desktop */

@media (max-width: 1024px) { 
    .tablet-mobile-only { display: flex !important; } 
    .nav-links.desktop-only { display: none !important; } /* SKRIJE DESKTOP NAV NA MOBILE */
    .nav-container { grid-template-columns: auto auto !important; justify-content: space-between !important; }
  .carousel-nav.desktop-only { display: none !important; }
  .nav-booking-btn.desktop-only { display: none !important; }
 

}

@media (max-width: 768px) { .mobile-only { display: flex !important; } }

@media (max-width: 900px) {
    body { padding-bottom: 100px; }
    .service-card { min-width: 85%; }
    .mobile-carousel-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 20px; }
    .airy-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .contact-item { justify-content: center; }
    .work-hours { border-left: none; border-top: 2px solid var(--gold); padding: 25px 0; margin-inline: auto; max-width: 250px; text-align: center;}
    .social-circles { justify-content: center; }
}

.mobile-menu { 
    position: fixed; top: 0; top: -160%; width: 100%; height: 100vh; 
    background: #050505; display: flex; flex-direction: column; 
    align-items: center; justify-content: center; gap: 30px; transition: 0.5s; z-index: 10000; 
}
.mobile-menu.active { top: 0; }
.mobile-menu a { color: white; font-size: 1.5rem; font-family: 'Cinzel'; }

.carousel-bullets { display: flex; gap: 8px; }
.carousel-bullets span { width: 8px; height: 8px; border-radius: 50%; border: 1px solid var(--gold); }
.carousel-bullets span.active { background: var(--gold); width: 18px; border-radius: 4px; }
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .floating-bar-container {
        width: 90%;
        margin: 0 auto; /* centriranje */
    }
}

@media (max-width: 768px) {
    .nav-logo {
        height: 100px !important; /* povečaj po želji */
        width: auto !important;
        margin-top: 10px;
    z-index: 11000;
    }
}

@media (max-width: 768px) {
    .floating-quick-actions {
        z-index: 11000;
    }
    .btn-primary {display:none;}

}
@media (max-width: 768px) {
    .container, .hero, .section-padding {
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .carousel-track {
    touch-action: pan-y;
}
}

