/* ═══════════════════════════════════════════════
   AQUA DARK TEXT — Neumorphic Theme
   Ethiopian Hymnal Song Book
   ═══════════════════════════════════════════════ */

/* ── Theme Variables ── */
:root {
    /* Neumorphic base */
    --bg:             #d1f0ff;
    --bg-light:       #E5F6FF;
    --bg-dark:        #B8E0F0;
    --shadow-light:   #EAFAFF;
    --shadow-dark:    rgba(100, 150, 180, 0.35);

    /* Accent — dark/black */
    --accent:         #2A2A2A;
    --accent-dark:    #1A1A1A;
    --accent-light:   #444444;
    --accent-glow:    rgba(30, 30, 30, 0.15);
    --text-on-accent: #FFFFFF;

    /* Text */
    --text-dark:      #1A1A1A;
    --text-mid:       #3A3A3A;
    --text-light:     #666666;

    /* Neumorphic radii */
    --radius:         16px;
    --radius-sm:      10px;
    --radius-lg:      24px;
}

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

body {
    font-family: 'EB Garamond', 'Power Geez Unicode1', 'Noto Sans Ethiopic', Georgia, serif;
    background: var(--bg);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

/* ── Neumorphic Utilities ── */
.neu-raised {
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow:
        6px 6px 14px var(--shadow-dark),
        -6px -6px 14px var(--shadow-light);
}

.neu-pressed {
    background: var(--bg);
    border-radius: var(--radius);
    box-shadow:
        inset 3px 3px 6px var(--shadow-dark),
        inset -3px -3px 6px var(--shadow-light);
}

.neu-raised-sm {
    background: var(--bg);
    border-radius: var(--radius-sm);
    box-shadow:
        3px 3px 6px var(--shadow-dark),
        -3px -3px 6px var(--shadow-light);
}

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

/* ── Header ── */
header {
    padding: 1.5rem 0;
    background: var(--bg-dark);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.logo-emblem {
    width: 54px; height: 54px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    background: var(--bg);
    box-shadow:
        6px 6px 12px var(--shadow-dark),
        -6px -6px 12px var(--shadow-light);
}

.logo-text h1 {
    font-family: 'Power Geez Unicode1', 'Noto Sans Ethiopic', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
}

.logo-text p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    letter-spacing: 0.5px;
}

/* ── Nav Buttons ── */
.nav-links {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    align-items: center;
    flex-wrap: wrap;
}

.nav-btn {
    color: var(--text-mid);
    text-decoration: none;
    font-family: 'Power Geez Unicode1', 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    background: var(--bg);
    box-shadow:
        3px 3px 6px var(--shadow-dark),
        -3px -3px 6px var(--shadow-light);
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
}

.nav-btn:hover {
    box-shadow:
        inset 2px 2px 4px var(--shadow-dark),
        inset -2px -2px 4px var(--shadow-light);
    color: var(--accent);
}

.nav-btn.primary {
    background: linear-gradient(145deg, var(--accent), var(--accent-dark));
    color: var(--text-on-accent);
    font-weight: 600;
    box-shadow:
        3px 3px 6px var(--shadow-dark),
        -3px -3px 6px var(--shadow-light);
}

.nav-btn.primary:hover {
    box-shadow:
        inset 2px 2px 5px rgba(0,0,0,0.3),
        inset -2px -2px 5px rgba(80,80,80,0.3);
}

.user-info {
    font-family: 'Power Geez Unicode1', 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: var(--text-mid);
    padding: 0.5rem 1rem;
}

/* ── Section Heading ── */
.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-family: 'Power Geez Unicode1', 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.section-heading .line {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
}

.section-heading .line::before,
.section-heading .line::after {
    content: '';
    width: 80px;
    height: 1px;
    background: var(--accent-light);
    opacity: 0.3;
}

.section-heading .line span {
    color: var(--accent-light);
    font-size: 0.9rem;
}

/* ── Footer ── */
footer {
    padding: 2rem 0;
    text-align: center;
    margin-top: 1rem;
    background: var(--bg-dark);
}

footer .footer-inner {
    padding: 1.5rem;
}

footer p {
    font-family: 'Power Geez Unicode1', 'Cormorant Garamond', serif;
    font-size: 0.9rem;
    color: var(--text-light);
}

footer .ornament {
    color: var(--accent-light);
    letter-spacing: 6px;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
    opacity: 0.4;
}

/* ── Animation ── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .header-inner { justify-content: center; text-align: center; }
    .nav-links { justify-content: center; }
}
