/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --bg-color: #fcfbf9; /* creamy off-white */
    --text-color: #1a1a1a;
    --accent-color: #555;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
}

body {
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--text-color);
    height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Noise overlay for texture */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.container {
    padding: 2rem;
    max-width: 800px;
    width: 100%;
    z-index: 10;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Logo Section */
.logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--text-color);
    text-transform: uppercase;
    margin-left: 0.2em; /* Optical centering for letter spacing */
}

/* The subtle animated line */
.separator-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--text-color), transparent);
    animation: stretchLine 2s ease-in-out infinite alternate;
    opacity: 0.6;
}

@keyframes stretchLine {
    0% { height: 40px; opacity: 0.4; }
    100% { height: 80px; opacity: 0.8; }
}

/* Content */
.tagline {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-transform: none;
}

.message-block {
    margin-top: 1rem;
}

.status-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.status-desc {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* Interactive Elements */
.interactive-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.countdown-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-family: var(--font-heading);
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.time-unit span {
    font-size: 2rem;
    font-weight: 400;
}

.time-unit label {
    font-family: var(--font-body);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 5px;
    color: var(--accent-color);
}

.divider {
    font-size: 1.5rem;
    padding-bottom: 1rem;
    color: var(--accent-color);
}

.icons-row {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1rem;
    opacity: 0.5;
    transition: opacity 0.5s ease;
}

.icons-row:hover {
    opacity: 1;
}

.icon-tailor {
    width: 24px;
    height: 24px;
    stroke-width: 1px;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.icon-tailor:hover {
    transform: scale(1.1);
}

/* Form */
.notify-section p {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #333;
}

.input-group {
    display: flex;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    max-width: 400px;
    margin: 0 auto;
    transition: border-color 0.3s;
}

.input-group:focus-within {
    border-color: var(--text-color);
}

.minimal-input {
    border: none;
    background: transparent;
    padding: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    flex-grow: 1;
    outline: none;
    color: var(--text-color);
}

.minimal-btn {
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    color: var(--text-color);
    transition: letter-spacing 0.3s;
}

.minimal-btn:hover {
    letter-spacing: 0.2em;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 2rem;
    font-size: 0.75rem;
    color: #888;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-placeholder {
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: color 0.3s;
}

.social-placeholder:hover {
    color: var(--text-color);
}

/* Responsive */
@media (max-width: 768px) {
    .brand-name {
        font-size: 3rem;
    }
    
    .container {
        padding: 1.5rem;
    }
    
    .countdown-container {
        gap: 1rem;
    }
    
    .time-unit span {
        font-size: 1.5rem;
    }
}
