:root {
    --primary-text: #000000;
    --secondary-text: #333333;
    --footer-bg: #261B37;
    --footer-text: #ffffff;
    --button-bg: #261B37;
    --button-text: #ffffff;
    --link-color: #261B37;
    --font-family: 'Outfit', sans-serif;
}

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

body {
    font-family: var(--font-family);
    color: var(--primary-text);
    background-color: #ffffff;
    line-height: 1.5;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.main-header {
    padding: 2rem 1rem;
    text-align: center;
}

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

/* Main Content */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.headline {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-text);
    line-height: 1.2;
}

.maintenance-text {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 1rem;
    max-width: 600px;
}

.contact-text {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 3rem;
}

.contact-text a {
    color: var(--link-color);
    font-weight: 600;
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Hero Image */
.hero-container {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

/* Newsletter */
.newsletter-section {
    width: 100%;
    max-width: 500px;
    margin-top: auto;
}

.newsletter-text {
    font-size: 1rem;
    color: var(--secondary-text);
    margin-bottom: 1rem;
}

/* Mailchimp Form Styling */
#mc_embed_signup {
    background: transparent;
    width: 100%;
}

#mc_embed_signup .indicates-required {
    display: none;
    /* Hide the '* indicates required' text */
}

#mc_embed_signup .mc-field-group {
    width: 100%;
    margin-bottom: 0.5rem;
    text-align: left;
}

#mc_embed_signup label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 0.25rem;
    font-family: var(--font-family);
}

#mc_embed_signup input.email {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    margin: 0;
}

#mc_embed_signup .button {
    width: 100%;
    padding: 0.75rem;
    background-color: var(--button-bg);
    color: var(--button-text);
    border: none;
    border-radius: 4px;
    font-family: var(--font-family);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 0.5rem;
    height: auto;
    line-height: normal;
}

#mc_embed_signup .button:hover {
    opacity: 0.9;
    background-color: var(--button-bg);
}

/* Footer */
.main-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    color: var(--footer-text);
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    color: var(--footer-bg);
}

.social-icon:hover {
    transform: scale(1.1);
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* Responsive */
@media (min-width: 768px) {
    .headline {
        font-size: 3rem;
    }

    .maintenance-text {
        font-size: 1.1rem;
    }
}