/* ================= GLOBAL ================= */
body{
    background:#353841;
    color:#f5f5f5;
    font-family:-apple-system,BlinkMacSystemFont,sans-serif;
    padding-bottom:70px;
    margin:0;
    -webkit-font-smoothing:antialiased;
}

/* ================= PAGE CONTAINER ================= */
.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 16px;
    box-sizing:border-box;
}

@media(max-width:768px){
    .container{
        padding:0 12px;
    }
}

/* ================= HEADER ================= */
.header{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(35,38,45,0.95);
    backdrop-filter:blur(10px);
    padding:15px 10px;
    text-align:center;
    border-bottom:1px solid rgba(212,175,55,0.4);
}

.logo a{
    text-decoration:none;
    font-size:20px;
    font-weight:600;
    color:#d4af37;
}

.nav a{
    margin:0 12px;
    text-decoration:none;
    color:#bbb;
    font-size:13px;
    transition:0.2s;
}

.nav a:hover,
.nav a.active{
    color:#d4af37;
}

/* ================= FOOTER ================= */
.footer{
    position:fixed;
    bottom:0;
    width:100%;
    background:rgba(35,38,45,0.95);
    backdrop-filter:blur(10px);
    border-top:1px solid rgba(212,175,55,0.4);
    display:flex;
    justify-content:space-around;
    padding:8px 0;
    z-index:999;
}

.footer-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-decoration:none;
    color:#bbb;
    font-size:11px;
}

.footer-item span{
    font-size:18px;
}

.footer-item:hover,
.footer-item.active{
    color:#d4af37;
}

/* ================= SECTION ================= */
.section{
    padding:15px 0;
}

.section h2{
    font-size:15px;
    margin-bottom:10px;
    color:#d4af37;
    letter-spacing:0.3px;
}

/* ================= SPA ================= */
.spa-card{
    position:relative;
    background:#2b2e36;
    border-radius:14px;
    margin-bottom:12px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,0.15);
    transition:0.25s ease;
}

.spa-card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(0,0,0,0.25);
}

.spa-card img{
    width:100%;
    height:200px;
    object-fit:cover;
}

.spa-info{
    padding:10px;
}

.spa-info h3{
    margin:0;
    font-size:15px;
    font-weight:700;
    color:#d4af37;
}

/* ================= VIP GRID ================= */
.vip-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:12px;
    justify-items:center;
}

@media(min-width:768px){
    .vip-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(min-width:1024px){
    .vip-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

/* ================= VIP CARD ================= */
.card.vip{
    background:#2b2e36;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,0.15);
    width:100%;
    max-width:360px;
}

/* ================= VIP LAYOUT ================= */
.vip-layout{
    display:flex;
    gap:8px;
}

.vip-main{
    width:70%;
    height:300px;
    object-fit:cover;
}

.vip-thumbs{
    width:30%;
    display:flex;
    flex-direction:column;
    gap:6px;
}

.vip-thumbs img{
    width:100%;
    height:95px;
    object-fit:cover;
    border-radius:6px;
}

/* ================= VIP MOBILE FIX ================= */
@media(max-width:767px){

    .vip-grid{
        grid-template-columns:1fr;
    }

    .card.vip{
        width:100%;
        max-width:75%;
        margin:0 auto;
    }

    .vip-grid a{
        width:100%;
        display:flex;
        justify-content:center;
    }
}

/* ================= REGULAR GRID ================= */
.regular-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

@media(min-width:768px){
    .regular-grid{
        grid-template-columns:repeat(4,1fr);
    }
}

@media(min-width:1200px){
    .regular-grid{
        grid-template-columns:repeat(6,1fr);
    }
}

/* ================= CARD ================= */
.card{
    position:relative;
    background:#2b2e36;
    border-radius:14px;
    overflow:hidden;
    border:1px solid rgba(212,175,55,0.12);
    transition:0.25s ease;
}

.card:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(0,0,0,0.25);
}

.card img{
    width:100%;
    display:block;
}

.card.small img{
    height:210px;
    object-fit:cover;
}

/* ================= INFO ================= */
.info{
    padding:10px;
}

.info h3,
.info h4{
    margin:0;
    font-size:14px;
}

.info p{
    font-size:12px;
    color:#bbb;
}

.bio{
    font-size:11px;
    color:#aaa;
    margin-top:4px;
}

/* ================= BUTTONS ================= */
.btn-row{
    display:flex;
    gap:6px;
    margin-top:8px;
}

.call-btn{
    flex:1;
    background:linear-gradient(135deg,#d4af37,#f5d76e);
    color:#000;
    padding:8px;
    border-radius:8px;
    text-align:center;
    font-weight:600;
    text-decoration:none;
    font-size:12px;
}

.wa-btn{
    flex:1;
    background:#25D366;
    color:#000;
    padding:8px;
    border-radius:8px;
    text-align:center;
    font-weight:bold;
    text-decoration:none;
    font-size:12px;
}

/* ================= BADGES ================= */
.badge{
    position:absolute;
    top:8px;
    right:8px;
    font-size:10px;
    padding:4px 10px;
    border-radius:20px;
    font-weight:700;
}

.badge.vip{
    background:linear-gradient(135deg,#d4af37,#f5d76e);
    color:#000;
}

.badge.spa{
    background:#c9a227;
    color:#000;
}

.badge.regular{
    background:#555;
    color:#fff;
}

/* ================= LOCATIONS ================= */
.locations{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:6px;
    padding:5px 0;
}

.location-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#d4af37;
    padding:4px 6px;
    border-radius:6px;
    font-size:12px;
    font-weight:600;
    color:#000;
    text-decoration:none;
    transition:0.25s ease;
    box-shadow:0 2px 6px rgba(0,0,0,0.15);
}

.location-btn:hover{
    background:#2b2e36;
    color:#d4af37;
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(212,175,55,0.25);
}

/* ================= ACTIVE EFFECT ================= */
.card,
.spa-card{
    transition:transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.card.active,
.spa-card.active{
    transform:scale(1.02);
    box-shadow:0 0 25px rgba(212,175,55,0.35);
    border:1px solid rgba(212,175,55,0.6);
    filter:brightness(1.1);
    z-index:2;
}

.card:not(.active),
.spa-card:not(.active){
    opacity:0.85;
}

/* ================= SPA GRID ================= */
@media(min-width:768px){

    .section .spa-card{
        width:calc(50% - 10px);
        display:inline-block;
        vertical-align:top;
        margin-right:10px;
    }

    .section .spa-card:nth-child(2n){
        margin-right:0;
    }
}
