/* ======= Madorna Workshop Theme ======= */
:root {
    --black: #0b0b0b;
    --dark-gray: #1a1a1a;
    --gold: #d4af37;
    --antique-gold: #8a6f24;
    --white: #f2f2f2;
    --muted: #aaa;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: var(--black);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    text-align: center;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212,175,55,0.08), transparent 70%);
    pointer-events: none;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 2rem;
}

.logo {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 0.2rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(212,175,55,0.4);
}

.tagline {
    color: var(--muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.coming-soon h2 {
    font-family: 'Cinzel Decorative', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.coming-soon p {
    font-size: 1rem;
    color: var(--muted);
}

footer {
    margin-top: 3rem;
}

.follow {
    color: var(--antique-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social {
    color: var(--gold);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.social:hover {
    color: var(--white);
    border-bottom: 1px solid var(--gold);
}

@keyframes glow {
    from { text-shadow: 0 0 5px rgba(212,175,55,0.2); }
    to { text-shadow: 0 0 20px rgba(212,175,55,0.6); }
}

