/*
Theme Name: АУ Такси
Theme URI: https://taxi-au.ru
Description: Сайт-визитка службы такси АУ
Version: 1.0
Author: ChipAlt
Text Domain: au-taxi
*/

:root {
    --yellow: #ffba00;
    --yellow-dark: #e5a800;
    --black: #1A1A1E;
    --black-light: #242428;
    --white: #ffffff;
    --gray-light: #f4f5f7;
    --gray: #6B7280;
    --blue: #3B82F6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a { text-decoration: none; color: inherit; }

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

/* ===== HEADER / NAV ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(26, 26, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: box-shadow 0.3s;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    height: 45px;
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--yellow);
}

.nav-phone {
    color: var(--yellow);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a30 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 186, 0, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    width: 280px;
    max-width: 70vw;
    margin-bottom: 30px;
    filter: drop-shadow(0 10px 30px rgba(255, 186, 0, 0.3));
    animation: fadeInUp 0.8s ease-out;
}

.hero h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 16px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 span {
    color: var(--yellow);
}

.hero-subtitle {
    color: #9CA3AF;
    font-size: 1.2rem;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 0 4px 20px rgba(255, 186, 0, 0.4);
}

.btn-yellow:hover {
    box-shadow: 0 6px 30px rgba(255, 186, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--black);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ABOUT ===== */
.about {
    background: var(--gray-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
}

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

.about-card .number {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--yellow);
    margin-bottom: 8px;
}

.about-card p {
    color: var(--gray);
    font-size: 1rem;
}

/* ===== FEATURES ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--black);
}

.feature-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== DRIVERS CTA ===== */
.drivers-cta {
    background: linear-gradient(135deg, var(--black) 0%, #2a2a30 100%);
    color: var(--white);
    text-align: center;
}

.drivers-cta .section-title {
    color: var(--white);
}

.drivers-cta .section-subtitle {
    color: #9CA3AF;
}

.drivers-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.drivers-benefits li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.drivers-benefits li::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--yellow);
    color: var(--black);
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ===== DOWNLOAD ===== */
.download {
    background: var(--gray-light);
    text-align: center;
}

.download-badge {
    display: inline-block;
    background: var(--black);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 12px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.7;
    cursor: default;
}

.download-badge small {
    display: block;
    font-weight: 400;
    font-size: 0.8rem;
    margin-top: 4px;
    color: #9CA3AF;
}

/* ===== FOOTER ===== */
.site-footer {
    background: var(--black);
    color: #9CA3AF;
    padding: 40px 0 24px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.footer-brand img {
    height: 50px;
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-contacts h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-contacts a {
    display: block;
    color: #9CA3AF;
    margin-bottom: 8px;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-contacts a:hover {
    color: var(--yellow);
}

.footer-phone {
    color: var(--yellow) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.2rem !important;
}

.footer-bottom {
    border-top: 1px solid #2E2E34;
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .burger { display: flex; }

    .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--black);
        padding: 20px;
        gap: 16px;
        border-top: 1px solid #2E2E34;
    }

    .hero h1 { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-logo { width: 200px; }

    .about-grid { grid-template-columns: 1fr; gap: 10px; }
    .features-grid { grid-template-columns: 1fr; }

    .section-title { font-size: 1.6rem; }
    .section { padding: 50px 0; }

    .drivers-benefits { flex-direction: column; align-items: center; gap: 16px; }
    .footer-inner { flex-direction: column; align-items: center; text-align: center; }
    .footer-brand p { max-width: 100%; }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
