/*
Theme Name: Ana Agrba
Theme URI: https://anaagrba.ru
Author: Dmitriy Malygin
Author URI: https://anaagrba.ru
Description: Лэндинг-анонс сольного проекта Аны Агрба
Version: 1.0
Text Domain: anaagrba
*/

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
    background-color: #000000;
    color: #ffffff;
    line-height: 1.6;
}

.aa-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero-aa {
    flex: 1;
}

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

a:hover {
    text-decoration: underline;
}

/* HERO */

.hero-aa {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 6vw;
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero-aa-overlay {
    position: absolute;
    inset: 0;
    /* тёплый тёмный фильтр */
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.6)
    );
}

.hero-aa-inner {
    position: relative;
    max-width: 720px;
}

.hero-aa-label {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 11px;
    margin-bottom: 18px;
    opacity: 0.9;
    font-weight: 500;
}

.hero-aa-title {
    font-size: 52px;
    line-height: 1.12;
    margin: 0 0 26px;
    font-weight: 700;
}

.hero-aa-subtitle {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 400;
}

/* Футер */

.aa-footer {
    background-color: #050505;
    color: #f5f5f5;
    padding: 18px 6vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.aa-footer-left {
    opacity: 0.8;
}

.aa-footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* простые круглые "иконки" */
.aa-social-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* Контент обычных страниц (если потом пригодятся) */

.page-wrapper {
    padding: 80px 6vw;
    max-width: 900px;
    margin: 0 auto;
}

/* Адаптив */

@media (max-width: 768px) {
    .hero-aa {
        padding: 80px 6vw 40px;
        align-items: flex-start;
    }

    .hero-aa-title {
        font-size: 34px;
    }

    .hero-aa-subtitle {
        font-size: 16px;
    }

    .aa-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
