@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Ctext y='36' font-size='36'%3E🫘%3C/text%3E%3C/svg%3E") 24 24, auto;
}

body {
    font-family: 'Jost', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 80px;
}

/* Fixed header */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #fafafa;
    z-index: 1000;
    padding: 5px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.fixed-header h1 {
    margin-bottom: 0;
    font-size: 48px;
}

/* Homepage styles */
.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.center-content .tagline {
    font-size: 24px;
    line-height: 1.8;
    color: #555;
}

.center-content .app-store-button {
    display: inline-block;
    margin-top: 43px;
    transition: opacity 0.2s;
}

.center-content .app-store-button:hover {
    opacity: 0.7;
}

.center-content .app-store-button img {
    height: 50px;
}

.center-content .coming-soon {
    margin-top: 43px;
    font-size: 20px;
    color: #895129;
    font-weight: 500;
}

/* Features section */
.features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: nowrap;
}

.feature-item {
    text-align: center;
    max-width: 250px;
    flex: 1;
    min-width: 0;
}

.feature-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 15px;
}

.feature-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

/* Legal pages styles */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.legal-page main {
    flex: 1;
}

.legal-page footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.legal {
    max-width: 700px;
    margin: 0 auto;
}

.legal h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal ul {
    margin-left: 30px;
    margin-bottom: 15px;
    color: #555;
}

.legal ul li {
    margin-bottom: 8px;
}

/* Typography */
h1 {
    font-size: 72px;
    font-weight: 700;
    color: #895129;
    text-align: center;
    margin-bottom: 20px;
}

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

h1 a:hover {
    color: #666;
}

/* Footer */
footer {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    border-top: 1px solid #e0e0e0;
    text-align: center;
    width: 100%;
}

footer nav {
    margin-bottom: 15px;
}

footer nav a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

footer nav a:hover {
    color: #666;
}

footer nav span {
    color: #ccc;
}

.copyright {
    font-size: 14px;
    color: #999;
}

/* Responsive */
@media (max-width: 600px) {
    body {
        padding-top: 80px;
    }

    .fixed-header {
        padding: 15px;
    }

    h1 {
        font-size: 48px;
    }

    .center-content p {
        font-size: 18px;
    }

    .features {
        gap: 20px;
    }

    .feature-text {
        font-size: 14px;
    }

    .legal h2 {
        font-size: 28px;
    }

    .legal h3 {
        font-size: 20px;
    }
}
