/* ===== ZMIENNE ===== */
:root {
    --brand-warm: #8B7A6B;
    --brand-warm-light: #B8A99A;
    --brand-sage: #A8C4B0;
    --brand-cream: #F9F6F0;
    --brand-beige: #EFE6DC;
    --brand-green: #5F7D6B;
    --brand-green-light: #7A9A86;
    --brand-green-dark: #3D5A4A;
    --brand-brown: #8B7355;
    --brand-gold: #C4A882;
    --brand-text: #3D3A36;
    --brand-text-light: #6B655C;
    --brand-white: #FFFFFF;
    --brand-shadow: rgba(95, 125, 107, 0.12);
    --brand-shadow-hover: rgba(95, 125, 107, 0.25);
    --shadow-soft: 0 8px 32px rgba(139, 122, 107, 0.12);
    --shadow-hover: 0 16px 48px rgba(139, 122, 107, 0.20);
    --transition: all 0.3s ease-in-out;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--brand-cream);
    color: var(--brand-text);
    line-height: 1.7;
    padding-top: 80px;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: var(--brand-text);
}

h1 {
    font-size: 3.6rem;
    line-height: 1.12;
    letter-spacing: -0.02em;
}
h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}
h3 {
    font-size: 2rem;
    line-height: 1.3;
}
h4 {
    font-size: 1.5rem;
    line-height: 1.4;
}

a {
    color: var(--brand-warm);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--brand-warm-light);
    text-decoration: none;
}

.text-warm {
    color: var(--brand-warm);
}
.text-sage {
    color: var(--brand-green-light);
}
.text-muted-custom {
    color: var(--brand-text-light);
}

.bg-warm {
    background-color: var(--brand-warm);
}
.bg-cream {
    background-color: var(--brand-cream);
}
.bg-beige {
    background-color: var(--brand-beige);
}
.bg-white {
    background-color: var(--brand-white);
}
.bg-white-soft {
    background-color: var(--brand-white);
}
.bg-green-soft {
    background-color: #eef3ec;
}

.section-padding {
    padding: 5rem 0;
}
.section-padding-sm {
    padding: 3rem 0;
}
.section-title {
    margin-bottom: 3rem;
}
.section-title h2 {
    margin-bottom: 0.5rem;
}
.section-title .subheading {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--brand-text-light);
}
.section-title .line {
    width: 60px;
    height: 3px;
    background: var(--brand-gold);
    margin: 0.75rem auto 0;
    border-radius: 4px;
}

/* ===== N A V B A R ===== */
.navbar-custom {
    background-color: rgba(249, 245, 240, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.04);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(200, 180, 165, 0.15);
}
.navbar-custom .navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: var(--brand-text);
}
.navbar-custom .navbar-brand span {
    color: var(--brand-gold);
}
.navbar-custom .nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-text);
    padding: 0.5rem 1rem;
    transition: var(--transition);
}
.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--brand-warm);
}
.navbar-custom .btn-outline-brand {
    border: 1.5px solid var(--brand-green);
    color: var(--brand-green);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    transition: var(--transition);
}
.navbar-custom .btn-outline-brand:hover {
    background-color: var(--brand-green);
    color: #fff;
}

/* ===== H E R O ===== */
.hero {
    /* padding: 6rem 0 4rem; */
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, var(--brand-cream) 0%, #f3ede7 100%);
}
.hero .hero-badge {
    display: inline-block;
    background: var(--brand-green);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}
.hero h1 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.hero h1 .highlight {
    color: var(--brand-warm);
    font-style: italic;
}
.hero .subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    color: var(--brand-text-light);
    max-width: 520px;
}
.hero .btn-primary-brand {
    background-color: var(--brand-green);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.9rem 2.8rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 8px 28px rgba(95, 125, 107, 0.25);
    letter-spacing: 0.04em;
}
.hero .btn-primary-brand:hover {
    background-color: var(--brand-green-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(95, 125, 107, 0.35);
}
.hero .hero-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--brand-text-light);
    border-left: 3px solid var(--brand-gold);
    padding-left: 1.5rem;
    margin-top: 1.5rem;
}

