/* styles.css */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff; /* Changed from black to white */
    color: #333;
    line-height: 1.6;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: #fff; /* Changed from black to white */
    border-bottom: 1px solid #ddd;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #4169E1; /* Royal blue */
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.navbar ul li a {
    text-decoration: none;
    color: #333; /* Text color for links */
    font-weight: 700;
    font-size: 1rem;
}

.navbar ul li a:hover {
    color: #4169E1; /* Royal blue on hover */
}

.navbar ul li a.download-link {
    background: #4169E1; /* Royal blue */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

.navbar ul li a.download-link:hover {
    background: #27408B; /* Darker royal blue */
    color: white;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 6rem;
    background: linear-gradient(90deg, #fff, #f0f4ff); /* White to light blue gradient */
    min-height: 80vh;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #333;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 1.5rem;
}

.timer {
    display: inline-block;
    background: #4169E1; /* Royal blue */
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.cta-button {
    background: #4169E1; /* Royal blue */
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
}

.cta-button:hover {
    background: #27408B; /* Darker royal blue */
}

.secondary-button {
    background: transparent;
    color: #4169E1; /* Royal blue */
    border: 2px solid #4169E1;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
}

.secondary-button:hover {
    background: #4169E1;
    color: white;
}

.hero-image img {
    max-width: 400px;
    height: auto;
    border-radius: 20px;
}

.fine-print {
    text-align: center;
    font-size: 0.8rem;
    color: #666;
    padding: 1rem;
}

/* Signup Page Styles */
.signup-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(90deg, #fff, #f0f4ff);
    min-height: 80vh;
}

.signup-content {
    max-width: 400px;
    text-align: center;
}

.signup-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #333;
    margin: 0 0 1rem;
}

.signup-content p {
    font-size: 1.1rem;
    font-weight: 700;
    color: #666;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    box-sizing: border-box;
}

.form-group input:focus {
    border-color: #4169E1;
    outline: none;
}