/* Импорты общих стилей */
@import url('common/base.css');
@import url('common/header.css');
@import url('common/navigation.css');
@import url('common/footer.css');
@import url('common/loading.css');
@import url('common/age-verification.css');


/* Стили для страницы "О нас" */

/* Основной контейнер страницы */
.content-page {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Главный заголовок */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #d4af37;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Вводный текст */
.lead {
    font-size: 1.3rem;
    color: #e0e0e0;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Сетка информационных карточек */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Карточка с информацией */
.info-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8) 0%, rgba(15, 15, 15, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

@media (hover: hover) {
    .info-card:hover {
        transform: translateY(-5px);
        border-color: rgba(212, 175, 55, 0.4);
        box-shadow: 0 12px 40px rgba(212, 175, 55, 0.1);
    }
}

.info-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; /* Увеличенный размер */
    color: #d4af37;
    margin-bottom: 1.3rem; /* Увеличенный отступ */
    display: flex;
    align-items: center;
    gap: 0.9rem; /* Увеличенный интервал */
    font-weight: 600;
    letter-spacing: 0.02em; /* Межбуквенный интервал */
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3); /* Тень для контраста */
    position: relative; /* Для декоративного элемента */
}

.info-card h2::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #f4d03f);
    border-radius: 1px;
}

.info-card h2 i {
    font-size: 1.3rem;
    color: #f4d03f;
}

.info-card p {
    color: #e0e0e0; /* Более яркий цвет для лучшей читаемости */
    line-height: 1.8; /* Увеличенный межстрочный интервал */
    font-size: 1.05rem; /* Увеличенный размер шрифта */
    font-weight: 400; /* Четкий вес шрифта */
    text-align: justify; /* Выравнивание по ширине */
    hyphens: auto; /* Автоматическая расстановка переносов */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); /* Тонкая тень для контраста */
}


/* Адаптивный дизайн */
@media (max-width: 768px) {
    .content-page {
        padding: 2rem 1rem;
    }
    
    .main-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .info-card {
        padding: 1.8rem; /* Увеличенные отступы для мобильных */
    }
    
    .info-card h2 {
        font-size: 1.4rem; /* Увеличенный размер для мобильных */
    }
    
    .info-card p {
        text-align: left; /* Левый край для мобильных */
        font-size: 1rem; /* Оптимальный размер для мобильных */
    }
    
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .info-card {
        padding: 1rem;
    }
    
}

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

.info-card {
    animation: fadeInUp 0.6s ease-out;
}

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