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

/* Body and Overall Page Style */
body {
    font-family: Monstserrat, sans-serif;
    color: #ffffff; /* White text */
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Landing Page Section with Background Image */
.landing-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px;
    
    /* Add the background image */
    background-image: url('landing-bg.jpg'); /* Update this path to your image */
    background-size: cover; /* Ensure the image covers the whole section */
    background-position: center center; /* Center the image */
    background-repeat: no-repeat; /* Prevent repeating the image */
}

/* Content Wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: dark overlay for readability */
    padding: 30px;
    border-radius: 10px;
}

/* Intro Section */
.intro h1 {
    font-size: 3rem;
    color: #4A90E2; /* Blue */
    margin-bottom: 10px;
}

.intro .subheadline {
    font-size: 1.5rem;
    color: #fff;
}

/* CTA Section */
.cta {
    margin-top: 30px;
}

.cta p {
    font-size: 1.2rem;
    color: #D3D3D3;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #4A90E2; /* Blue */
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #357ABD; /* Darker blue */
}

.cta-description {
    margin-top: 20px;
    font-size: 1rem;
    color: #D3D3D3;
}

/* Countdown Section */
.countdown {
    margin-top: 40px;
}

.countdown p {
    font-size: 1.5rem;
    color: #fff;
}

#countdown-timer {
    font-size: 2.5rem;
    font-weight: bold;
    color: #4A90E2;
    margin-top: 10px;
}

/* Privacy Section */
.privacy {
    margin-top: 40px;
    font-size: 1rem;
    color: #D3D3D3;
}

/* Social Section */
.social {
    margin-top: 40px;
}

.social p {
    font-size: 1rem;
    color: #D3D3D3;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #4A90E2;
}

/* Footer */
footer {
    margin-top: 50px;
    text-align: center;
    font-size: 0.8rem;
    color: #D3D3D3;
}

footer .footer-links a {
    color: #D3D3D3;
    text-decoration: none;
}

footer .footer-links a:hover {
    color: #4A90E2;
    text-decoration: underline;
}

/* Logo Styling */
.logo {
    max-width: 450px; /* Control the logo size */
    margin-bottom: 20px; /* Add spacing below the logo */
}

/* Media Queries for Responsive Design */

/* Media Queries for Smaller Screens (Mobile & Tablets) */

/* For screens up to 768px width (Tablets and below) */
@media (max-width: 768px) {
    /* Adjust padding and layout for smaller screens */
    .landing-page {
        padding: 30px 15px; /* Reduce padding to fit content */
    }

    .content-wrapper {
        padding: 20px; /* Reduce padding within the content wrapper */
    }

    .intro h1 {
        font-size: 2.5rem; /* Reduce font size for headings */
    }

    .intro .subheadline {
        font-size: 1.3rem; /* Smaller subheadline font */
    }

    /* Adjust CTA (Call to Action) section */
    .cta p {
        font-size: 1rem; /* Smaller font size for the CTA text */
    }

    .cta-button {
        padding: 12px 24px; /* Smaller button size */
        font-size: 1rem; /* Adjust font size inside the button */
    }

    .cta-description {
        font-size: 0.9rem; /* Smaller text for CTA description */
    }

    /* Adjust Countdown Section */
    .countdown p {
        font-size: 1.2rem; /* Smaller text for countdown title */
    }

    #countdown-timer {
        font-size: 2rem; /* Reduce size of countdown timer */
    }

    /* Privacy section font size */
    .privacy {
        font-size: 0.9rem; /* Smaller font for privacy text */
    }

    /* Social icons and text adjustments */
    .social p {
        font-size: 1rem; /* Smaller text for social section */
    }

    .social-icons a {
        font-size: 0.9rem; /* Smaller social icons font */
    }

    footer {
        font-size: 0.7rem; /* Smaller footer text for mobile */
    }

    .footer-links a {
        font-size: 0.8rem; /* Slightly smaller links in footer */
    }

    /* Logo adjustments for smaller screens */
    .logo {
        max-width: 120px; /* Slightly smaller logo for smaller screens */
    }
}

/* For very small screens (less than 480px, typical mobile phones) */
@media (max-width: 480px) {
    .landing-page {
        padding: 20px 10px; /* More compact padding */
    }

    .content-wrapper {
        padding: 15px; /* Compact content wrapper */
    }

    .intro h1 {
        font-size: 2rem; /* Further reduce heading font size */
    }

    .intro .subheadline {
        font-size: 1.2rem; /* Further reduce subheadline size */
    }

    .cta p {
        font-size: 0.9rem; /* Reduce CTA description font size */
    }

    .cta-button {
        padding: 10px 20px; /* Smaller button padding */
        font-size: 0.9rem; /* Adjust button font size */
    }

    .cta-description {
        font-size: 0.8rem; /* Adjust CTA description font size */
    }

    .countdown p {
        font-size: 1rem; /* Adjust countdown title font */
    }

    #countdown-timer {
        font-size: 1.8rem; /* Smaller countdown timer */
    }

    /* Social and Footer adjustments */
    .social p {
        font-size: 0.9rem; /* Smaller social text */
    }

    .social-icons a {
        font-size: 0.8rem; /* Adjust font size for social icons */
    }

    footer {
        font-size: 0.6rem; /* Even smaller footer text */
    }

    .footer-links a {
        font-size: 0.7rem; /* Smaller footer links */
    }

    .logo {
        max-width: 100px; /* Make logo even smaller */
    }
}

/* Language Toggle Button Styles */
.language-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 100;
}

.language-toggle button {
    background: transparent;
    border: none;
    cursor: pointer;
    margin-left: 10px;
}

.language-toggle button img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.language-toggle button:hover img {
    opacity: 0.8; /* Slight opacity change on hover */
}