/* ===== KARTY / BLOKI ===== */
.card-soft {
    background: var(--brand-white);
    border: none;
    border-radius: 20px;
    padding: 2rem 1.8rem;
    box-shadow: 0 8px 32px var(--brand-shadow);
    transition: var(--transition);
    height: 100%;
}
.card-soft:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px var(--brand-shadow-hover);
}
.card-soft .icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(95, 125, 107, 0.10);
    color: var(--brand-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-feature {
    background: var(--brand-white);
    border: none;
    border-radius: 16px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 4px 16px var(--brand-shadow);
    transition: var(--transition);
    height: 100%;
}
.card-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px var(--brand-shadow-hover);
}
.card-feature .feature-icon {
    font-size: 1.8rem;
    color: var(--brand-green);
    margin-bottom: 0.75rem;
}

/* ===== O STUDIO ===== */
.about-card {
    background: var(--brand-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    height: 100%;
}
.about-card p {
    color: var(--brand-text-light);
    font-size: 0.98rem;
}
.about-image-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    height: 100%;
    min-height: 320px;
    background: var(--brand-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-warm-light);
    font-size: 4rem;
}
.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== TRENERZY ===== */
.trainer-card {
    background: var(--brand-white);
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    height: 100%;
}
.trainer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}
.trainer-card .trainer-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--brand-beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--brand-warm-light);
    overflow: hidden;
}
.trainer-card .trainer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.trainer-card .trainer-body {
    padding: 1.5rem 1.25rem 1.25rem;
    text-align: center;
}
.trainer-card .trainer-body h5 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0.1rem;
}
.trainer-card .trainer-body .trainer-title {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--brand-text-light);
    letter-spacing: 0.04em;
}
.trainer-card .trainer-body .trainer-hint {
    font-size: 0.75rem;
    color: var(--brand-warm-light);
    margin-top: 0.5rem;
    opacity: 0.7;
}

/* ===== ZAJĘCIA ===== */
.class-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--brand-beige);
    display: flex;
    align-items: center;
    justify-content: center;
}
.class-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}
.class-card .class-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}
.class-card:hover .class-bg {
    transform: scale(1.06);
}
.class-card .class-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 58, 54, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 1.5rem;
    transition: var(--transition);
}
.class-card:hover .class-overlay {
    background: rgba(61, 58, 54, 0.50);
}
.class-card .class-overlay h4 {
    color: #fff;
    font-weight: 700;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
    margin-bottom: 0.25rem;
}
.class-card .class-overlay .class-sub {
    font-size: 0.8rem;
    font-weight: 300;
    opacity: 0.85;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.06em;
}
.class-card .class-overlay .class-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

/* ===== CENNIK ===== */
.price-card {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-soft);
    height: 100%;
    transition: var(--transition);
}
.price-card:hover {
    box-shadow: var(--shadow-hover);
}
.price-card .price-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--brand-beige);
    padding-bottom: 0.75rem;
    margin-bottom: 1.25rem;
}
.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(200, 180, 165, 0.25);
}
.price-item:last-child {
    border-bottom: none;
}
.price-item .price-label {
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--brand-text);
}
.price-item .price-value {
    font-weight: 600;
    font-size: 1rem;
    color: var(--brand-warm);
}
.price-item .price-note {
    font-size: 0.7rem;
    color: var(--brand-text-light);
    font-weight: 300;
}
.price-card .price-info {
    font-size: 0.8rem;
    color: var(--brand-text-light);
    margin-top: 1rem;
    font-style: italic;
}

.price-card.highlight {
    border: 2px solid var(--brand-gold);
    background: var(--brand-cream);
    position: relative;
    overflow: hidden;
}
.price-card.highlight .price-title {
    color: var(--brand-warm);
}

