/**
 * Pricing Page Styles for BK Pilates
 */

/* Variables */
:root {
    --primary-color: #000000;
    --secondary-color: #ddc1ac;
    --accent-color: #e3c0ac;
    --light-accent: #f9f1ea;
    --light-text: #ffffff;
    --dark-text: #333333;
    --section-padding: 100px 0;
    --card-border-radius: 50px;
    --transition: all 0.3s ease;
}

/* General Page Styles */
.page-section {
    position: relative;
    padding: var(--section-padding);

}

.page-section .container {
    max-width: unset;
    position: relative;
    z-index: 2;
}

/* Hero Section */
.pricing-hero {
    position: relative;
    min-height: 80vh;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pricing-hero .section-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.pricing-hero .section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.pricing-hero .section-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.section-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.page-section .hero-content {
    text-align: center;
    max-width: unset;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 2;
}

.hero-promo {
    font-size: 22px;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--light-text);
}

.hero-title {
    font-size: 166px;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: normal;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 35px;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: lowercase;
}

.accent-color {
    color: var(--accent-color);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

/* Pricing Options Section - FIXED & UPDATED */
body .page-section.pricing-options {
    position: relative;
    overflow: hidden;
    padding: 100px 0; /* 100 пікселів на початку і вкінці секції */
    z-index: 1;
    min-height: 100vh; /* Мінімальна висота 100vh */
    display: flex;
    flex-direction: column; /* Змінено на column для можливості додавання банера внизу */
    align-items: center;
}

body .page-section.pricing-options .section-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

body .page-section.pricing-options .section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: var(--secondary-color);
}

body .page-section.pricing-options .section-background img,
body .page-section.pricing-options .section-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}

body .page-section.pricing-options .section-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Забезпечення, що контейнер є поверх фону */
body .page-section.pricing-options .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px; /* Збільшено максимальну ширину */
}

body .page-section.pricing-options .pricing-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 0 auto;
}

/* Стилі для карток з цінами - ОНОВЛЕНО З ПРОЗОРІСТЮ ЛИШЕ ДЛЯ ФОНУ */
body .page-section.pricing-options .pricing-column {
    background-color: rgba(255, 255, 255, 0.7); /* Прозорий фон */
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px); /* Ефект розмиття для кращого вигляду */
}

body .page-section.pricing-options .pricing-column:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color, #e0a36f);
    background-color: rgba(255, 255, 255, 0.8);
}

body .page-section.pricing-options .pricing-title {
    background-color: var(--light-accent);
    text-align: center;
    padding: 1.5rem;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #625448;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* МАКСИМАЛЬНО ЗБІЛЬШЕНИЙ РОЗМІР КОНТЕЙНЕРА ДЛЯ ФОТОГРАФІЇ */
body .page-section.pricing-options .pricing-image-wrapper {
    width: 100%;
    height: 500px; /* Значно збільшено висоту */
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body .page-section.pricing-options .pricing-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 20%; /* Позиціонування, щоб верх було видно */
    transition: transform 0.5s ease;
}

body .page-section.pricing-options .pricing-column:hover .pricing-image {
    transform: scale(1.1);
}

body .page-section.pricing-options .pricing-subtitle {
    font-size: 1.5rem;
    margin: 1.5rem 0;
    font-weight: 600;
    position: relative;
    text-align: center;
    color: #625448;
    padding: 0 1.5rem;
}

body .page-section.pricing-options .pricing-subtitle:after {
    content: '';
    display: block;
    margin: 0.5rem auto 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color, #e0a36f);
    border-radius: 3px;
}

body .page-section.pricing-options .pricing-list {
    list-style: none;
    padding: 0 1.5rem;
    margin: 1.5rem 0;
    flex-grow: 1;
}

body .page-section.pricing-options .pricing-list li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
}

body .page-section.pricing-options .pricing-list li:last-child {
    border-bottom: none;
}

body .page-section.pricing-options .pricing-list li p {
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #625448;
}

body .page-section.pricing-options .pricing-list li strong {
    font-weight: 700;
    /*color: var(--accent-color, #e0a36f);*/
    margin-left: 1rem;
}
body .page-section.pricing-options .pricing-list.memberships strong {

    margin-left: unset;
}

