:root {
    /* Luxury Palette */
    --bg-color: #1a1716;
    /* Very dark espresso */
    --text-primary: #fdfcf8;
    /* Creamy white */
    --text-secondary: #dcd7cc;
    /* Warm grey/beige */
    --accent-gold: #c6a87c;
    /* Muted Gold/Bronze */

    /* Fonts */
    --font-heading: 'Playfair Display', serif;
    /* The star of the show */
    --font-body: 'Outfit', sans-serif;

    /* Layout */
    --glass-bg: rgba(20, 18, 17, 0.6);
    --glass-border: rgba(198, 168, 124, 0.2);
    /* Subtle gold border */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

/* Background Handling */
/* Background Handling */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('furniture_workshop.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
    animation: slowZoom 25s infinite alternate ease-in-out;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient adapted for the new warm/cozy image */
    background: linear-gradient(90deg,
            rgba(26, 23, 22, 0.85) 0%,
            rgba(26, 23, 22, 0.6) 50%,
            rgba(26, 23, 22, 0.2) 100%);
    z-index: -1;
}

.container {
    width: 100%;
    max-width: 1400px;
    /* Wider layout for luxury feel */
    margin: 0 auto;
    padding: 3rem 4rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 48px;
    /* Adjusted to be clearly visible but not overwhelming */
    width: auto;
    object-fit: contain;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.content {
    max-width: 650px;
}

.status-badge {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--accent-gold);
    background: rgba(10, 8, 7, 0.7);
    /* Dark semi-transparent background */
    border: 1px solid rgba(198, 168, 124, 0.5);
    /* Subtle gold border */
    margin-bottom: 2rem;
    font-weight: 600;
    border-radius: 4px;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* Deep shadow */
    position: relative;
    overflow: hidden;
}

/* Subtle sheen animation instead of pulse */
.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

h1 {
    font-family: var(--font-heading);
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 2rem;
    font-weight: 400;
}

.highlight {
    color: var(--accent-gold);
    font-style: italic;
    font-weight: 400;
}

.description {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
    max-width: 500px;
    font-weight: 300;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.5rem;
}

/* Newsletter Form */
.newsletter-form {
    margin-bottom: 4rem;
}

.input-group {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    max-width: 500px;
}

input[type="email"] {
    flex: 1;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 0;
    color: white;
    font-size: 1.1rem;
    font-family: var(--font-body);
    outline: none;
    transition: 0.3s;
}

input[type="email"]:focus {
    border-color: var(--accent-gold);
}

input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

button {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    font-size: 0.9rem;
    cursor: pointer;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: 0.4s ease;
    min-width: 160px;
}

button:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: #1a1716;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 2rem;
}

.social-icon {
    color: var(--text-secondary);
    font-size: 1.1rem;
    transition: 0.3s;
}

.social-icon:hover {
    color: var(--accent-gold);
    transform: translateY(-2px);
}

/* Footer */
footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Animations */
.content>* {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease-out forwards;
}

.content h1 {
    animation-delay: 0.2s;
}

.content .description {
    animation-delay: 0.4s;
}

.content .newsletter-form {
    animation-delay: 0.6s;
}

.content .social-links {
    animation-delay: 0.8s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        padding: 2rem;
    }

    .overlay {
        background: linear-gradient(to bottom,
                rgba(15, 12, 11, 0.3) 0%,
                rgba(15, 12, 11, 0.8) 50%,
                rgba(15, 12, 11, 0.95) 100%);
    }

    main {
        align-items: flex-end;
        /* Push text to bottom on mobile so image shows on top */
    }

    h1 {
        font-size: 3.5rem;
    }

    .content {
        width: 100%;
    }

    .status-badge {
        margin-top: 50vh;
        /* Push content down to reveal image */
    }
}

@media (max-width: 600px) {
    h1 {
        font-size: 3rem;
    }

    .input-group {
        flex-direction: column;
        align-items: stretch;
    }

    button {
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
        /* Make it easier to tap */
    }

    .description {
        border-left: none;
        padding-left: 0;
    }
}