/* ============================================================
   AniWave Theme — Landing page styles (index.php)
   Standalone: centered logo + nav + search + art hero + CTA,
   followed by unique prose content.
   ============================================================ */

.aw-landing {
    background: #0b0b0f;
    color: #c9c9d2;
    font-family: 'Nunito', Arial, sans-serif;
}

.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap; border: 0;
}

/* ── Hero ──────────────────────────────────────────────── */
.aw-hero {
    position: relative;
    background: #07070b url('../images/bg-index-aniwave.png') center top / cover no-repeat;
    border-bottom: 1px solid #15151c;
    padding: 26px 16px 40px;
    overflow: hidden;
}
.aw-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7,7,11,.55) 0%, rgba(7,7,11,.25) 38%, rgba(7,7,11,.96) 100%);
    z-index: 0;
}
.aw-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
    min-height: 440px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo */
.aw-logo { display: inline-block; margin: 4px 0 18px; }
.aw-logo img { height: 46px; width: auto; max-width: 200px; object-fit: contain; }

/* Nav */
.aw-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 28px;
    margin-bottom: 20px;
}
.aw-nav a {
    color: #e9e9f1;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    padding: 4px 2px;
    transition: color .15s;
}
.aw-nav a:hover { color: #a78bfa; }

/* Search */
.aw-search {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
}
.aw-search input {
    width: 100%;
    background: rgba(18,18,26,.82);
    border: 1px solid #2a2a35;
    border-radius: 10px;
    padding: 13px 16px 13px 44px;
    color: #e9e9f1;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color .15s, background .15s;
}
.aw-search input::placeholder { color: #6b6b78; }
.aw-search input:focus { border-color: #7c3aed; background: rgba(18,18,26,.95); }
.aw-search-ico {
    position: absolute;
    left: 16px; top: 50%;
    transform: translateY(-50%);
    color: #6b6b78;
    font-size: 14px;
    pointer-events: none;
}

/* CTA — gold pill, pushed to the bottom of the hero so the art shows above it */
.aw-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
    background: #f5c518;
    color: #16161a;
    font-weight: 800;
    font-size: 15px;
    padding: 12px 30px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(245,197,24,.22);
    transition: transform .15s, background .15s, box-shadow .15s;
}
.aw-cta:hover {
    background: #ffd23a;
    color: #16161a;
    transform: translateY(-1px);
    box-shadow: 0 10px 26px rgba(245,197,24,.30);
}
.aw-cta i { font-size: 18px; }
.aw-cta--sm { margin-top: 0; font-size: 14px; padding: 11px 26px; }

/* ── Content ───────────────────────────────────────────── */
.aw-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 36px 18px 8px;
    font-size: 14.5px;
    line-height: 1.8;
    color: #9a9aa6;
}
.aw-content p { margin: 0 0 16px; }
.aw-content a { color: #a78bfa; text-decoration: none; }
.aw-content a:hover { text-decoration: underline; }
.aw-content strong { color: #d7d7e0; font-weight: 700; }

.aw-h1 {
    font-size: 26px;
    font-weight: 800;
    color: #f3f3f8;
    line-height: 1.25;
    margin: 0 0 18px;
}
.aw-content h2 {
    font-size: 18px;
    font-weight: 800;
    color: #ececf3;
    margin: 30px 0 10px;
}
.aw-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}
.aw-content ul li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
}
.aw-content ul li::before {
    content: '';
    position: absolute;
    left: 0; top: 11px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #7c3aed;
}
.aw-thanks { color: #c9c9d2; font-weight: 600; }

.aw-bottom-cta {
    text-align: center;
    padding: 22px 0 44px;
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 600px) {
    .aw-hero { padding: 22px 14px 30px; }
    .aw-hero-inner { min-height: 340px; }
    .aw-logo img { height: 40px; }
    .aw-nav { gap: 6px 18px; margin-bottom: 16px; }
    .aw-nav a { font-size: 13px; }
    .aw-search input { padding: 12px 14px 12px 40px; font-size: 13px; }
    .aw-cta { font-size: 14px; padding: 11px 24px; }
    .aw-content { padding: 28px 16px 8px; font-size: 14px; }
    .aw-h1 { font-size: 21px; }
    .aw-content h2 { font-size: 16px; }
}
