/* FoodPedia Styles */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --accent-color: #FFB84D;
    --dark-color: #2C3E50;
    --light-color: #ECF0F1;
    --text-color: #34495E;
    --white: #FFFFFF;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #FFE5D9 0%, #FFF5E4 100%);
    color: var(--text-color);
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    text-align: center;
    padding: 40px 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.logo h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.coming-soon {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.coming-soon h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.tagline {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 50px;
    font-weight: 500;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature {
    padding: 25px;
    background: linear-gradient(135deg, #FFF5E4 0%, #FFFFFF 100%);
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature p {
    color: var(--text-color);
    font-size: 0.95rem;
}

/* CTA Section */
.cta {
    margin-top: 40px;
}

.launch-text {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 500;
}

.stores {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Privacy Policy Page */
.privacy-content {
    background: var(--white);
    border-radius: 20px;
    padding: 60px 50px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 40px;
}

.privacy-content section {
    margin-bottom: 35px;
}

.privacy-content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
    margin-top: 20px;
}

.privacy-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.privacy-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.privacy-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.contact-info {
    background: var(--light-color);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.privacy-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.privacy-content a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
    color: var(--text-color);
}

footer p {
    margin-bottom: 15px;
}

footer nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

footer nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 2rem;
    }

    .coming-soon {
        padding: 40px 25px;
    }

    .coming-soon h2 {
        font-size: 2rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .privacy-content {
        padding: 30px 20px;
    }

    .privacy-content h2 {
        font-size: 2rem;
    }

    .privacy-content h3 {
        font-size: 1.3rem;
    }

    .store-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }

    .logo-img {
        width: 40px;
        height: 40px;
    }

    .coming-soon h2 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .feature .icon {
        font-size: 2.5rem;
    }

    footer nav {
        flex-direction: column;
        gap: 15px;
    }
}
