/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    background-color: #FFCF4B;
}

html.page-page, html.page-page body {
    background-color: whitesmoke;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    background-color: white;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    font-weight: bold;
    font-size: 1.25rem;
    height: 48px;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 48px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

/* Main Content */
main {
    min-height: 100vh;
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
}

.logo {
    height: 200px;
    width: auto;
}

.tagline {
    font-size: 1.25rem;
    color: black;
}

.app-store-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: #000;
    color: white;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.app-store-button:hover {
    opacity: 0.8;
}

/* Page Content */
.page-content {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem 1.5rem;
    line-height: 1.8;
}

.page-content h1 {
    margin-bottom: 1.5rem;
}

.page-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content p {
    margin-bottom: 1rem;
    color: #333;
}

/* Footer */
.footer {
    background-color: white;
    text-align: center;
    padding: 2rem;
    color: #666;
    margin-top: 3rem;
}