body .page-section.pricing-options .pricing-button-wrapper {
    padding: 0 1.5rem 1.5rem;
    text-align: center;
    margin-top: auto;
}

body .page-section.pricing-options .pricing-button-wrapper .btn {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    background-color: var(--btn-bg);; /* Суцільний колір без прозорості */
    color: var(--light-text);
    border-color: var(--btn-bg);
    transition: var(--transition);
}

/* ОНОВЛЕНО: Уніфікований ховер для всіх кнопок */
body .page-section.pricing-options .pricing-button-wrapper .btn:hover {
    opacity: 0.8; /* Ховер як у home btn-primary */
    background-color:var(--btn-bg);;
    color: var(--light-text);
    transform: none;
    box-shadow: none;
}

/* Featured column - ОНОВЛЕНО */
body .page-section.pricing-options .pricing-column-featured {
    transform: scale(1.05);
    border: 2px solid var(--accent-color);
    border-radius: calc(var(--card-border-radius) + 2px);
    z-index: 3;
    box-shadow: 0 20px 40px rgba(224, 163, 111, 0.3);
    position: relative;
}

body .page-section.pricing-options .pricing-column-featured:hover {
    transform: translateY(-10px) scale(1.05);
}

body .page-section.pricing-options .pricing-column-featured .pricing-title {
    background-color: var(--accent-color); /* Суцільний колір для заголовка featured */
    color: white;
    border-bottom: none;
}

