/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&family=Roboto:wght@400&display=swap');

/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #2193b0, #6dd5ed);
    color: #333;
    text-align: center;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background-color: #003366;
    color: white;
}

nav .logo {
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
}

nav .nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

nav .nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
}

nav .btn {
    padding: 0.7rem 1.5rem;
    background-color: #ff5e57;
    color: white;
    border: none;
    border-radius: 25px;
    transition: background 0.3s ease;
}

nav .btn:hover {
    background-color: #e94e48;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, #1c92d2, #f2fcfe);
}

.hero-content h1 {
    font-size: 4rem;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-content .btn {
    background-color: #ff5e57;
    padding: 0.9rem 2rem;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.hero-content .btn:hover {
    transform: scale(1.1);
}

/* Countdown Timer */
#countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-family: 'Montserrat', sans-serif;
}

#countdown div {
    background-color: white;
    padding: 1rem;
    border-radius: 10px;
    width: 100px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #003366;
}

#countdown div span {
    display: block;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: #333;
}

/* About, Schedule, Prizes, FAQ Sections */
section {
    padding: 4rem 2rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #003366;
}

p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.feature, .schedule-item, .prize-card, .faq-item {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.prize-card {
    border: 2px solid #ff5e57;
}

.btn {
    background-color: #ff5e57;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.btn:hover {
    background-color: #e94e48;
    transition: 0.3s;
}

/* Footer */
footer {
    background-color: #003366;
    padding: 1.5rem 0;
    color: white;
}
