:root {
    --primary-color: #f76f00; /* Vibrant Orange from the sweet potato */
    --secondary-color: #5d9a44; /* Brighter Green from the leaves */
    --light-green: #d1e8c1;    /* Lighter Green from the fields */
    --background-color: #ffffff;
    --text-color: #333333;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    background-color: var(--background-color);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
}

.container {
    max-width: 900px;
    width: 100%;
}

header {
    margin-bottom: 3rem;
}

.logo-img {
    max-width: 400px; /* Adjust max width for desktop */
    height: auto;
    margin: 0 auto 1.75rem;
    display: block;
}

.content {
    background: var(--light-green); /* Using the light green from your logo */
    padding: 4rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.tagline {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary-color); /* Using the brighter green from your logo */
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.coming-soon {
    background: var(--primary-color); /* Using the vibrant orange from your logo */
    color: #fff;
    font-weight: 700;
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-size: 1.25rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-info {
    margin-top: 3rem;
}

.email-link {
    font-weight: 700;
    color: var(--primary-color); /* Using the vibrant orange from your logo */
    text-decoration: none;
    font-size: 1.1rem;
}

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

footer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: #777;
}

@media (max-width: 768px) {
    .logo-img {
        max-width: 210px; /* Reduced max width for smaller screens */
    }

    .tagline {
        font-size: 1.75rem;
    }

    .content {
        padding: 2.5rem 1rem;
    }
}
