/* NooMoo Landing Page Styles */

/* Global Styles & Variables */
:root {
    --noomoo-green: #6BBF59;
    --sunshine-peach: #FFB785;
    --charcoal-vegan: #333333;
    --oatmilk-beige: #F9F4EC;
    --avocado-dark: #406343;
    --white: #FFFFFF;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--oatmilk-beige);
    color: var(--charcoal-vegan);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}

.container {
    max-width: 600px;
    width: 100%;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    margin-bottom: 0.5em;
}

h1 {
    font-weight: 700; /* Bold */
    font-size: 2.2em;
    color: var(--charcoal-vegan);
}

h2 {
    font-weight: 500; /* Medium */
    font-size: 1.4em;
    color: var(--charcoal-vegan);
    margin-bottom: 1em;
}

h3 {
    font-weight: 500; /* Medium */
    font-size: 1.6em;
    color: var(--noomoo-green);
    margin-bottom: 1em;
}

p {
    font-size: 1em;
    margin-bottom: 1em;
}

/* Header / Hero Section */
.hero-section {
    margin-bottom: 30px;
}

.logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

/* Form Section */
.form-section {
    margin-bottom: 30px;
}

/* Sample Form Styling (will be replaced by HubSpot) */
.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Regular */
    margin-bottom: 5px;
    font-size: 0.9em;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 1em;
}

.form-group textarea {
    resize: vertical;
}

button[type="submit"] {
    font-family: 'Poppins', sans-serif;
    font-weight: 700; /* Bold */
    background-color: var(--avocado-dark);
    color: var(--white);
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #304a32; /* Slightly darker avocado */
}

/* HubSpot Instructions Styling */
.hubspot-instructions {
    background-color: #f8f9fa;
    border: 1px dashed #ccc;
    padding: 15px;
    margin-bottom: 20px;
    text-align: left;
    border-radius: 4px;
}

.hubspot-instructions p {
    margin-bottom: 10px;
}

.hubspot-instructions ol, 
.hubspot-instructions ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.hubspot-instructions li {
    margin-bottom: 5px;
}

/* Confirmation Message */
#confirmation-message {
    background-color: #e8f5e9; /* Light green background */
    padding: 15px;
    border-radius: 4px;
    border: 1px solid var(--noomoo-green);
}

/* Footer */
footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

footer p {
    font-size: 0.85em;
    color: #777;
}

.social-links a {
    color: var(--noomoo-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--avocado-dark);
    text-decoration: underline;
}

/* Responsive Adjustments (Mobile-First already applied) */

/* Optional: Add styles for larger screens if needed */
@media (min-width: 768px) {
    .container {
        padding: 40px;
    }

    h1 {
        font-size: 2.5em;
    }

    h2 {
        font-size: 1.6em;
    }
}
