/* styles.css */

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

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #000;
}

header {
    background-color: transparent;
    padding: 20px;
    text-align: center;
    color: #000;
}

.logo {
    max-width: 50%;
    height: auto;
}

main {
    padding: 20px;
    margin: 0 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-with-image {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 40px;
}

.section-content {
    flex: 1;
    text-align: justify;
    padding: 20px;
    color: #000;
}

.section-content h2 {
    text-align: left;
}

.section-image {
    max-width: 50%;
    height: auto;
    margin-left: 20px;
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    overflow: hidden;
}

footer {
    background-color: transparent;
    color: #000;
    text-align: center;
    padding: 10px 0;
}

section img {
    max-width: 100%;
    height: auto;
}

.webapp-button,
.app-store-button img,
.play-store-button img {
    mask-image: none;
    -webkit-mask-image: none;
}

.webapp-button,
.app-store-button,
.play-store-button {
    text-decoration: none;
    color: #000;
}

.download-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.webapp-button,
.app-store-button,
.play-store-button {
    margin: 0 10px;
}

.instagram-profile {
    margin-top: 20px;
}

.instagram-profile a {
    text-decoration: none;
    color: #000;
    display: flex;
    align-items: center;
}

.instagram-profile img {
    width: 30px;
    height: auto;
    margin-right: 10px;
}

#download .section-title {
    text-align: center;
}

#download .download-buttons a {
    max-width: 150px;
}

/* Media Queries */
@media only screen and (max-width: 600px) {
    header {
        padding: 10px;
    }

    header h2 {
        font-size: 12px;
    }

    main {
        margin: 0;
    }

    .logo {
        max-width: 80%;
    }

    .section-with-image {
        flex-direction: column;
    }

    .section-image {
        max-width: 80%;
        margin-left: 0;
        border-radius: 0;
    }

    .section-content {
        padding: 10px;
    }

    .section-content h2 {
        font-size: 16px;
    }

    .section-content p {
        font-size: 12px;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .download-buttons a {
        margin: 10px 0;
    }

    .instagram-profile img {
        width: 20px;
        margin-right: 5px;
    }

    footer {
        padding: 5px 0;
        font-size: 10px;
    }
}
