/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #ADA8B6;
    color: #3A3163;
    line-height: 1.6;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: #3A3163;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFFFFF;
    text-decoration: none;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #FFF7B6;
}

main {
    padding: 0 5%;
}

section {
    padding: 60px 20px;
    text-align: center;
}

#hero {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    margin-bottom: 2rem;
    background-image: url(logo.png);
    background-size: 145%;
    background-position: center;
    background-repeat: no-repeat;
}

#hero .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #3A3163;
}

.app-icon {
    width: 150px;
    height: 150px;
    border-radius: 25px;
    flex-shrink: 0;
}

.app-card {
    background-color: #3A3163;
    color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    gap: 30px;
}

.app-info {
    text-align: left;
}

.app-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.app-store-links {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.app-store-button {
    background-color: #FFF7B6;
    color: #3A3163;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.app-store-button:hover {
    background-color: #FFFFD6;
}

.coming-soon {
    margin-top: 15px;
    font-style: italic;
    color: #DDDDDD;
    text-align: center;
    font-size: 1.2rem;
}

#about, #contact {
    max-width: 800px;
    margin: 0 auto;
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    background-color: #FFF7B6;
    color: #3A3163;
    padding: 12px 25px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #FFFFD6;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background-color: #3A3163;
    color: #FFFFFF;
}

footer a {
    color: #FFFFFF;
    font-weight: bold;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

#privacy {
    display: none;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background-color: #e1dde9;
    padding: 30px;
    border-radius: 10px;
}

#privacy.visible {
    display: block;
}

#privacy h3 {
    font-size: 1.8rem;
    color: #3A3163;
    margin-top: 20px;
    margin-bottom: 10px;
}

#privacy p {
    margin-bottom: 15px;
}

#privacy ul {
    list-style-position: inside;
    margin-left: 20px;
    margin-bottom: 15px;
}

#privacy a {
    color: #3A3163;
    font-weight: bold;
}

#privacy address {
    margin-left: 20px;
    font-style: normal;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem 2rem;
    }

    header nav {
        margin-top: 15px;
    }
    
    #hero .hero-content h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .logo-wrapper {
        width: 150px;
        height: 150px;
    }

    .app-card {
        flex-direction: column;
    }

    .app-info {
        text-align: center;
    }
}
