/* Современные стили для сайта "LUMEN | Клуб Сабины Томаш" */

/* Сброс стилей */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Основные переменные - палитра из физалиса */
:root {
    /* Основные цвета из палитры */
    --orange-primary: #ee9226;      /* Яркий оранжевый */
    --orange-light: #f1cd84;        /* Светлый кремово-желтый */
    --orange-dark: #9c2f11;         /* Глубокий красновато-коричневый */
    --green-accent: #2e402a;        /* Темный приглушенный зеленый */
    
    /* Дополнительные цвета */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: rgba(0, 0, 0, 0.1);
    --text-color: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-dark: #2e402a;
    --background-dark: #1a1a1a;
    --background-light: #f5f5f5;
    --background-light-alt: #e8e8e8;
    --border-radius: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Эффекты глассморфизма */
    --blur: blur(20px);
    --backdrop-filter: blur(20px) saturate(180%);
}

/* Базовые стили */
body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--background-dark);
    overflow-x: hidden;
    position: relative;
}

/* Контейнер */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Контейнер для hero секции - прижимаем к левому краю */
.hero .container {
    margin: 0;
    padding: 0;
    max-width: none;
    width: 100%;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
    letter-spacing: -2px;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -1px;
}

h3 {
    font-size: 1.8rem;
}

/* Кнопки с глассморфизмом */
.btn {
    display: inline-block;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    color: var(--text-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: var(--backdrop-filter);
    box-shadow: 
        0 8px 32px rgba(238, 146, 38, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    background: linear-gradient(135deg, var(--orange-light), var(--orange-primary));
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(238, 146, 38, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Навигация с глассморфизмом */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--orange-primary);
    box-shadow: 0 4px 16px rgba(238, 146, 38, 0.3);
    transition: var(--transition);
}

.logo:hover img {
    border-color: var(--orange-light);
    box-shadow: 0 6px 20px rgba(238, 146, 38, 0.5);
    transform: scale(1.05);
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    padding: 8px 16px;
    border-radius: 30px;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--glass-bg);
    border-radius: 30px;
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.nav-menu a:hover::before {
    opacity: 1;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--orange-light);
    transform: translateY(-1px);
}

.nav-menu a.active {
    font-weight: 600;
    text-shadow: 0 0 10px rgba(238, 146, 38, 0.5);
}

.nav-menu .btn {
    font-size: 14px;
    padding: 10px 20px;
}

.nav-menu .member-link {
    color: var(--orange-primary) !important;
    font-weight: 600;
    border: 1px solid var(--orange-primary);
    border-radius: 20px;
    padding: 8px 16px;
    transition: var(--transition);
}

.nav-menu .member-link:hover {
    background: var(--orange-primary);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(238, 146, 38, 0.3);
}

/* Мобильная навигация */
.mobile-nav-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

.mobile-join-btn {
    display: none;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(238, 146, 38, 0.3);
}

.mobile-join-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(238, 146, 38, 0.4);
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-primary));
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: var(--orange-primary);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(30px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
    padding: 0;
    box-shadow: -15px 0 50px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 20px 15px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--orange-primary);
    box-shadow: 0 4px 15px rgba(238, 146, 38, 0.3);
}

.mobile-menu-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-menu-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 1px;
}

.mobile-menu-content {
    padding: 20px 20px 80px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInFromRight 0.5s ease forwards;
}

.mobile-menu li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu li:nth-child(2) { animation-delay: 0.2s; }
.mobile-menu li:nth-child(3) { animation-delay: 0.3s; }
.mobile-menu li:nth-child(4) { animation-delay: 0.4s; }
.mobile-menu li:nth-child(5) { animation-delay: 0.5s; }
.mobile-menu li:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    padding: 6px 0;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--orange-primary);
    transition: width 0.3s ease;
}

.mobile-menu a:hover {
    color: var(--orange-primary);
    transform: translateX(10px);
}

.mobile-menu a:hover::before {
    width: 8px;
}

/* Стили для кнопки "Для членов клуба" в мобильном меню */
.mobile-member-btn {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    color: white !important;
    padding: 12px 20px !important;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(238, 146, 38, 0.3);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.mobile-member-btn:hover {
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-primary));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 146, 38, 0.4);
    color: white !important;
    text-decoration: none;
}

.mobile-member-btn::before {
    display: none;
}

.mobile-menu-btn {
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    border: none;
    border-radius: 25px;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(238, 146, 38, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInFromBottom 0.6s ease 0.6s forwards;
    display: block;
    margin-top: 20px;
}

@keyframes slideInFromBottom {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(238, 146, 38, 0.4);
    color: white;
    text-decoration: none;
}

/* Фиксированная кнопка внизу мобильного меню */
.mobile-menu-btn-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    z-index: 1002;
    display: none;
}

.mobile-menu.active .mobile-menu-btn-fixed {
    display: block;
}

.mobile-menu-btn-fixed .btn {
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 14px;
    border-radius: 25px;
}

