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

/* Brand Colors */
:root {
    --navy: #1a3a52;
    --sage: #6ba883;
    --yellow: #ffc844;
    --coral: #ff9e7a;
    --gray-light: #f5f5f5;
    --gray-dark: #333333;
    --white: #ffffff;
    --border-color: #e0e0e0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--gray-dark);
    background: var(--white);
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-family: 'Nunito', sans-serif;
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--navy);
}

h2 {
    font-family: 'Nunito', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy);
}

h3 {
    font-family: 'Nunito', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

em {
    font-style: italic;
    color: var(--coral);
    font-weight: 500;
}

.emphasis {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
}

/* Header & Navigation */
.header {
    background: var(--white);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 20px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    height: 50px;
    width: 50px;
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Nunito', sans-serif;
    line-height: 1.2;
}

.logo-eat,
.logo-quest {
    color: var(--sage);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--navy);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--coral);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f5f5 0%, var(--gray-light) 100%);
    padding: 6rem 20px;
}

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

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--coral) 0%, #ff8a5f 100%);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 158, 122, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 158, 122, 0.4);
}

/* Value Proposition */
.value-prop {
    padding: 4rem 20px;
    background: var(--white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.value-card:hover {
    border-color: var(--coral);
}

.value-icon {
    margin-bottom: 1rem;
}

.value-icon img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.value-card h3 {
    margin-bottom: 1rem;
}

/* About Section */
.about {
    padding: 4rem 20px;
    background: linear-gradient(135deg, rgba(107, 168, 131, 0.05) 0%, rgba(26, 58, 82, 0.03) 100%);
}

.about .container {
    max-width: 800px;
}

.about h2 {
    text-align: center;
}

.about p {
    font-size: 1.15rem;
    text-align: center;
    color: var(--gray-dark);
}


/* Beta Section */
.beta {
    padding: 4rem 20px;
    background: linear-gradient(135deg, rgba(255, 156, 122, 0.08) 0%, rgba(107, 168, 131, 0.08) 100%);
}

.beta .container {
    max-width: 800px;
}

.beta h2 {
    text-align: center;
}

.beta-intro {
    font-size: 1.25rem;
    text-align: center;
    font-weight: 500;
}

.beta-description {
    text-align: center;
    font-size: 1.1rem;
}

.beta-subtitle {
    text-align: center;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.beta-list {
    list-style: none;
    text-align: center;
    margin: 1.5rem 0 2rem 0;
}

.beta-list li {
    margin: 0.75rem 0;
    font-size: 1.1rem;
    color: var(--gray-dark);
}

.beta-list li:before {
    content: "✓ ";
    color: var(--sage);
    font-weight: bold;
    margin-right: 0.5rem;
}

.beta .cta-button {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
}

/* FAQ Section */
.faq {
    padding: 4rem 20px;
    background: var(--gray-light);
}

.faq h2 {
    text-align: center;
}

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

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--coral);
}

.faq-item h3 {
    color: var(--navy);
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.faq-item p {
    font-size: 1rem;
}

/* Creator About Section */
.creator-about {
    padding: 4rem 20px;
    background: var(--white);
}

.creator-about h2 {
    text-align: center;
}

.creator-content {
    max-width: 800px;
    margin: 0 auto;
}

.creator-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
}

/* Closing Section */
.closing {
    padding: 4rem 20px;
    background: linear-gradient(135deg, rgba(26, 58, 82, 0.05) 0%, rgba(107, 168, 131, 0.05) 100%);
    text-align: center;
}

.closing h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.closing p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.closing-emphasis {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--coral);
}

/* Footer */
.footer {
    background: var(--gray-light);
    color: var(--gray-dark);
    padding: 2rem 20px;
    text-align: center;
    margin-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.footer-tagline {
    font-family: 'Nunito', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem !important;
    color: var(--navy);
}

.tagline-explore {
    color: var(--sage);
    font-weight: 600;
}

.tagline-experience {
    color: var(--coral);
    font-weight: 600;
}

.tagline-grow {
    color: var(--yellow);
    font-weight: 600;
}

.footer-links {
    margin-top: 1rem !important;
    font-size: 0.95rem;
}

.footer-links a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--coral);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .header .container {
        padding: 1rem 20px;
    }

    .value-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .beta .cta-button {
        width: 100%;
    }

    .hero {
        padding: 3rem 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav {
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}
