/* =======================================================
   PREMIUM MINIMALIST THEME SETTINGS
   ======================================================= */
:root {
    --brand-yellow: #f6c429;
    --brand-yellow-dark: #e5b323;
    --brand-navy: #1e2c3a;
    --brand-navy-light: #2c3e50;
    
    --bg-color: #ffffff; /* Pure white mandatory */
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Very subtle ambient gradients to give the sterile white some extremely faint luxury glow */
.ambient {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
    opacity: 0.15;
}

.ambient-1 {
    width: 60vh;
    height: 60vh;
    background: var(--brand-yellow);
    top: -10vh;
    right: -10vw;
}

.ambient-2 {
    width: 70vh;
    height: 70vh;
    background: var(--brand-navy);
    bottom: -15vh;
    left: -15vw;
}

.premium-wrapper {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 800px;
    padding: 40px 20px;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* =======================================================
   ANIMATIONS & TIMINGS
   ======================================================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* =======================================================
   HEADER & LOGOS
   ======================================================= */
.header-logo {
    margin-bottom: 50px;
}

.top-icon {
    width: 100px;
    height: auto;
    mix-blend-mode: multiply; /* Keeps edges perfectly smooth */
}

footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.04);
    width: 100%;
}

.footer-logo {
    width: 220px;
    height: auto;
    mix-blend-mode: multiply;
}

/* =======================================================
   TYPOGRAPHY
   ======================================================= */
.hero-section {
    margin-bottom: 60px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.1;
    color: var(--brand-navy);
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}

.highlight {
    color: var(--brand-yellow-dark);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =======================================================
   ELEGANT COUNTDOWN
   ======================================================= */
.countdown-section {
    margin-bottom: 50px;
}

.elegant-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.count-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
}

.count-num {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--brand-navy);
    line-height: 1;
}

.count-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 10px;
}

.count-sep {
    font-size: 3rem;
    font-weight: 300;
    color: var(--border-color);
    line-height: 1;
    transform: translateY(-15px); /* Align with numbers visually */
}

/* =======================================================
   ACTION & FORM SECTION
   ======================================================= */
.action-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.notify-form {
    width: 100%;
    max-width: 480px;
    margin-bottom: 25px;
}

.input-group {
    display: flex;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 6px;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: var(--brand-yellow);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(246, 196, 41, 0.1);
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 20px;
    font-size: 1rem;
    color: var(--text-main);
    outline: none;
}

.input-group input::placeholder {
    color: #94a3b8;
}

.submit-btn {
    background: var(--brand-yellow);
    color: var(--brand-navy);
    border: none;
    padding: 0 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: var(--brand-yellow-dark);
    transform: scale(1.02);
}

.notification-message {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
}
.notification-message.success { color: #10b981; }
.notification-message.error { color: #ef4444; }

.contact-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.contact-info a {
    color: var(--brand-yellow-dark);
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-block;
    margin-top: 5px;
}

.contact-info a:hover {
    color: var(--brand-navy);
}

/* =======================================================
   RESPONSIVE DESIGN
   ======================================================= */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; letter-spacing: -1px; }
    .hero-subtitle { font-size: 1rem; }
    
    .elegant-countdown { gap: 15px; }
    .count-num { font-size: 2.5rem; }
    .count-sep { font-size: 2rem; transform: translateY(-10px); }
    .count-label { font-size: 0.65rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.5rem; }
    
    .input-group { flex-direction: column; background: transparent; border: none; padding: 0; }
    .input-group input { 
        background: #f8fafc; 
        border: 1px solid var(--border-color); 
        border-radius: 12px; 
        margin-bottom: 10px;
    }
    .submit-btn { 
        padding: 16px; 
        justify-content: center;
    }
    .input-group:focus-within { box-shadow: none; border-color: transparent; }
}
