/* General Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Replace with a matching font if desired */
}

body {
    background: url('bg2 landing page.png') no-repeat center center fixed;
    background-size: cover;
    color: white;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(121, 60, 245, 0.46) 0%, rgba(183, 31, 237, 0.54) 100%); /* The gradient from the image */
    z-index: 1;
}

.main-content {
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 20px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    width: 100%;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2em;
    font-weight: bold;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 1.2em;
    margin-left: 15px;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 0.7;
}

/* Hero Section Styles */
.hero {
    margin-top: 10vh; /* Adjust vertical position as needed */
    margin-bottom: 50px;
}

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 2.5em;
    line-height: 1.3;
    font-weight: normal;
    margin-bottom: 30px;
}

.bold-text {
    font-weight: bold;
}

/* Subscription Form Styles */
.subscription-form {
    display: flex;
    width: 100%;
    max-width: 600px;
    margin: 0 auto 10px;
    border-radius: 5px;
    overflow: hidden;
}

.subscription-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 1em;
}

.subscription-form button {
    background-color: #8cc63f; /* The green color */
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1em;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.subscription-form button:hover {
    background-color: #7ab536;
}

.spam-text {
    font-size: 0.85em;
    opacity: 0.8;
}

/* Countdown Styles */
.countdown {
    margin-top: 50px;
}

.countdown-items {
    display: flex;
    justify-content: center;
    gap: 30px; /* Space between the circular items */
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.countdown-item {
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.countdown-item .number {
    font-size: 2.5em;
    font-weight: bold;
}

.countdown-item .label {
    font-size: 0.85em;
    margin-top: 5px;
    text-transform: uppercase;
}

/* Media Queries for Responsiveness */

/* Tablets */
@media (max-width: 768px) {
    .logo {
        font-size: 1.8em;
    }

    h1 {
        font-size: 2em;
    }

    .subscription-form {
        flex-direction: column; /* Stack input and button vertically */
        border-radius: 5px;
        max-width: 90%;
    }

    .subscription-form input {
        border-radius: 5px 5px 0 0;
    }

    .subscription-form button {
        border-radius: 0 0 5px 5px;
        width: 100%;
    }

    .countdown-items {
        gap: 20px;
    }

    .countdown-item {
        width: 100px;
        height: 100px;
    }

    .countdown-item .number {
        font-size: 2em;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5em;
    }

    .social-icons a {
        font-size: 1em;
        margin-left: 10px;
    }

    h1 {
        font-size: 1.5em;
    }

    .countdown-items {
        gap: 15px;
    }

    .countdown-item {
        width: 80px;
        height: 80px;
    }

    .countdown-item .number {
        font-size: 1.5em;
    }

    .countdown-item .label {
        font-size: 0.7em;
    }
}