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

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #2d3436;
    background: linear-gradient(135deg, #a8d5ba 0%, #c8e6c9 50%, #e8f5e8 100%);
    min-height: 100vh;
}

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

header {
    text-align: center;
    color: #2d3436;
    padding: 60px 0 40px 0;
}

.logo-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    display: block;
}

header h1 {
    font-family: 'Sono', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2d5016;
}

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

header h1 a:hover {
    opacity: 0.8;
}

.navigation {
    text-align: center;
    margin: 20px 0;
}

.navigation a {
    color: #2d5016;
    text-decoration: none;
    padding: 12px 24px;
    margin: 0 10px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.7);
    transition: all 0.4s ease;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(45, 80, 22, 0.1);
}

.navigation a:hover,
.navigation a.active {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.15);
}

.tagline {
    font-size: 1.2rem;
    color: #5d6d42;
    font-weight: 400;
}

main {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 50px;
    margin: 40px 0;
    box-shadow: 0 8px 32px rgba(45, 80, 22, 0.1);
    backdrop-filter: blur(10px);
}

.hero {
    text-align: center;
    margin-bottom: 50px;
}

.hero h2 {
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero p {
    font-size: 1.3rem;
    color: #5d6d42;
    line-height: 1.8;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 35px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(168, 213, 186, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.feature:hover {
    transform: translateY(-3px);
    border-color: rgba(168, 213, 186, 0.5);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.1);
}

.feature h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature p {
    color: #5d6d42;
    font-size: 1.1rem;
    line-height: 1.7;
}

footer {
    text-align: center;
    color: #5d6d42;
    padding: 30px 0;
    opacity: 0.8;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-method {
    text-align: center;
    padding: 35px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    border: 1px solid rgba(168, 213, 186, 0.3);
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.contact-method:hover {
    transform: translateY(-3px);
    border-color: rgba(168, 213, 186, 0.5);
    box-shadow: 0 8px 25px rgba(45, 80, 22, 0.1);
}

.contact-method h3 {
    font-size: 1.5rem;
    color: #2d5016;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-method p {
    color: #5d6d42;
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.7;
}

.email-link {
    display: inline-block;
    color: #2d5016;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid #a8d5ba;
    border-radius: 30px;
    transition: all 0.4s ease;
    margin-top: 10px;
    background: rgba(168, 213, 186, 0.1);
}

.email-link:hover {
    background: #a8d5ba;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 80, 22, 0.2);
}

.coming-soon-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.notify-section {
    margin-top: 50px;
    text-align: center;
}

.notify-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(168, 213, 186, 0.4);
    backdrop-filter: blur(8px);
}

.notify-card h3 {
    font-size: 1.8rem;
    color: #2d5016;
    margin-bottom: 20px;
    font-weight: 600;
}

.notify-card p {
    font-size: 1.2rem;
    color: #5d6d42;
    line-height: 1.7;
}

.email-link-inline {
    color: #2d5016;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid rgba(168, 213, 186, 0.5);
    transition: all 0.3s ease;
}

.email-link-inline:hover {
    border-bottom-color: #a8d5ba;
    color: #1a3009;
}

@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

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

    .features,
    .contact-info,
    .coming-soon-content {
        grid-template-columns: 1fr;
    }

    .navigation a {
        margin: 0 5px;
        padding: 8px 16px;
    }

    .notify-card {
        padding: 30px;
        margin: 0 10px;
    }
}