/* REFORMA Pilates Studio - Light + Gold Design */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #B8956A;
    --gold-light: #D4B896;
    --gold-dark: #9A7B56;
    --bg: #FAF8F5;
    --bg-soft: #F2EDE7;
    --card: #FFFFFF;
    --text: #2D2D2D;
    --text-muted: #6B6B6B;
    --white: #FFFFFF;
    --border: rgba(184, 149, 106, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.header__logo {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
}

.logo-sub {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.header__nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: var(--gold);
}

.header__btn {
    background: var(--gold);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.header__btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.header__burger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: 2px solid var(--gold);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-toggle:hover {
    background: var(--gold);
    transform: rotate(30deg);
}

/* Dark Theme */
body.dark {
    --bg: #0D0D0D;
    --bg-soft: #1A1A1A;
    --card: #1E1E1E;
    --text: #FFFFFF;
    --text-muted: #999999;
    --border: rgba(184, 149, 106, 0.2);
}

body.dark .header {
    background: rgba(13, 13, 13, 0.95);
    border-bottom-color: rgba(184, 149, 106, 0.2);
}

body.dark .nav-link {
    color: #FFFFFF;
}

body.dark .header__btn {
    color: #0D0D0D;
}

body.dark .btn--primary {
    color: #FFFFFF;
}

body.dark .btn--outline {
    color: var(--gold);
}

body.dark .btn--outline:hover {
    color: #0D0D0D;
}

body.dark .hero__overlay {
    background: linear-gradient(135deg, rgba(13, 13, 13, 0.85) 0%, rgba(26, 26, 26, 0.7) 100%);
}

body.dark .hero__title-sub {
    color: #999999;
}

body.dark .hero__desc {
    color: #999999;
}

body.dark .section__title {
    color: #FFFFFF;
}

body.dark .about__card-desc,
body.dark .cert-item,
body.dark .booking__desc,
body.dark .booking__feature,
body.dark .yclients__feature,
body.dark .yclients__note p,
body.dark .contact__text,
body.dark .review-card__text,
body.dark .price-item__count,
body.dark .price-card__note,
body.dark .trainer__title {
    color: #999999;
}

body.dark .trainer__quote {
    color: #E8D5B5;
    background: rgba(184, 149, 106, 0.05);
}

body.dark .prices__note {
    color: #E8D5B5;
    background: rgba(184, 149, 106, 0.1);
}

body.dark .booking__success {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

body.dark .form-group input,
body.dark .form-group textarea {
    background: #0D0D0D;
    border-color: rgba(184, 149, 106, 0.2);
    color: #FFFFFF;
}

body.dark .form-group input::placeholder,
body.dark .form-group textarea::placeholder {
    color: #666666;
}

body.dark .footer__logo p,
body.dark .footer__copy {
    color: #666666;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--bg) 0%, var(--bg-soft) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(250, 248, 245, 0.82) 0%, rgba(242, 237, 231, 0.65) 100%);
    z-index: -1;
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 149, 106, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.hero__content::before {
    content: '✦';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: var(--gold);
    opacity: 0.5;
}

.hero__title {
    margin-bottom: 30px;
}

.hero__title-line {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 72px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 10px;
    margin-bottom: 10px;
}

.hero__title-sub {
    display: block;
    font-size: 18px;
    font-weight: 300;
    color: var(--text-muted);
    letter-spacing: 5px;
    text-transform: uppercase;
}

.hero__desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero__buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn--primary {
    background: var(--gold);
    color: var(--white);
}

.btn--primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 149, 106, 0.3);
}

.btn--outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn--outline:hover {
    background: var(--gold);
    color: var(--white);
}

.btn--full {
    width: 100%;
}

/* Sections */
.section {
    padding: 80px 0;
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section__title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 600;
    color: var(--text);
}

/* About */
.about {
    background: linear-gradient(180deg, var(--bg-soft) 0%, rgba(184, 149, 106, 0.06) 50%, var(--bg-soft) 100%);
}

.about__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about__card {
    background: var(--card);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about__card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(184, 149, 106, 0.2);
}

.about__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.about__card:hover::after {
    opacity: 1;
}

.about__icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.about__card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gold);
}

