/* =========================================
   coming-soon.css
   Place in: public/css/coming-soon.css
   ========================================= */

:root {
    --gold:         #c9913a;
    --gold-light:   #e8b46a;
    --deep:         #1a0e05;
    --navy:         #2a1508;
    --cream:        #f7efe0;
    --white:        #fff8f0;
    --maroon:       #7a1c1c;
    --maroon-light: #a32a2a;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: var(--deep);
    color: var(--cream);
    font-family: 'Cormorant Garamond', serif;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ── Starfield ───────────────────────────── */
.stars {
    position: fixed;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.stars span {
    position: absolute;
    border-radius: 50%;
    background: #f0d080;
    animation: twinkle var(--d, 3s) ease-in-out infinite alternate;
    opacity: 0;
}

@keyframes twinkle {
    0%   { opacity: 0;              transform: scale(0.8); }
    100% { opacity: var(--op, 0.7); transform: scale(1.2); }
}

/* ── Radial Glow ─────────────────────────── */
.glow-bg {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 100%, rgba(201,145,58,.18) 0%, transparent 70%),
        radial-gradient(ellipse 40% 30% at 50% 50%,  rgba(122, 28, 28,.12) 0%, transparent 60%);
    z-index: 0;
}

/* ── Cross Beam ──────────────────────────── */
.beam {
    position: fixed;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100vh;
    background: linear-gradient(
        to bottom,
        transparent              0%,
        rgba(201,145,58,.30)    30%,
        rgba(201,145,58,.70)    50%,
        rgba(201,145,58,.30)    70%,
        transparent             100%
    );
    transform: translateX(-50%);
    z-index: 0;
    animation: beamPulse 4s ease-in-out infinite;
}

@keyframes beamPulse {
    0%, 100% { opacity: 0.4; }
    50%       { opacity: 0.9; }
}

/* ── Main Container ──────────────────────── */
.container {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    animation: fadeUp 1.4s ease forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0);    }
}

/* ── Logo ────────────────────────────────── */
.logo-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.logo-img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(201,145,58,.75);
    display: block;
    position: relative;
    z-index: 1;
    box-shadow:
        0 0  40px rgba(201,145,58,.20),
        0 0  80px rgba(201,145,58,.08);
}

/* ── Cross Divider ───────────────────────── */
.cross-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem auto;
}

.cross-divider::before,
.cross-divider::after {
    content: '';
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.cross-divider .cross-icon {
    color: var(--gold);
    font-size: 1.4rem;
    line-height: 1;
}

/* ── Typography ──────────────────────────── */
.org-name {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(1.4rem, 4vw, 2.2rem);
    color: var(--gold-light);
    letter-spacing: .06em;
    line-height: 1.3;
    text-shadow: 0 0 40px rgba(201,168,76,.40);
}

.org-sub {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: .85rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: rgba(245,234,216,.60);
    margin-top: .4rem;
}

.coming-soon-label {
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: .75rem;
    letter-spacing: .5em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 3rem;
    margin-bottom: .8rem;
}

.headline {
    font-family: 'Cinzel Decorative', serif;
    font-size: clamp(2rem, 8vw, 4.5rem);
    line-height: 1.1;
    color: var(--white);
    text-shadow:
        0 0  80px rgba(201,168,76,.30),
        0 2px  4px rgba(0,0,0,.50);
}

.verse {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: rgba(245,234,216,.70);
    max-width: 480px;
    margin: 1.5rem auto;
    line-height: 1.7;
}

/* ── Social Icons ────────────────────────── */
.social-row {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    margin-top: 2.8rem;
}

.social-link {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201,145,58,.50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    text-decoration: none;
    transition: all .35s ease;
    background: none;
}

.social-link svg { display: block; }

.social-link:hover {
    border-color: var(--gold-light);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(201,145,58,.25);
    background: rgba(201,145,58,.08);
}

/* ── Footer ──────────────────────────────── */
.footer-note {
    margin-top: 3rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 200;
    font-size: .7rem;
    letter-spacing: .2em;
    color: rgba(245,234,216,.25);
    text-transform: uppercase;
}