/* ===================================================
   GUNPOWDER AMBERLEY — Coming Soon
   Premium dark & warm aesthetic
   =================================================== */

/* --- Design Tokens --- */
:root {
    --clr-bg: #0a0807;
    --clr-bg-warm: #110e0b;
    --clr-surface: #1a1613;
    --clr-gold: #c8a45e;
    --clr-gold-light: #e2c983;
    --clr-gold-dark: #9e7d3a;
    --clr-amber: #d4873e;
    --clr-cream: #f5efe3;
    --clr-cream-muted: #beb5a5;
    --clr-text: #e8e0d4;
    --clr-text-muted: #8a7e6f;

    --ff-display: 'Playfair Display', 'Georgia', serif;
    --ff-body: 'Inter', -apple-system, sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--ff-body);
    background: var(--clr-bg);
    color: var(--clr-text);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* --- Background Image & Overlays --- */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: url('images/hero-bg.png') center/cover no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.hero-overlay {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200, 164, 94, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 135, 62, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(10, 8, 7, 0.7) 0%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

/* --- Floating Particles --- */
.particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    color: var(--clr-gold);
    animation: particleFloat linear infinite;
    will-change: transform, opacity;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.2;
    }
    50% {
        transform: translateY(-60px) rotate(180deg);
        opacity: 0.12;
    }
    90% {
        opacity: 0.05;
    }
}

/* --- Main Layout --- */
.coming-soon {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
}

.content-wrapper {
    max-width: 600px;
    width: 100%;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Brand --- */
.brand {
    margin-bottom: 2.5rem;
}

.brand-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    color: var(--clr-gold);
    animation: subtlePulse 4s ease-in-out infinite;
}

.brand-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes subtlePulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.03);
        opacity: 1;
    }
}

.brand-name {
    font-family: var(--ff-display);
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    letter-spacing: 0.35em;
    color: var(--clr-cream);
    line-height: 1.1;
    text-shadow: 0 0 60px rgba(200, 164, 94, 0.15);
}

.brand-tagline {
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--clr-gold);
    margin-top: 0.6rem;
}

/* --- Divider --- */
.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.divider::before,
.divider::after {
    content: '';
    height: 1px;
    width: 60px;
    background: linear-gradient(
        to right,
        transparent,
        var(--clr-gold-dark),
        transparent
    );
}

.divider-spice {
    color: var(--clr-gold);
    font-size: 0.75rem;
    opacity: 0.7;
}

/* --- Message --- */
.message {
    margin-bottom: 2.5rem;
}

.headline {
    font-family: var(--ff-display);
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--clr-gold-light);
    letter-spacing: 0.08em;
    margin-bottom: 1.2rem;
}

.subtext {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--clr-cream-muted);
    max-width: 480px;
    margin: 0 auto;
}

.subtext strong {
    color: var(--clr-cream);
    font-weight: 500;
}

/* --- Email Signup --- */
.signup {
    margin-bottom: 3rem;
}

.input-group {
    display: flex;
    gap: 0;
    max-width: 440px;
    margin: 0 auto 0.8rem;
    border: 1px solid rgba(200, 164, 94, 0.2);
    border-radius: 4px;
    overflow: hidden;
    background: rgba(26, 22, 19, 0.6);
    backdrop-filter: blur(10px);
    transition: border-color var(--transition);
}

.input-group:focus-within {
    border-color: var(--clr-gold);
    box-shadow: 0 0 20px rgba(200, 164, 94, 0.08);
}

.input-group input {
    flex: 1;
    padding: 0.95rem 1.2rem;
    background: transparent;
    border: none;
    outline: none;
    color: var(--clr-cream);
    font-family: var(--ff-body);
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.input-group input::placeholder {
    color: var(--clr-text-muted);
}

.input-group button {
    padding: 0.95rem 1.5rem;
    background: linear-gradient(135deg, var(--clr-gold-dark), var(--clr-gold));
    border: none;
    color: var(--clr-bg);
    font-family: var(--ff-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition);
    white-space: nowrap;
}

.input-group button:hover {
    background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
}

.input-group button:active {
    transform: scale(0.97);
}

.btn-arrow {
    transition: transform var(--transition);
}

.input-group button:hover .btn-arrow {
    transform: translateX(3px);
}

.signup-note {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    letter-spacing: 0.04em;
}

/* --- Success State --- */
.signup-success {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1rem;
    animation: fadeInUp 0.5s ease-out;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--clr-gold);
    color: var(--clr-bg);
    font-size: 0.85rem;
    font-weight: 700;
}

.signup-success p {
    color: var(--clr-gold-light);
    font-size: 0.95rem;
    font-weight: 400;
}

/* --- Footer --- */
.footer {
    padding-top: 1rem;
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    color: var(--clr-text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
}

.location-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(200, 164, 94, 0.2);
    color: var(--clr-cream-muted);
    transition: all var(--transition);
    text-decoration: none;
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-link:hover {
    color: var(--clr-gold);
    border-color: var(--clr-gold);
    background: rgba(200, 164, 94, 0.06);
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.7rem;
    color: var(--clr-text-muted);
    opacity: 0.5;
    letter-spacing: 0.04em;
}

/* --- Responsive --- */
@media (max-width: 480px) {
    .coming-soon {
        padding: 1.5rem 1rem;
    }

    .brand-icon {
        width: 56px;
        height: 56px;
    }

    .brand-name {
        letter-spacing: 0.2em;
    }

    .input-group {
        flex-direction: column;
        border-radius: 4px;
    }

    .input-group input {
        text-align: center;
        border-bottom: 1px solid rgba(200, 164, 94, 0.1);
    }

    .input-group button {
        justify-content: center;
        padding: 0.85rem;
    }

    .divider::before,
    .divider::after {
        width: 40px;
    }
}