.about__card-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Trainer */
.trainer {
    background: var(--bg);
}

.trainer__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.trainer__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.trainer__name {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--gold);
}

.trainer__title {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.trainer__certs {
    margin-bottom: 30px;
}

.cert-item {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    padding-left: 10px;
}

.trainer__quote {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-style: italic;
    color: var(--gold-dark);
    padding: 20px;
    border-left: 3px solid var(--gold);
    background: rgba(184, 149, 106, 0.06);
    border-radius: 0 10px 10px 0;
}

/* Prices */
.prices {
    background: var(--bg-soft);
}

.prices__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.price-card {
    background: var(--card);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.price-card:hover {
    border-color: var(--gold);
    box-shadow: 0 10px 40px rgba(184, 149, 106, 0.15);
}

.price-card--single {
    grid-column: span 2;
    text-align: center;
    background: linear-gradient(135deg, var(--card) 0%, rgba(184, 149, 106, 0.08) 100%);
}

.price-card--personal {
    grid-column: span 2;
}

.price-card__title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gold);
}

.price-card__price {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.price-card__note {
    font-size: 14px;
    color: var(--text-muted);
}

.price-card__items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item__count {
    font-size: 16px;
    color: var(--text);
}

.price-item__price {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold);
}

.price-item__price small {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.prices__note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(184, 149, 106, 0.08);
    border-radius: 10px;
    color: var(--gold-dark);
}

/* Gallery */
.gallery {
    background: linear-gradient(180deg, var(--bg) 0%, rgba(184, 149, 106, 0.08) 50%, var(--bg) 100%);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery__item {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s;
}

.gallery__item img:hover {
    transform: scale(1.05);
}

.gallery__note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-muted);
}

/* YClients */
.yclients {
    background: linear-gradient(135deg, rgba(184, 149, 106, 0.1) 0%, var(--bg-soft) 50%, rgba(184, 149, 106, 0.1) 100%);
}

.yclients__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.yclients__note {
    text-align: center;
    margin-bottom: 30px;
}

.yclients__note p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn--large {
    padding: 18px 50px;
    font-size: 18px;
}

.yclients__features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.yclients__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-muted);
}

.yclients__icon {
    font-size: 20px;
}

/* Map */
.contact__map-container {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Booking */
.booking {
    background: var(--bg);
}

.booking__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.booking__desc {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
}

.booking__features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.booking__feature {
    font-size: 16px;
    color: var(--text);
}

.booking__form {
    background: var(--card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--gold);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.booking__success {
    text-align: center;
    padding: 20px;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 10px;
    color: #2E7D32;
    margin-top: 20px;
}

/* Reviews */
.reviews {
    background: linear-gradient(180deg, var(--bg-soft) 0%, rgba(184, 149, 106, 0.06) 50%, var(--bg-soft) 100%);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-card {
    background: var(--card);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid var(--border);
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.review-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(184, 149, 106, 0.2);
}

.review-card__stars {
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 15px;
}

.review-card__text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-card__author {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
}

/* Contact */
.contact {
    background: var(--bg);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact__item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact__icon {
    font-size: 24px;
}

.contact__text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
}

.contact__text a {
    color: var(--gold);
    text-decoration: none;
}

.contact__text a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--bg-soft);
    padding: 40px 0;
    border-top: 1px solid var(--border);
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__logo p {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 5px;
}

.footer__copy {
    font-size: 12px;
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 992px) {
    .header__nav {
        display: none;
    }

    .header__burger {
        display: flex;
    }

    .hero__title-line {
        font-size: 48px;
    }

    .about__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trainer__inner {
        grid-template-columns: 1fr;
    }

    .prices__grid {
        grid-template-columns: 1fr;
    }

    .price-card--single,
    .price-card--personal {
        grid-column: span 1;
    }

    .booking__inner {
        grid-template-columns: 1fr;
    }

    .contact__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero__title-line {
        font-size: 36px;
        letter-spacing: 5px;
    }

    .section__title {
        font-size: 32px;
    }

    .about__grid {
        grid-template-columns: 1fr;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .hero__title-line {
        font-size: 28px;
    }

    .hero__buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .gallery__grid {
        grid-template-columns: 1fr;
    }
}
