/* Cook&Track Website - Minimal Style */

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

:root {
    --primary-color: #007AFF;
    --text-color: #1d1d1f;
    --text-secondary: #86868b;
    --background: #ffffff;
    --footer-bg: #f5f5f7;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    color: var(--text-color);
    background: var(--background);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    text-align: center;
    padding: 80px 0 40px;
}

.app-icon {
    width: 120px;
    height: 120px;
    border-radius: 22%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 400;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.teaser {
    text-align: center;
    padding: 40px 0;
}

.coming-soon {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 24px;
    padding: 8px 24px;
    background: rgba(0, 122, 255, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.app-store-badge img {
    height: 44px;
    opacity: 0.4;
    cursor: not-allowed;
}

/* Footer */
footer {
    padding: 40px 0;
    text-align: center;
    background: var(--footer-bg);
    margin: 60px -20px 0;
    padding-left: 20px;
    padding-right: 20px;
}

footer nav {
    margin-bottom: 16px;
}

footer nav a {
    color: var(--text-secondary);
    text-decoration: none;
    margin: 0 16px;
    font-size: 0.9rem;
    transition: color 0.2s;
}

footer nav a:hover {
    color: var(--primary-color);
}

.company {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Subpages */
.page-content {
    padding: 60px 0;
    flex: 1;
}

.page-content h1 {
    font-size: 2rem;
    margin-bottom: 32px;
    text-align: left;
}

.page-content h2 {
    font-size: 1.3rem;
    margin-top: 32px;
    margin-bottom: 12px;
}

.page-content p,
.page-content ul {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.page-content ul {
    padding-left: 24px;
}

.page-content li {
    margin-bottom: 8px;
}

.page-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.back-link {
    display: inline-block;
    margin-bottom: 32px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.95rem;
}

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

.back-link::before {
    content: "← ";
}

/* Support Page */
.support-email {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary-color);
    color: white !important;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 500;
    margin-top: 16px;
    transition: background 0.2s;
}

.support-email:hover {
    background: #0056b3;
    color: white !important;
    text-decoration: none;
}

/* Language Switch */
.language-switch {
    text-align: right;
    padding: 16px 0;
    font-size: 0.9rem;
}

.language-switch a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.language-switch a:hover {
    color: var(--primary-color);
}

.language-switch .active {
    color: var(--text-color);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {
    h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

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

    header {
        padding: 60px 0 30px;
    }

    footer nav a {
        display: block;
        margin: 12px 0;
    }
}
