/*
Theme Name: Holding Page
Description: Temporary holding page for maxdana.com
Author: Max Dana Studio
Version: 1.0
*/

/* ==================== MAX DANA — HOLDING PAGE ==================== */

* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background: #0a0a0a;
    color: #f2f0ea;
    font-family: 'Urbanist', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Soft, slowly drifting background glow */
.bg {
    position: fixed;
    inset: -10%;
    background:
        radial-gradient(circle at 20% 25%, rgba(227, 196, 95, 0.10), transparent 45%),
        radial-gradient(circle at 80% 75%, rgba(227, 196, 95, 0.08), transparent 50%),
        #0a0a0a;
    animation: drift 18s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes drift {
    0%   { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1%, 1%); }
}

.wrap {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    padding: 40px 24px;
}

.logo {
    height: auto;
    width: 180px;
    max-width: 70%;
    margin-bottom: 40px;
    opacity: 0.95;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: #e3c45f;
    font-weight: 600;
    margin: 0 0 18px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.3;
    color: #fff;
    margin: 0 0 24px;
}

.lead {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cfcac0;
    margin: 0 0 32px;
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.divider span {
    width: 60px;
    height: 1px;
    background: #e3c45f;
    opacity: 0.6;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #e3c45f;
    font-size: 1rem;
    margin: 0 0 36px;
}

.social {
    font-size: 0.9rem;
}

.social a {
    color: #cfcac0;
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
}

.social a:hover {
    color: #e3c45f;
}

.social-sep {
    color: #55524c;
    margin: 0 12px;
}

@media (max-width: 480px) {
    .wrap {
        padding: 30px 20px;
    }
    .logo {
        width: 150px;
        margin-bottom: 32px;
    }
}
