/* light_mode.css */

/* Global Styling for Light Mode */
body {
    background: #ffffff; /* Light background */
    color: #000000; /* Black text */
}

/* Navigation Bar */
.main-nav {
    background: #ffffff; /* Light navigation background */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.1); /* Soft border for visibility */
}

.main-nav:hover {
    background: #ffffff; /* Light navigation background */
}

.nav-link {
    color: #000000;
    background: rgba(0, 0, 0, 0.1);
}

.nav-link:hover {
    color: #ffffff;
    background: #007bff; /* Highlighted blue color */
}

/* Buttons */
.cta-button {
    background: #007bff; /* Blue button background */
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
}

.cta-button:hover {
    background: #0056b3;
    box-shadow: 0 10px 30px #0056b3;
}

/* Futuristic Section */
.futuristic-section {
    background: linear-gradient(120deg, #ffffff, #f4f4f4);
}

.futuristic-title {
    -webkit-text-fill-color: transparent;
    background: linear-gradient(to top, #fff, #fff);
    text-shadow: black;
    color: rgba(0, 0, 0, 1.8);
}

.futuristic-description {
    color: rgba(0, 0, 0, 0.8);
    text-shadow: none;
}

/* How It Works Section */
.how-it-works h2 {
    background: linear-gradient(to left, #333333, #555555);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.how-it-works ul li {
    color: rgba(0, 0, 0, 0.8);
}

.how-it-works ul li::before {
    color: #007bff;
}

.futuristic-section .how-it-works ul li .emphasized {
    color: #007bff;  
    font-size: 1.2em; 
    font-weight: bold; 
    padding: 2px 5px; 
    border-radius: 3px; 
}


/* Floating Elements */
.floating-element {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}

.floating-element:nth-child(even) {
    background: radial-gradient(circle, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0));
}

/* Hamburger Menu */
.hamburger span {
    background: #000000; /* Black hamburger lines */
}

.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3) {
    background: #007bff;
}

/* Footer */
.footer {
    background-color: #ffffff; /* Light footer background */
    color: #000000; /* Black text */
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    box-shadow: 0 -8px 15px rgba(0, 0, 0, 0.1);
}

.footer a {
    color: #007bff; /* Link color */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #0056b3;
}

.footer p {
    margin: 10px 0;
}

/* Responsive Design Adjustments */
@media (max-width: 768px) {
    .main-nav ul {
        background: #ffffff; /* Light navigation background */
        color: #000000;
    }

    .nav-link {
        background: rgba(0, 0, 0, 0.1);
    }

    .nav-link:hover {
        background: #007bff;
    }

    .cta-button {
        width: 100%;
        padding: 12px;
        font-size: 18px;
    }

    .how-it-works ul {
        padding-left: 20px;
        text-align: left;
    }

    .footer {
        font-size: 16px;
        padding: 30px 15px;
    }
}
