﻿/* cover.css - Base Premium */

:root {
    --cover-gold: #d6b16d;
    --cover-dark: #2b1722;
}

.welcome-screen {
    position: fixed;
    inset: 0;
    overflow: hidden;
    background: linear-gradient(180deg,#2d1823,#472434,#1f1319);
}

.welcome-screen__picture, .welcome-screen__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.welcome-screen__image {
    object-fit: cover;
    animation: coverZoom 18s ease-in-out infinite alternate;
}

.welcome-screen__veil {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,rgba(255,255,255,.08),rgba(0,0,0,.55));
}

.welcome-screen__content {
    position: relative;
    z-index: 5;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

    .welcome-screen__content::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 15%;
        transform: translateX(-50%);
        width: min(430px,88vw);
        aspect-ratio: 1;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(255,235,188,.25),transparent 70%);
        filter: blur(12px);
        z-index: -1;
    }

.welcome-screen h1 {
    color: #f3d8a1;
    text-shadow: 0 6px 25px rgba(0,0,0,.45);
}

.eyebrow, .welcome-date, .welcome-phrase {
    color: #f8e8c8;
}

.gold-button--hero {
    background: linear-gradient(180deg,#f7e4b5,#d3a75d);
    color: #3d2412;
    box-shadow: 0 10px 35px rgba(0,0,0,.35);
}

@keyframes coverZoom {
    from {
        transform: scale(1)
    }

    to {
        transform: scale(1.05)
    }
}
