@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;400;500;600&family=Work+Sans:wght@300;400;500;600&family=Pacifico&display=swap');

:root {
    --primary-bg: #EFF8FF;
    --text-color: #333;
    --accent-color: #2196F3;
}

* {
    box-sizing: border-box;
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.6;
}

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

.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    display: flex;
    gap: 1rem;
    flex-direction: column;
}

.app-icon-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    max-height: 50vh;
}

.app-icon {
    width: 180px;
    height: 180px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 100;
    font-family: 'Pacifico', cursive;
}

.tagline {
    font-size: 1.5rem;
    color: #666;
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.coming-soon {
    font-size: 1rem;
    color: #666;
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

.store-buttons {
    display: flex;
    gap: 1rem;
}

.store-unavailable {
    opacity: 0.5;
    cursor: not-allowed;
    transition: opacity 0.3s;
}

.store-button img {
    height: 48px;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

header {
    text-align: left;
    border-bottom: 1px solid #eee;
}

footer .link {
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid #eee;
}

.link a {
    color: #007bff;
    text-decoration: none;
}

.link a:hover {
    text-decoration: underline;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 10px;
}

.logo {
    height: 8rem;
    margin-right: 10px;
}

.site-name {
    font-size: 4rem;
    margin: 0;
    font-weight: 100;
    font-family: 'Pacifico', cursive;
    color: #333;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .app-icon {
        margin: 0 auto;
    }

    .app-icon-container {
        flex-direction: column;
        align-items: center;
        gap: 0rem;
    }

    .hero-image {
        text-align: center;
    }

    .store-buttons {
        justify-content: center;
    }

    h1 {
        font-size: 2.5rem;
    }
}