/* ===== GRAFIK ===== */
.schedule-wrapper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    background: var(--brand-white);
}
.schedule-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
}
.schedule-wrapper .schedule-placeholder {
    padding: 2rem;
    text-align: center;
    color: var(--brand-text-light);
    background: var(--brand-beige);
}

/* ===== MODALE ===== */
.modal-content {
    border: none;
    border-radius: 24px;
    overflow: hidden;
    background: var(--brand-cream);
}
.modal-header {
    border-bottom: 1px solid rgba(200, 180, 165, 0.20);
    padding: 1.25rem 1.75rem;
    background: var(--brand-white);
}
.modal-header .btn-close {
    opacity: 0.6;
    transition: var(--transition);
}
.modal-header .btn-close:hover {
    opacity: 1;
}
.modal-body {
    padding: 1.75rem;
}
.modal-body .modal-trainer-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.1rem;
}
.modal-body .modal-trainer-title {
    font-size: 0.9rem;
    color: var(--brand-text-light);
    letter-spacing: 0.04em;
}
.modal-body .modal-trainer-desc {
    color: var(--brand-text-light);
    font-size: 0.95rem;
    margin-top: 1rem;
}
.modal-body .modal-class-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 0.25rem;
}
.modal-body .modal-class-desc {
    color: var(--brand-text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}
.modal-body .carousel {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}
.modal-body .carousel-item {
    aspect-ratio: 16/10;
    background: var(--brand-beige);
    /* display: flex; */
    align-items: center;
    justify-content: center;
    color: var(--brand-warm-light);
    font-size: 4rem;
}
.modal-body .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-body .carousel-control-prev,
.modal-body .carousel-control-next {
    width: 10%;
    opacity: 0.6;
}
.modal-body .carousel-control-prev:hover,
.modal-body .carousel-control-next:hover {
    opacity: 1;
}
.modal-body .carousel-control-prev-icon,
.modal-body .carousel-control-next-icon {
    background-color: rgba(61, 58, 54, 0.5);
    border-radius: 50%;
    padding: 1.2rem;
    background-size: 50%;
}

/* ===== LISTA Z KROPAMI ===== */
.check-list {
    list-style: none;
    padding: 0;
}
.check-list li {
    padding: 0.4rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
    font-size: 1rem;
}
.check-list li i {
    color: var(--brand-green);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.list-leaf {
    list-style: none;
    padding: 0;
}
.list-leaf li {
    padding: 0.35rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.98rem;
}
.list-leaf li i {
    color: var(--brand-gold);
    font-size: 1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* ===== CYTAT / WYRÓŻNIENIE ===== */
.blockquote-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-style: italic;
    color: var(--brand-text);
    border-left: 4px solid var(--brand-gold);
    padding-left: 2rem;
    margin: 1.5rem 0;
}
.blockquote-brand small {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-style: normal;
    font-weight: 400;
    color: var(--brand-text-light);
    margin-top: 0.5rem;
}

/* ===== SEKCJA NAUCZYCIELKI ===== */
.teacher-card {
    background: var(--brand-white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px var(--brand-shadow);
}
.teacher-card .teacher-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--brand-beige);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.teacher-card .teacher-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}
.teacher-card .teacher-title {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--brand-text-light);
    letter-spacing: 0.04em;
}

