/* --- Стили, специфичные для страницы "О нас" --- */

/* Секция 1: Главный экран */
.about-hero {
    background: linear-gradient(rgba(20, 20, 40, 0.5), rgba(20, 20, 40, 0.5)), url('img/about.avif') center/cover no-repeat;
    min-height: 60vh; /* Меньшая высота для внутренних страниц */
}
.about-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}
.logo a {
    color: var(--light-color);
    text-decoration: none;
}


/* Секция 2: Миссия */
.mission-section {
    background-color: var(--gray-color);
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.mission-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.mission-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Секция 3: Команда */
.team-section {
    text-align: center;
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.team-member {
    background: var(--light-color);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}
.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.team-member img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    margin-bottom: 20px;
}
.team-member h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}
.team-member span {
    display: block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Секция 4: Процесс обзора (WOW) */
.process-section {
    background-color: var(--gray-color);
}
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0;
}
.process-step {
    display: flex;
    align-items: center;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}
.process-step:hover {
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.process-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    font-size: 2rem;
    min-width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.process-content {
    text-align: left;
}
.process-content h3 {
    margin-bottom: 5px;
}

/* Секция 5: Почему нам доверяют */
.why-trust-section {
    background-color: var(--dark-color);
}
.why-trust-section h2 {
    color: var(--light-color);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
    color: var(--light-color);
}
.trust-item h3 {
    font-size: 3rem;
    color: var(--accent-color);
}
.trust-item p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* Секция 6: Ответственная игра */
.responsible-gambling-section {
    background-color: #fff0f0; /* Светлый красно-розовый для обозначения осторожности */
    color: #5d0000;
}
.responsible-gambling-content i {
    font-size: 3rem;
    color: #d9534f;
    margin-bottom: 20px;
}
.responsible-gambling-content h2 {
    color: #a94442;
}
.responsible-gambling-content p {
    max-width: 800px;
    margin: 0 auto 30px auto;
}
.resource-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}
.cta-button-secondary {
    background-color: transparent;
    color: #a94442;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    border: 2px solid #a94442;
    transition: all 0.3s ease;
}
.cta-button-secondary:hover {
    background-color: #a94442;
    color: var(--light-color);
}

/* Секция 7: Наш путь */
.journey-section {
    background: var(--gray-color);
}
.journey-timeline {
    list-style: none;
    max-width: 600px;
    margin: 40px auto 0;
    text-align: left;
    padding-left: 20px;
    border-left: 3px solid var(--primary-color);
}
.journey-timeline li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 20px;
}
.journey-timeline li::before {
    content: '';
    position: absolute;
    left: -32px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--light-color);
    border: 3px solid var(--primary-color);
}

/* Секция 8: Форма обратной связи */
.contact-section {
    text-align: center;
}
.contact-form {
    max-width: 600px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.contact-form textarea {
    resize: vertical;
}
.contact-form button {
    border: none;
    cursor: pointer;
    align-self: center;
}
input[type="checkbox"] {
    margin-right: 5px;
    cursor: pointer;
    width: 50px;
}
input[type="checkbox"] + label {
    cursor: pointer;
}
.checkbox {
    display: flex;
    align-items: center;
}

/* Секция 9: О нас пишут */
.featured-section {
    background-color: var(--gray-color);
}
.featured-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
    filter: grayscale(100%);
    opacity: 0.6;
}
.featured-logos img {
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.6;
}

/* Секция 10: Сообщество */
.community-section .social-icons {
    margin-top: 20px;
}
.community-section .social-icons a {
    color: var(--dark-color);
    font-size: 2rem;
    margin: 0 15px;
}
.community-section .social-icons a:hover {
    color: var(--primary-color);
}

/* Why Trust Section */
.why-trust-section {
    padding: 80px 5%;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.trust-item {
    text-align: center;
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-10px);
}

.trust-item h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-color);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .trust-item h3 {
        font-size: 2rem;
    }
}