/* Секции */
.section {
    padding: 80px 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #2e402a 50%, #1a1a1a 100%);
    color: var(--text-color);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(238, 146, 38, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(241, 205, 132, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-light {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    color: var(--text-dark);
    position: relative;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(238, 146, 38, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(156, 47, 17, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Hero секция с фоновым изображением */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: 
        url('img/b.jpg') center/cover no-repeat,
        linear-gradient(135deg, #1a1a1a 0%, #2e402a 50%, #1a1a1a 100%);
    background-attachment: fixed;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: -10%;
    left: -5%;
    width: 110%;
    height: 120%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.1);
    animation: parallaxMove 15s ease-in-out infinite alternate;
    z-index: 1;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.hero-bg-image.parallax-scroll {
    animation: none;
}

@keyframes parallaxMove {
    0% {
        transform: scale(1.1) translateY(0px) translateX(0px);
    }
    25% {
        transform: scale(1.12) translateY(-10px) translateX(5px);
    }
    50% {
        transform: scale(1.08) translateY(-15px) translateX(-3px);
    }
    75% {
        transform: scale(1.15) translateY(-8px) translateX(8px);
    }
    100% {
        transform: scale(1.1) translateY(-20px) translateX(0px);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 25%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.1) 75%, transparent 100%),
        radial-gradient(circle at 20% 30%, rgba(238, 146, 38, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0;
    padding: 100px 0 0 40px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    max-width: 600px;
    padding-left: 0;
    margin-left: 0;
}

.hero h1 {
    font-size: 7rem;
    margin-bottom: 30px;
    color: var(--text-color);
    font-weight: 700;
    letter-spacing: -4px;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
    line-height: 0.8;
    text-transform: uppercase;
}

.hero-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.9;
    margin-top: 20px;
}

.hero-link:hover {
    color: var(--orange-light);
    opacity: 1;
}

.arrow {
    font-size: 20px;
    transition: var(--transition);
}

.hero-link:hover .arrow {
    transform: translateX(5px);
}

.hero-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 0;
    margin-top: 20px;
}

.hero-club-name {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-description {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    text-align: left;
}

/* Секция "О клубе" */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    z-index: 2;
}

.about-question {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    font-weight: 500;
    text-align: left;
}

.about-content h2 {
    text-align: left !important;
    margin-bottom: 20px;
    color: var(--text-color);
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 700;
}

.about-subtitle {
    text-align: left;
    margin-bottom: 30px;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 30px;
    height: 30px;
    background: var(--orange-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
    font-weight: 600;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(238, 146, 38, 0.3);
}

.benefit-card p {
    color: var(--text-color);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-logo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    gap: 20px;
}

.about-logo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.about-join-btn {
    margin-top: 10px;
    font-size: 14px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
    border: none;
    border-radius: 25px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(238, 146, 38, 0.3);
}

.about-join-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(238, 146, 38, 0.4);
    background: linear-gradient(135deg, var(--orange-dark), var(--orange-primary));
}

.about-cta {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(46, 64, 42, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    background: rgba(46, 64, 42, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-icon {
    font-size: 16px;
}

/* Секция "Что внутри" */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-card:hover .feature-image img {
    transform: scale(1.05);
}

.feature-content {
    padding: 30px;
}

.feature-content h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 14px;
}

/* Секция тем */
.topics-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    border: 1px solid rgba(238, 146, 38, 0.2);
    transition: var(--transition);
    backdrop-filter: blur(15px) saturate(180%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.topic-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.topic-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(238, 146, 38, 0.3);
}

.topic-item p {
    color: var(--text-dark);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

/* Секция "Для кого" */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

/* Центрирование последних двух карточек */
.audience-grid .centered-card {
    grid-column: span 1;
}

/* На больших экранах центрируем последние две карточки */
@media (min-width: 1024px) {
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .audience-grid .centered-card:nth-last-child(2) {
        grid-column: 2;
    }
    
    .audience-grid .centered-card:nth-last-child(1) {
        grid-column: 2;
    }
}

.audience-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.audience-card p {
    color: var(--text-color);
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    padding-right: 50px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.audience-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(238, 146, 38, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Секция "Как вступить" */
.join-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.join-steps h2 {
    margin-bottom: 30px;
    color: var(--text-dark);
    font-size: 2.5rem;
}

.steps-list {
    margin-bottom: 30px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--orange-primary), var(--orange-light));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-weight: 600;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(238, 146, 38, 0.3);
}

.step-item p {
    color: var(--text-dark);
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

.join-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.message-image {
    margin-bottom: 30px;
}

.message-image img {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.message-text h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.message-text p {
    color: rgba(46, 64, 42, 0.8);
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 500;
}

/* Подвал */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2e402a 50%, #1a1a1a 100%);
    color: var(--text-color);
    padding: 60px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.footer-contacts h4,
.footer-legal h4 {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-contacts p {
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.footer-contacts a,
.footer-legal a {
    color: var(--orange-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contacts a:hover,
.footer-legal a:hover {
    color: var(--orange-primary);
}

.footer-contacts a {
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.footer-contacts a:hover {
    border-bottom-color: var(--orange-primary);
}

.footer-legal a {
    display: block;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    margin-bottom: 5px;
    font-size: 14px;
}

/* Стили для чекбоксов в форме */
.checkbox-group {
    margin: 15px 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.3;
    color: var(--text-color);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 16px;
    height: 16px;
    border: 2px solid var(--orange-primary);
    border-radius: 3px;
    background: transparent;
    position: relative;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.checkbox-label a {
    color: var(--orange-primary);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--orange-dark);
}


/* Стили для текста чекбоксов - полный текст */
.checkbox-text {
    display: block;
    width: 100%;
    line-height: 1.4;
}

.checkbox-label {
    align-items: flex-start;
}

.checkbox-label a {
    color: #4A90E2;
    text-decoration: underline;
}

/* Стили для информации о цене в модальном окне */
.price-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 12px 15px;
    margin: 15px 0;
    text-align: center;
}

.price-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.club-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange-primary);
}

.validity-period {
    font-size: 11px;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Стили для полей ввода в форме */
.join-form input {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 13px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 36px;
    box-sizing: border-box;
}

.join-form input:focus {
    outline: none;
    border-color: var(--orange-primary);
    background: rgba(255, 255, 255, 0.15);
}

.join-form input::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Стили для модального окна */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.popup-content {
    background: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    max-width: 450px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.popup-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin: 0 0 8px 0;
    text-align: center;
}

.popup-content p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0 0 20px 0;
    text-align: center;
    line-height: 1.4;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text-color);
    font-size: 18px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Стили для заголовков секций */
.section h2 {
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.section-dark h2 {
    color: var(--text-color);
}

.section p {
    color: rgba(46, 64, 42, 0.8);
}

.section-dark p {
    color: var(--text-secondary);
}

/* Утилиты */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-nav-actions {
        display: flex;
    }
    
    .mobile-join-btn {
        display: block;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: left;
        gap: 30px;
        padding: 100px 0 0 20px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .section h2 {
        font-size: 2.2rem;
    }
    
    .section h3 {
        font-size: 1.4rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .hero-info {
        align-items: flex-start;
        padding-left: 0;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-bg-image {
        background-attachment: scroll;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .topics-list {
        grid-template-columns: 1fr;
    }
    
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .join-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .message-image img {
        width: 250px;
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    
    .section {
        padding: 60px 0;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 1.8rem;
    }
    
    .section h3 {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .hero-content {
        padding: 120px 0 0 15px;
    }
}

/* Анимация капель воды */
@keyframes waterDrop {
    0% {
        transform: translateY(-10px) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(10px) scale(1);
        opacity: 0;
    }
}

.water-drop {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    animation: waterDrop 2s infinite;
}

.water-drop:nth-child(1) { left: 10%; animation-delay: 0s; }
.water-drop:nth-child(2) { left: 20%; animation-delay: 0.5s; }
.water-drop:nth-child(3) { left: 30%; animation-delay: 1s; }
.water-drop:nth-child(4) { left: 40%; animation-delay: 1.5s; }
.water-drop:nth-child(5) { left: 50%; animation-delay: 0.2s; }
.water-drop:nth-child(6) { left: 60%; animation-delay: 0.7s; }
.water-drop:nth-child(7) { left: 70%; animation-delay: 1.2s; }
.water-drop:nth-child(8) { left: 80%; animation-delay: 1.7s; }
.water-drop:nth-child(9) { left: 90%; animation-delay: 0.3s; }

/* Параллакс эффекты */
.parallax-section {
    position: relative;
}

/* Улучшенный глассморфизм */
.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

/* Улучшенные пустоты и отступы */
.section {
    padding: 120px 0;
}

.section h2 {
    margin-bottom: 3rem;
}

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

/* Стили для чекбоксов - отключены для попапа */
/* input[type="checkbox"] {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

input[type="checkbox"]:checked {
    background: var(--orange-primary);
    border-color: var(--orange-primary);
}

input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 10px;
    font-weight: bold;
}

input[type="checkbox"]:hover {
    border-color: var(--orange-primary);
    background: rgba(255, 255, 255, 0.15);
} */

/* Анимация появления элементов */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Плавающие элементы */
.floating-element {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Стили для бонусного блока */
.bonus-section {
    margin-top: 40px;
    width: 100%;
}

.bonus-card {
    width: 100%;
    text-align: center;
    padding: 30px;
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-filter);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 
        0 8px 32px var(--glass-shadow),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.bonus-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.bonus-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--orange-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.bonus-card h4 {
    color: var(--orange-primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 15px 0 10px 0;
    text-transform: capitalize;
}

.bonus-card p {
    color: #000000;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}