/* Camp Pilates Promo Banner - ЯК БАНЕР В РАМКАХ ІСНУЮЧОЇ СЕКЦІЇ */
body .page-section.pricing-options .camp-pilates-promo-banner {
    width: 100%;
    margin-top: 80px; /* Відступ від сітки з цінами */
    padding: 60px 30px;
    border-radius: var(--card-border-radius);
    /*background-color: var(--accent-color);*/
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    color: var(--light-text);
    background-image: linear-gradient(135deg, var(--accent-color) 0%, #e2c7b6 100%);
    backdrop-filter: blur(5px);
    max-width: 1400px;
    z-index: 3;
}

/*body .page-section.pricing-options .camp-pilates-promo-banner::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: url('path-to-texture.png') center/cover; !* Додайте шлях до текстури, якщо потрібно *!*/
/*    opacity: 0.1;*/
/*    z-index: -1;*/
/*}*/

body .page-section.pricing-options .camp-title {
    font-size: 100px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

body .page-section.pricing-options .camp-description {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

body .page-section.pricing-options .camp-button-wrapper .btn {
    padding: 15px 40px;
    font-size: 18px;
    background-color: var(--btn-bg);
    color: var(--light-text);
    border: 2px solid var(--btn-bg);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    width: auto;
    display: inline-block;
    text-transform: unset;
}

/* ОНОВЛЕНО: Уніфікований ховер для кнопки банера */
body .page-section.pricing-options .camp-button-wrapper .btn:hover {
    opacity: 0.8; /* Ховер як у home btn-primary */
    background-color: var(--btn-bg);;
    color: var(--light-text);
    transform: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Content Section */
.content-section {
    padding: 5rem 0;
    background-color: #fff;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.page-content h2 {
    font-size: 2.5rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.page-content h3 {
    font-size: 1.8rem;
    margin: 1.8rem 0 1rem;
    color: var(--primary-color);
}

.page-content p {
    margin-bottom: 1.5rem;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.page-content a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: var(--transition);
}

.page-content a:hover {
    color: var(--primary-color);
}

/* Button Styles - ОНОВЛЕНО */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--btn-bg);
    color: var(--btn-text);
    border: 2px solid var(--btn-bg);
}

/* ОНОВЛЕНО: Уніфікований ховер для всіх кнопок */
.btn-primary:hover {
    opacity: 0.8; /* Ховер як у home btn-primary */
    background-color: var(--btn-bg);;
    color: var(--light-text);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border-color: var(--light-text);
}

/* ОНОВЛЕНО: Уніфікований ховер для всіх кнопок */
.btn-secondary:hover {
    opacity: 0.8; /* Ховер як у home btn-primary */
    background-color: var(--light-text);
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.pricing-column,
.camp-pilates-promo-banner {
    animation: fadeIn 0.8s ease-out forwards;
}

.pricing-column:nth-child(1) {
    animation-delay: 0.1s;
}

.pricing-column:nth-child(2) {
    animation-delay: 0.3s;
}

.pricing-column:nth-child(3) {
    animation-delay: 0.5s;
}

.camp-pilates-promo-banner {
    animation-delay: 0.7s;
}

/* Responsive Styles */
@media (max-width: 1600px) {
    body .page-section.pricing-options .container {
        max-width: 95%;
    }

    body .page-section.pricing-options .camp-pilates-promo-banner {
        max-width: 95%;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 120px;
    }

    body .page-section.pricing-options .camp-title {
        font-size: 2.5rem;
    }

    body .page-section.pricing-options .pricing-column-featured {
        transform: scale(1.03);
    }

    body .page-section.pricing-options .pricing-column-featured:hover {
        transform: translateY(-10px) scale(1.03);
    }

    body .page-section.pricing-options .pricing-image-wrapper {
        height: 400px;
    }

    body .page-section.pricing-options .camp-pilates-promo-banner {
        margin-top: 60px;
        padding: 50px 25px;
    }
}

@media (max-width: 992px) {
    body .page-section.pricing-options {
        padding: 80px 0; /* Зменшений паддінг на планшетах */
    }

    body .page-section.pricing-options .pricing-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    body .page-section.pricing-options .pricing-column-featured {
        transform: scale(1);
        margin-bottom: 2rem;
    }

    body .page-section.pricing-options .pricing-column-featured:hover {
        transform: translateY(-10px) scale(1);
    }


    .hero-title {
        font-size: 100px;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    body .page-section.pricing-options .camp-title {
        font-size: 2.2rem;
    }

    body .page-section.pricing-options .pricing-image-wrapper {
        height: 350px;
    }

    body .page-section.pricing-options .camp-pilates-promo-banner {
        margin-top: 50px;
        padding: 40px 20px;
    }

    body .page-section.pricing-options .camp-button-wrapper .btn {
        padding: 12px 30px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    body .page-section.pricing-options {
        padding: 60px 0; /* Зменшений паддінг на мобільних */
    }

    body .page-section.pricing-options .pricing-options-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    body .page-section.pricing-options .pricing-column-featured {
        grid-column: 1;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    body .page-section.pricing-options .camp-title {
        font-size: 2rem;
    }

    body .page-section.pricing-options .pricing-image-wrapper {
        height: 300px;
    }

    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }

    body .page-section.pricing-options .camp-pilates-promo-banner {
        margin-top: 40px;
        padding: 35px 15px;
    }
}

@media (max-width: 576px) {
    body .page-section.pricing-options {
        padding: 50px 0; /* Ще менший паддінг на маленьких мобільних */
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-promo {
        font-size: 1rem;
    }

    body .page-section.pricing-options .camp-title {
        font-size: 1.75rem;
    }

    body .page-section.pricing-options .pricing-title {
        font-size: 1.5rem;
    }

    body .page-section.pricing-options .pricing-subtitle {
        font-size: 1.3rem;
    }

    body .page-section.pricing-options .pricing-image-wrapper {
        height: 250px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    body .page-section.pricing-options .camp-pilates-promo-banner {
        margin-top: 30px;
        padding: 30px 15px;
        border-radius: 15px;
    }

    body .page-section.pricing-options .camp-description {
        font-size: 1rem;
    }
}

/* Print Styles - Optimize for printing price sheets */
@media print {
    .site-header,
    .site-footer,
    .hero-section,
    .camp-pilates-promo-banner,
    .btn {
        display: none;
    }

    body .page-section.pricing-options {
        padding: 0;
        margin: 0;
        background: none;
        height: auto;
    }

    body .page-section.pricing-options .pricing-options-grid {
        display: block;
    }

    body .page-section.pricing-options .pricing-column {
        page-break-inside: avoid;
        break-inside: avoid;
        margin-bottom: 20px;
        border: 1px solid #ccc;
        box-shadow: none;
        background-color: #fff;
    }

    body .page-section.pricing-options .pricing-image-wrapper {
        height: 150px;
    }

    body {
        font-size: 12pt;
    }

    body .page-section.pricing-options .pricing-title {
        font-size: 16pt;
    }

    body .page-section.pricing-options .pricing-subtitle {
        font-size: 14pt;
    }
}