:root {
    --nepal-red: #DC143C;
    --nepal-blue: #003893;
    --sunny-yellow: #FFD700;
    --grass-green: #4CAF50;
    --text-dark: #333;
}

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

body {
    font-family: 'Quicksand', sans-serif;
    background: url('https://images.unsplash.com/photo-1503454537195-1dcabb73ffb9?auto=format&fit=crop&q=80&w=1920') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-dark);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85); /* Makes content readable */
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

/* Header & Logo */
header h1 {
    font-size: 3rem;
    color: var(--nepal-blue);
    font-family: 'Short Stack', cursive;
}

.highlight {
    color: var(--nepal-red);
}

.tagline {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--grass-green);
    margin-bottom: 2rem;
}

/* Hero Section */
.hero h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.time-box {
    background: white;
    padding: 15px;
    border-radius: 15px;
    min-width: 80px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-bottom: 5px solid var(--sunny-yellow);
}

.time-box span {
    font-size: 2rem;
    font-weight: bold;
    display: block;
    color: var(--nepal-red);
}

/* Form */
.signup {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 20px;
    border: 2px dashed var(--nepal-blue);
}

form {
    margin-top: 15px;
}

input[type="email"] {
    padding: 12px 20px;
    width: 60%;
    border: 2px solid #ddd;
    border-radius: 25px;
    outline: none;
}

button {
    padding: 12px 25px;
    background: var(--nepal-red);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: transform 0.2s;
}

button:hover {
    transform: scale(1.05);
    background: var(--nepal-blue);
}

/* Footer */
footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
}

.socials a {
    margin: 0 10px;
    text-decoration: none;
    color: var(--nepal-blue);
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    header h1 { font-size: 2rem; }
    input[type="email"] { width: 100%; margin-bottom: 10px; }
    .countdown { gap: 10px; }
}