/* ===== СТИЛИ ДЛЯ СТРАНИЦЫ "РЕКВИЗИТЫ" ===== */

:root {
    --yellow: #f7c600;
    --yellow-hover: #ffda44;
    --bg-dark: #0f0f0f;
    --card-bg: rgba(30, 30, 30, 0.95);
    --card-bg-dark: rgba(20, 20, 20, 0.95);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
}

.requisites-page {
    min-height: 100vh;
    background: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* HERO */
.requisites-hero {
    position: relative;
    height: 55vh;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background:
        radial-gradient(circle at top, rgba(247, 198, 0, 0.18), transparent 35%),
        linear-gradient(135deg, #111 0%, #0f0f0f 45%, #1a1a1a 100%);
}

.requisites-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.35;
    z-index: 0;
}

.requisites-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, rgba(247, 198, 0, 0.08), transparent 45%),
        rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.requisites-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.requisites-hero-content h1 {
    font-size: 64px;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.requisites-hero-content p {
    font-size: 20px;
    color: #fff;
    max-width: 720px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.6;
}

/* ОСНОВНЫЕ СЕКЦИИ */
.requisites-section {
    padding: 80px 0;
    position: relative;
}

.requisites-section-dark {
    padding-top: 20px;
}

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

/* КАРТОЧКИ РЕКВИЗИТОВ */
.requisites-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.requisites-card {
    background: linear-gradient(135deg, var(--card-bg), var(--card-bg-dark));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.requisites-card::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(247, 198, 0, 0.16), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.requisites-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.requisites-card:hover::before {
    opacity: 1;
}

.requisites-card-wide {
    grid-column: span 2;
}

.requisites-card-icon {
    font-size: 44px;
    margin-bottom: 18px;
}

.requisites-card h2 {
    font-size: 28px;
    color: var(--yellow);
    margin-bottom: 24px;
}

.requisites-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--glass-border);
}

.requisites-row:last-child {
    border-bottom: none;
}

.requisites-row span {
    color: var(--text-muted);
    font-size: 15px;
}

.requisites-row strong {
    color: var(--text-main);
    font-size: 16px;
    font-weight: 700;
    word-break: break-word;
}

/* ИНФОРМАЦИОННЫЕ КАРТОЧКИ */
.requisites-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.requisites-info-card {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.95), rgba(20, 20, 20, 0.95));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.requisites-info-card:hover {
    transform: translateY(-10px);
    border-color: var(--yellow);
}

.requisites-info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.requisites-info-card h3 {
    color: var(--yellow);
    font-size: 22px;
    margin-bottom: 15px;
}

.requisites-info-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 15px;
}

/* КНОПКА НАЗАД */
.back-to-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--yellow);
    color: #000;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    border: none;
}

.back-to-menu:hover {
    background: var(--yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(247, 198, 0, 0.4);
    color: #000;
}

.back-to-menu:active {
    transform: translateY(0);
}

.back-to-menu-wrapper {
    display: flex;
    justify-content: center;
    padding: 20px 20px 70px;
}

/* АНИМАЦИИ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* АДАПТИВ */
@media (max-width: 900px) {
    .requisites-grid {
        grid-template-columns: 1fr;
    }

    .requisites-card-wide {
        grid-column: span 1;
    }

    .requisites-info-grid {
        grid-template-columns: 1fr;
    }

    .requisites-hero-content h1 {
        font-size: 42px;
    }

    .requisites-hero-content p {
        font-size: 17px;
    }
}

@media (max-width: 600px) {
    .requisites-hero {
        min-height: 360px;
        height: 50vh;
    }

    .requisites-section {
        padding: 50px 0;
    }

    .requisites-card {
        padding: 24px;
    }

    .requisites-card h2 {
        font-size: 24px;
    }

    .requisites-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .requisites-hero-content h1 {
        font-size: 34px;
    }

    .back-to-menu {
        padding: 12px 24px;
        font-size: 14px;
    }

    .back-to-menu-wrapper {
        padding: 20px 20px 45px;
    }
}