/* ===== CTA ===== */
.cta-section {
    background: linear-gradient(135deg, var(--brand-green-dark) 0%, var(--brand-green) 100%);
    border-radius: 32px;
    padding: 4rem 3rem;
    color: #fff;
    box-shadow: 0 16px 48px rgba(95, 125, 107, 0.3);
}
.cta-section h2 {
    color: #fff;
    font-weight: 700;
}
.cta-section .btn-cta {
    background: #fff;
    color: var(--brand-green-dark);
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.9rem 3rem;
    border-radius: 50px;
    border: none;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
    letter-spacing: 0.04em;
}
.cta-section .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    background: #f8f6f2;
}
.cta-section .btn-outline-cta {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 500;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.04em;
}
.cta-section .btn-outline-cta:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.footer-custom {
    background: var(--brand-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 2.5rem 0 1.5rem;
    font-size: 0.9rem;
}
.footer-custom a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}
.footer-custom a:hover {
    color: #fff;
}
.footer-custom .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}
.footer-custom .footer-brand span {
    color: var(--brand-gold);
}
.footer-custom .btn-outline-terms {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-weight: 500;
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    transition: var(--transition);
    letter-spacing: 0.04em;
}
.footer-custom .btn-outline-terms:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ===== RESPONSYWNOŚĆ ===== */
@media (max-width: 991.98px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 2.2rem;
    }
    .hero {
        padding: 4rem 0 3rem;
    }
    .about-image-wrapper {
        min-height: 240px;
    }
    .schedule-wrapper iframe {
        height: 380px;
    }
    .cta-section {
        padding: 2.5rem 1.5rem;
    }
}
@media (max-width: 767.98px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.9rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .section-padding {
        padding: 3rem 0;
    }
    .hero .subtitle {
        font-size: 1rem;
    }
    .hero .btn-primary-brand {
        width: 100%;
        text-align: center;
    }
    .about-card {
        padding: 1.5rem;
    }
    .price-card {
        padding: 1.5rem;
    }
    .price-card.highlight::before {
        font-size: 0.45rem;
        right: -28px;
        padding: 0.2rem 2.2rem;
    }
    .modal-body .modal-trainer-name {
        font-size: 1.6rem;
    }
    .schedule-wrapper iframe {
        height: 300px;
    }
    .cta-section .btn-cta,
    .cta-section .btn-outline-cta {
        width: 100%;
        text-align: center;
    }
    .blockquote-brand {
        font-size: 1.2rem;
        padding-left: 1.2rem;
    }
    .teacher-card .teacher-img {
        width: 90px;
        height: 90px;
    }
}
@media (max-width: 575.98px) {
    h1 {
        font-size: 1.8rem;
    }
    .hero {
        padding: 5rem 0 2.5rem;
    }
    .class-card {
        aspect-ratio: 3/2;
    }
    .class-card .class-overlay h4 {
        font-size: 1.2rem;
    }
    .about-image-wrapper {
        min-height: 180px;
    }
    .modal-body {
        padding: 1.25rem;
    }
    .card-soft {
        padding: 1.5rem 1.2rem;
    }
    .cta-section {
        padding: 2rem 1.2rem;
        border-radius: 20px;
    }
}

/* ===== DROBNE POMOCE ===== */
.gap-2 {
    gap: 0.75rem;
}
.gap-3 {
    gap: 1.25rem;
}
.rounded-4 {
    border-radius: 24px;
}
.border-gold {
    border-color: var(--brand-gold) !important;
}
.text-green {
    color: var(--brand-green);
}
.text-gold {
    color: var(--brand-gold);
}
.fw-500 {
    font-weight: 500;
}
.fw-600 {
    font-weight: 600;
}
.letter-spacing-1 {
    letter-spacing: 0.04em;
}
.shadow-soft {
    box-shadow: var(--shadow-soft);
}
.shadow-hover {
    transition: var(--transition);
}
.shadow-hover:hover {
    box-shadow: var(--shadow-hover);
}
.border-bottom-gold {
    border-bottom: 2px solid var(--brand-gold);
    display: inline-block;
    padding-bottom: 0.25rem;
}
.btn-outline-warm {
    border: 1.5px solid var(--brand-warm);
    color: var(--brand-warm);
    font-weight: 500;
    border-radius: 50px;
    padding: 0.5rem 1.8rem;
    transition: var(--transition);
    background: transparent;
}
.btn-outline-warm:hover {
    background: var(--brand-warm);
    color: #fff;
}
.btn-warm {
    background: var(--brand-warm);
    border: none;
    color: #fff;
    font-weight: 500;
    border-radius: 50px;
    padding: 0.6rem 2rem;
    transition: var(--transition);
}
.btn-warm:hover {
    background: var(--brand-warm-light);
    color: #fff;
}
