/*
 * SALUS – Offer subpage layout
 * Load after salus.css (uses its :root variables).
 */

/* Turnusy subpage — hero image variant */
.turnusy-page__hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.92) 0%, rgba(46, 204, 113, 0.35) 100%),
        url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat;
}

/* O nas subpage — hero */
.about-page__hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.92) 0%, rgba(52, 152, 219, 0.35) 100%),
        url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat;
}

.retreats-benefits-list li {
    line-height: 1.65;
}

.offer-page .navbar-custom {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-soft, 0 10px 30px rgba(0, 0, 0, 0.05));
}

.offer-page {
    padding-top: 100px;
    min-height: 100vh;
}

.offer-page__hero {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.92) 0%, rgba(46, 204, 113, 0.35) 100%),
        url('https://images.unsplash.com/photo-1571019614242-c5c5dee9f50b?auto=format&fit=crop&w=1600&q=80') center / cover no-repeat;
    color: var(--white, #fff);
    padding: 4rem 0 3.5rem;
    margin-bottom: 0;
}

.offer-page__hero h1 {
    color: var(--white, #fff);
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 0.75rem;
}

.offer-page__hero .lead {
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
}

.offer-page__breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.offer-page__breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.offer-page__breadcrumb a:hover {
    color: var(--primary-color, #2ecc71);
}

.offer-page__section {
    padding: 4rem 0;
}

.offer-page__section--alt {
    background-color: var(--light-bg, #f8f9fa);
}

.offer-page__section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color, #2ecc71);
    display: inline-block;
}

.offer-detail-card {
    background: var(--white, #fff);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition-base, all 0.3s ease);
}

.offer-detail-card:hover {
    box-shadow: var(--shadow-strong, 0 20px 40px rgba(0, 0, 0, 0.1));
    border-color: rgba(46, 204, 113, 0.35);
}

.offer-detail-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(46, 204, 113, 0.12);
    color: var(--primary-color, #2ecc71);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.offer-detail-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.offer-detail-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-muted, #6c757d);
    font-size: 0.95rem;
}

.offer-detail-card ul li {
    margin-bottom: 0.35rem;
}

.offer-page__cta {
    background: var(--secondary-color, #2c3e50);
    color: var(--white, #fff);
    padding: 3rem 0;
    text-align: center;
}

.offer-page__cta h2 {
    color: var(--white, #fff);
    margin-bottom: 1rem;
}

.offer-page__cta .btn-light {
    border-radius: 50px;
    padding: 0.65rem 2rem;
    font-weight: 600;
}

.offer-page__footer-note {
    padding: 1.25rem 0;
    background: #0d0d0d;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    text-align: center;
}

@media (max-width: 991px) {
    .offer-page {
        padding-top: 80px;
    }
}
