/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.privacy-link {
    color: #8A2BE2;
    text-decoration: underline;
}

.close-cookie {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0 10px;
}

/* Top Banner */
.top-banner {
    background: #8A2BE2;
    color: white;
    padding: 10px 0;
    text-align: center;
}

.banner-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.banner-link {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

/* Header */
.header-top {
    background: #f8f9fa;
    padding: 8px 0;
}

.header-links {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-link {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.header-link:hover {
    color: #8A2BE2;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo img {
    height: 40px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link.book-link {
    background: #BA55D3;
    color: white;
}

.nav-link.buy-link {
    background: #FF00FF;
    color: white;
}

.nav-link.learn-link {
    background: #8B008B;
    color: white;
}

.nav-link.teacher-link {
    background: #9400D3;
    color: white;
}

.nav-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-icon {
    background: none;
    border: 2px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.user-icon:hover {
    border-color: #8A2BE2;
    color: #8A2BE2;
}

.book-class-btn {
    background: #333;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-class-btn:hover {
    background: #8A2BE2;
    transform: translateY(-2px);
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    background: #8B008B;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.3);
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 60px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #333;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-input {
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-size: 16px;
    min-width: 200px;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    outline: none;
    border-color: #8A2BE2;
}

.newsletter-btn {
    background: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: #8A2BE2;
    transform: translateY(-2px);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
    font-weight: 600;
}

/* Class Types Section */
.class-types {
    padding: 80px 0;
    background: white;
}

.class-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.class-card {
    background: #333;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    position: relative;
}

.class-card:hover {
    transform: translateY(-10px);
}

.class-image {
    height: 250px;
    overflow: hidden;
}

.class-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.class-content {
    padding: 30px;
    color: white;
}

.class-badge {
    background: #8A2BE2;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.class-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.class-type {
    color: #8A2BE2;
    font-weight: 600;
    margin-bottom: 15px;
}

.class-description {
    margin-bottom: 25px;
    line-height: 1.6;
}

.intensity-meters {
    margin-bottom: 25px;
}

.intensity-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.meter {
    width: 100px;
    height: 8px;
    background: #555;
    border-radius: 4px;
    position: relative;
}

.meter::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    border-radius: 4px;
}

.meter.high::after {
    width: 90%;
    background: #FF00FF;
}

.meter.med-high::after {
    width: 70%;
    background: #9400D3;
}

.meter.low-med::after {
    width: 50%;
    background: #ffc107;
}

.meter.low::after {
    width: 30%;
    background: #BA55D3;
}

.book-btn {
    background: #8A2BE2;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.book-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Membership Section */
.membership {
    padding: 80px 0;
    background: #f8f9fa;
}

.membership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.membership-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-10px);
}

.membership-image {
    height: 200px;
    overflow: hidden;
}

.membership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.membership-card h3 {
    font-size: 1.5rem;
    margin: 25px 25px 15px;
    color: #333;
}

.membership-card p {
    margin: 0 25px 25px;
    color: #666;
    line-height: 1.6;
}

.learn-more-btn {
    background: #333;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 25px 25px;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    background: #8A2BE2;
    transform: translateY(-2px);
}

/* Transformation Section */
.transformation {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/fundamental-yoga-woman.jpg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    text-align: center;
}

.transformation-content h2 {
    color: white;
    font-size: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Platforms Section */
.platforms {
    padding: 80px 0;
    background: white;
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.platform-card {
    text-align: center;
    padding: 30px;
}

.platform-image {
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 25px;
}

.platform-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.platform-card p {
    color: #666;
    line-height: 1.6;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #f8f9fa;
}

.reviews-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.review-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-author strong {
    color: #333;
}

.review-author span {
    color: #666;
    font-size: 0.9rem;
}

/* Tab-specific styles */
.tab-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.tab-hero h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.tab-hero > .container > p {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* Booking Form */
.booking-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-input, .form-select {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-select:focus {
    outline: none;
    border-color: #8A2BE2;
}

.search-btn {
    background: #8A2BE2;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: end;
}

.search-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Class Schedule */
.class-schedule {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.class-schedule h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #333;
}

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

.schedule-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

.schedule-item:hover {
    border-color: #8A2BE2;
}

.time {
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
}

.class-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #333;
}

.class-info p {
    color: #666;
    font-size: 0.9rem;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 3px solid #8A2BE2;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8A2BE2;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8A2BE2;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #BA55D3;
    font-weight: 600;
}

.pricing-btn {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: #8A2BE2;
    transform: translateY(-2px);
}

/* Shop Section */
.shop-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.shop-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.shop-item {
    text-align: center;
}

.shop-image {
    height: 150px;
    background: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 15px;
}

.shop-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.shop-item p {
    color: #8A2BE2;
    font-weight: 600;
}

/* Learn Grid */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.learn-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.learn-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
}

.learn-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.learn-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.learn-card li {
    padding: 5px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.learn-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8A2BE2;
    font-weight: 600;
}

.learn-btn {
    background: #8A2BE2;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.learn-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Video Section */
.video-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.video-section h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.video-item {
    text-align: center;
}

.video-thumbnail {
    height: 150px;
    background: #f0f0f0;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.video-thumbnail::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: #8A2BE2;
}

.video-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: #333;
}

.video-item p {
    color: #666;
}

/* Training Styles */
.training-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/fundamental-yoga-woman.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    text-align: center;
}

.training-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.training-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.training-btn {
    background: #8A2BE2;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.training-btn:hover {
    background: #e55a2b;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.training-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.training-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
}

.training-card ul {
    list-style: none;
}

.training-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.training-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #BA55D3;
    font-weight: 600;
}

/* Upcoming Trainings */
.upcoming-trainings {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.upcoming-trainings h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.date-item {
    text-align: center;
    padding: 30px;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    transition: border-color 0.3s ease;
}

.date-item:hover {
    border-color: #8A2BE2;
}

.date {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.location {
    color: #666;
    margin-bottom: 20px;
}

.apply-btn {
    background: #8A2BE2;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    
    .newsletter-input {
        width: 100%;
        max-width: 300px;
    }
    
    .class-carousel {
        grid-template-columns: 1fr;
    }
    
    .membership-grid {
        grid-template-columns: 1fr;
    }
    
    .platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 480px) {
    .header-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .banner-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .transformation-content h2 {
        font-size: 2rem;
    }
}



/* Тема: harmony */

/* Дополнительные стили для темы harmony */
.hero {
    background: linear-gradient(135deg, #8A2BE222, #DA70D622);
}

.membership-card:hover {
    border-color: #9932CC;
    box-shadow: 0 8px 25px #8A2BE233;
}

.platform-card:hover {
    background: linear-gradient(135deg, #DA70D611, #9932CC11);
}
