@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Open+Sans:wght@400;600&display=swap');

body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: 'Open Sans', sans-serif;
    color: #fff;
    overflow-x: hidden;
}

.container {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.logo {
    font-size: 2em;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
}

.download-btn {
    background-color: #ffa500;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #cc8400;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding-top: 100px;
    padding-bottom: 120px;
    width: 100%;
}

.coming-soon-content h1 {
    font-family: 'Montserrat', serif;
    font-size: 4.5em;
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}

.subheading {
    font-size: 0.9em;
    letter-spacing: 2px;
    margin-bottom: 40px;
    font-weight: 400;
    color: #ffa500;
}

footer {
    width: 100%;
    padding: 20px 5%;
    box-sizing: border-box;
    font-size: 0.9em;
    color: #ccc;
    position: fixed;
    bottom: 0;
    left: 0;
    /* background-color: rgba(0,0,0,0.7); */
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.email-contact {
    text-align: left;
    font-size: 0.95em;
    padding-top: 5px;
}

.follow-us-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.follow-us {
    text-align: right;
}

.follow-us a {
    color: #fff;
    margin: 0 0 0 15px;
    font-size: 1.2em;
    transition: color 0.3s ease;
}

.follow-us a:hover {
    color: #ffa500;
}

.copyright {
    text-align: right;
    width: auto;
    font-size: 0.85em;
    margin-top: 8px;
    color: #ccc;
}

.blue-text {
    color: #4dacff;
}

.description {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1em;
    line-height: 1.6;
    color: #e6e6e6;
}

@media (max-width: 768px) {
    .description {
        font-size: 0.9em;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .description {
        font-size: 0.8em;
    }
}

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

    .download-btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }

    .coming-soon-content h1 {
        font-size: 3em;
    }

    .subheading {
        font-size: 0.8em;
    }

    main {
        padding-top: 80px;
        padding-bottom: 160px;
    }

    footer {
        padding: 15px 5%;
        font-size: 0.8em;
    }

    .footer-top-row {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .email-contact {
        text-align: center;
        padding-top: 0;
    }

    .follow-us-area {
        align-items: center;
    }

    .follow-us {
        text-align: center;
    }

    .follow-us a {
        margin: 0 8px;
    }

    .copyright {
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 3%;
    }

    .logo {
        font-size: 1.5em;
    }

    .download-btn {
        padding: 6px 10px;
        font-size: 0.8em;
    }

    .coming-soon-content h1 {
        font-size: 2.2em;
    }

    .subheading {
        font-size: 0.7em;
        margin-bottom: 30px;
    }

    main {
        padding-top: 70px;
        padding-bottom: 170px;
    }

    footer {
        font-size: 0.75em;
        padding: 10px 3%;
    }

    .footer-top-row {
        gap: 10px;
    }

    .email-contact {
        font-size: 0.9em;
    }

    .follow-us-area {
        gap: 8px;
    }

    .follow-us a {
        margin: 0 5px;
        font-size: 1.1em;
    }

    .copyright {
        font-size: 0.8em;
        margin-top: 8px;
    }
}