:root {
    --primary-color: #CD5C28;
    /* Rust Orange */
    --primary-dark: #A04015;
    --dark-bg: #121212;
    --text-main: #FFFFFF;
    --text-muted: #E0E0E0;
    --font-sans: 'Montserrat', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

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

/* Light Mode Adjustments */
body {
    font-family: var(--font-sans);
    height: 100vh;
    overflow: hidden;
    color: var(--dark-bg);
    /* Switch to dark text */
}

/* Updated Background */
.coming-soon-container {
    /* Rolled mats background similar to user request */
    background: url('https://images.unsplash.com/photo-1601925260368-ae2f83cf8b7f?q=80&w=2080&auto=format&fit=crop') no-repeat center center/cover;
    height: 100vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 20px;
    text-align: center;
}

/* Lighter Overlay */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.4);
    /* Light overlay */
    backdrop-filter: blur(2px);
    z-index: 1;
}

header,
main,
footer {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
}

/* Header */
header {
    padding-top: 30px;
    display: flex;
    justify-content: center;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    /* Add a subtle drop shadow to make white text pop OR invert if needed. 
       Assuming logo might have white parts, let's add a filter or background. */
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Main Content */
.content-box {
    margin: 20px 0;
    background: rgba(255, 255, 255, 0.2);
    /* Glass box for content */
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
}

.tagline {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    color: var(--primary-dark);
    /* Darker orange for visibility */
    margin-bottom: 15px;
    font-weight: 700;
}

h1 {
    font-family: var(--font-serif);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--dark-bg);
}

.highlight {
    color: var(--primary-color);
    font-style: italic;
}

.description {
    color: #4a4a4a;
    /* Dark grey */
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 400;
    line-height: 1.6;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit .number {
    font-size: 3rem;
    font-family: var(--font-serif);
    font-weight: 500;
    color: var(--dark-bg);
    line-height: 1;
    text-shadow: none;
    /* Removed heavy shadow */
}

.time-unit .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-top: 5px;
}

/* Newsletter */
.newsletter {
    display: flex;
    gap: 10px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

input[type="email"] {
    background: rgba(255, 255, 255, 0.8);
    /* Opaque white */
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--dark-bg);
    font-size: 1rem;
    padding: 15px 25px;
    outline: none;
    font-family: var(--font-sans);
    border-radius: 50px;
    width: 60%;
    /* removed blur as it's opaque now */
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    background: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(205, 92, 40, 0.2);
}

input[type="email"]::placeholder {
    color: #888;
}

button {
    background: var(--primary-color);
    border: none;
    color: white;
    /* Ensure button text is white */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(205, 92, 40, 0.3);
}

button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(205, 92, 40, 0.5);
}

/* Footer */
footer {
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social-links {
    display: flex;
    gap: 25px;
}

.social-icon {
    color: #4a4a4a;
    /* Dark icons */
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

footer p {
    font-size: 0.8rem;
    color: #666;
    /* Medium grey text */
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    .countdown {
        gap: 20px;
    }

    .time-unit .number {
        font-size: 2rem;
    }

    .newsletter {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    input[type="email"] {
        width: 100%;
    }

    button {
        width: 100%;
    }
}