/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4A2E2B;    /* Deep earthy terracotta/brown */
    --accent-color: #D4AF37;     /* Elegant gold/ochre */
    --text-main: #2D2D2D;
    --text-muted: #666666;
    --bg-light: #FDFBF7;         /* Soft raw cotton/off-white */
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden;
    padding: 20px;
}

/* Subtle fabric texture placeholder or rich background accent */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08), transparent 40%),
                radial-gradient(circle at bottom left, rgba(74, 46, 43, 0.05), transparent 50%);
    z-index: 0;
}

.container {
    position: relative;
    z-index: 1;
    max-width: 750px;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
}

/* Logo */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Main Content */
.tagline {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 600;
}

.description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 45px auto;
}

/* Countdown */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.countdown-box {
    background: #ffffff;
    border: 1px solid rgba(74, 46, 43, 0.08);
    box-shadow: 0 10px 30px rgba(74, 46, 43, 0.03);
    border-radius: 8px;
    min-width: 90px;
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-box .number {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.countdown-box .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Form Styles */
.notify-text {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

.notify-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background: #ffffff;
    border: 1px solid rgba(74, 46, 43, 0.15);
}

.notify-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
}

.notify-form button {
    background-color: var(--primary-color);
    color: #ffffff;
    border: none;
    padding: 0 30px;
    font-family: inherit;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.notify-form button:hover {
    background-color: #35201E;
}

.form-message {
    margin-top: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s;
}

/* Footer */
footer {
    margin-top: 60px;
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .countdown-container {
        gap: 10px;
    }
    .countdown-box {
        min-width: 75px;
        padding: 10px 5px;
    }
    .countdown-box .number {
        font-size: 1.7rem;
    }
    .notify-form {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        border: none;
        gap: 10px;
    }
    .notify-form input {
        border-radius: 30px;
        border: 1px solid rgba(74, 46, 43, 0.15);
        text-align: center;
    }
    .notify-form button {
        border-radius: 30px;
        padding: 15px;
    }
}