﻿/**
 * SPA Subdomain Specific Styles
 * spa.bastion-pmr.com
 */

:root {
    --spa-teal: #0d9488;
    --spa-cyan: #06b6d4;
    --spa-glow: rgba(13, 148, 136, 0.35);
    --bg-dark: #080f1a;
    --bg-card: #0e1a2b;
    --bg-card-hover: #16263d;
}

/* HEADER ACTION BUTTON */
.btn-call-spa {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #0b1120 !important;
    padding: 7px 16px;
    border-radius: 20px;
    font-weight: 700 !important;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    text-decoration: none;
    box-shadow: 0 4px 14px var(--accent-glow);
    transition: var(--transition-fast) !important;
}

.btn-call-spa:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
}

/* HERO SECTION SPECIFICS */
.hero {
    background: linear-gradient(180deg, rgba(8, 15, 26, 0.75) 0%, rgba(8, 15, 26, 0.92) 100%),
                radial-gradient(circle at center, rgba(13, 148, 136, 0.3) 0%, rgba(8, 15, 26, 0.95) 100%),
                url('../images/hero_spa.jpg') center/cover no-repeat;
}

.hero h1 {
    text-shadow: 0 4px 25px rgba(13, 148, 136, 0.4);
}

.hero p {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.badge-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(13, 148, 136, 0.18);
    color: #2dd4bf;
    border: 1px solid rgba(13, 148, 136, 0.35);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

/* SECTIONS */
section {
    padding: 60px 0;
    position: relative;
}

/* SPOTLIGHT SERVICES CARDS (Hammam, Russian Bath, Phyto-sauna) */
.spotlight-card {
    background: linear-gradient(135deg, rgba(14, 26, 43, 0.9) 0%, rgba(8, 15, 26, 0.95) 100%);
    border: 2px solid rgba(13, 148, 136, 0.35);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px var(--spa-glow);
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.spotlight-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.spotlight-img-box {
    position: relative;
    min-height: 380px;
    overflow: hidden;
}

.spotlight-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.spotlight-card:hover .spotlight-img-box img {
    transform: scale(1.05);
}

.spotlight-body {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spotlight-badge {
    display: inline-block;
    background: rgba(13, 148, 136, 0.15);
    color: #2dd4bf;
    border: 1px solid rgba(13, 148, 136, 0.3);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
    align-self: flex-start;
}

.spotlight-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: clamp(24px, 3.5vw, 34px);
    color: #ffffff;
    margin-bottom: 14px;
    line-height: 1.2;
}

.spotlight-text {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 22px;
}

.spotlight-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.spotlight-chip {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 4px 12px;
    border-radius: 14px;
    font-size: 11.5px;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.spotlight-chip i {
    color: #2dd4bf;
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(14, 26, 43, 0.9) 0%, rgba(22, 38, 61, 0.7) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 18px;
    padding: 28px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    border-color: rgba(13, 148, 136, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px var(--spa-glow);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(13, 148, 136, 0.15);
    color: #2dd4bf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.65;
}

/* PRICE LIST SECTION */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 30px;
}

.price-category-card {
    background: linear-gradient(135deg, rgba(14, 26, 43, 0.95) 0%, rgba(8, 15, 26, 0.98) 100%);
    border: 1px solid rgba(13, 148, 136, 0.35);
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.price-category-card:hover {
    border-color: #2dd4bf;
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px var(--spa-glow);
}

.price-cat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-cat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(13, 148, 136, 0.2);
    color: #2dd4bf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.price-cat-title {
    font-family: var(--font-heading, 'Playfair Display', serif);
    font-size: 20px;
    color: #fff;
}

.price-items-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.price-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
}

.price-name {
    font-size: 13.5px;
    color: #e2e8f0;
    font-weight: 500;
}

.price-dots {
    flex: 1;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    margin: 0 4px;
}

.price-val {
    font-family: var(--font-main, 'Montserrat', sans-serif);
    font-size: 15.5px;
    font-weight: 800;
    color: var(--accent);
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .spotlight-card,
    .spotlight-card.reverse {
        grid-template-columns: 1fr;
    }
    .spotlight-body {
        padding: 24px;
    }
    section {
        padding: 40px 0;
    }
}
