/* ==========================================================================
   Leather Unbound - Coming Soon Page Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   CSS Variables / Brand Colors
   -------------------------------------------------------------------------- */
:root {
    --saddle-brown: #8B4513;
    --cognac: #9A5B2F;
    --aged-brass: #B8860B;
    --parchment: #F5F0E6;
    --cream: #FAF8F3;
    --deep-navy: #1C2541;
    --dark-leather: #3D2914;
    --charcoal: #2D2D2D;
    --black: #1a1a1a;
}

/* --------------------------------------------------------------------------
   Reset & Base
   -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Libre Baskerville', Georgia, serif;
    background: var(--dark-leather);
    color: var(--parchment);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Background Textures
   -------------------------------------------------------------------------- */

/* Leather texture overlay */
body::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)' opacity='0.12'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Subtle vignette */
body::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    pointer-events: none;
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */
.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 25px;
    max-width: 600px;
    width: 100%;
}

/* --------------------------------------------------------------------------
   Logo Badge
   -------------------------------------------------------------------------- */
.badge {
    border: 3px solid var(--parchment);
    padding: 25px 45px;
    display: inline-block;
    position: relative;
    margin-bottom: 50px;
    animation: fadeInDown 1s ease-out;
}

.badge::before,
.badge::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    height: 1px;
    background: var(--parchment);
}

.badge::before { top: 8px; }
.badge::after { bottom: 8px; }

.badge .brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--parchment);
    letter-spacing: 3px;
    line-height: 1.1;
}

.badge .brand-name span {
    display: block;
    font-size: 1.6rem;
    letter-spacing: 6px;
}

.badge .tagline {
    font-family: 'Libre Baskerville', serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--aged-brass);
    margin-top: 12px;
}

/* --------------------------------------------------------------------------
   Coming Soon Label
   -------------------------------------------------------------------------- */
.coming-soon {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--aged-brass);
    margin-bottom: 25px;
    animation: fadeIn 1s ease-out 0.3s both;
}

/* --------------------------------------------------------------------------
   Statement
   -------------------------------------------------------------------------- */
.statement {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 400;
    color: var(--parchment);
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.9;
    animation: fadeIn 1s ease-out 0.5s both;
}

/* --------------------------------------------------------------------------
   Follow Prompt
   -------------------------------------------------------------------------- */
.signup {
    animation: fadeIn 1s ease-out 0.7s both;
}

.signup p {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.9rem;
    color: rgba(245, 240, 230, 0.7);
    margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   Social Links
   -------------------------------------------------------------------------- */
.social {
    margin-top: 50px;
    animation: fadeIn 1s ease-out 0.9s both;
}

.social a {
    font-family: 'Source Sans 3', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--aged-brass);
    margin: 0 15px;
    padding: 12px 30px;
    border: 1px solid var(--aged-brass);
    transition: all 0.3s ease;
}

.social a:hover {
    background: var(--aged-brass);
    color: var(--dark-leather);
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    position: absolute;
    bottom: 25px;
    left: 0;
    right: 0;
    text-align: center;
    font-family: 'Source Sans 3', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: rgba(245, 240, 230, 0.3);
    z-index: 1;
}

/* --------------------------------------------------------------------------
   Animations
   -------------------------------------------------------------------------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 500px) {
    .badge {
        padding: 20px 30px;
    }

    .badge .brand-name {
        font-size: 1.5rem;
    }

    .badge .brand-name span {
        font-size: 1.2rem;
    }

    .statement {
        font-size: 1.2rem;
    }

    .social a {
        display: block;
        margin: 10px 0;
    }
}