/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    position: relative;
}

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

/* Header */
header {
    background-color: #fff;
    color: #333;
    padding: 20px 0;
    position: relative;
    z-index: 10;
    width: 100%;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.logo svg {
    margin-right: 10px;
}



.spline-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

spline-viewer {
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
}
section.hero{
    background-color: #2196f30a;
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    pointer-events: auto; /* Ensure we can interact with the content */
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.7);
    text-align: center;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #444;
    text-align: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.9), 0 0 20px rgba(255, 255, 255, 0.7);
}

/* Mailchimp form styling */
#mc_embed_signup {
    max-width: 450px !important;
    margin: 0 auto !important;
    background-color: transparent !important;
    padding: 0 !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    position: relative;
    z-index: 2;
}

#mc_embed_signup form {
    padding: 0 !important;
}

#mc_embed_signup h2 {
    font-size: 24px !important;
    margin-bottom: 20px !important;
    color: #333 !important;
    font-weight: 600 !important;
    text-align: center !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8) !important; /* Add text shadow for better readability */
}

#mc_embed_signup .mc-field-group {
    width: 100% !important;
    padding-bottom: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
}

#mc_embed_signup .mc-field-group label {
    width: 100% !important;
    text-align: left !important;
    margin-bottom: 5px !important;
    font-weight: 500 !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8) !important; /* Add text shadow for better readability */
}

#mc_embed_signup .mc-field-group input,
#mc_embed_signup .mc-field-group select {
    width: 100% !important;
    padding: 12px 15px !important;
    border: 1px solid rgba(150, 150, 150, 0.3) !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    height: auto !important;
    margin-bottom: 5px !important;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif !important;
    background-color: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(5px) !important;
}

#mc_embed_signup .helper_text {
    width: 100% !important;
    text-align: right !important;
    font-size: 12px !important;
    color: #444 !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8) !important;
}

#mc_embed_signup .button {
    width: 100% !important;
    background-color: #444 !important;
    color: white !important;
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 4px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    height: auto !important;
    line-height: normal !important;
}

#mc_embed_signup .button:hover {
    background-color: #333 !important;
}

#mc_embed_signup .indicates-required {
    width: 100% !important;
    text-align: right !important;
    font-size: 12px !important;
    margin-bottom: 10px !important;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.8) !important;
}

/* Hide Mailchimp branding */
.refferal_badge, .brandingLogo, #mc-embedded-subscribe + p {
    display: none !important;
}

/* Features */
.features {
    padding: 60px 0;
    background-color: #fff;;
    position: relative;
    z-index: 3;
    width: 100%;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 32px;
    color: #333;
}

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

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.feature-desc {
    color: #666;
    font-size: 15px;
}

/* Footer */
footer {
    background-color: #f9f9f9;
    color: #666;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #eee;
    margin-top: 0px;
    position: relative;
    z-index: 3;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    font-size: 18px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copyright {
    font-size: 14px;
}

/* Success message */
.success-message {
    display: none;
    background-color: #f0f0f0;
    color: #333;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    text-align: center;
    border-left: 3px solid #444;
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 32px;
        text-align: center;
    }
    
    .hero p {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .hero-content {
        padding: 20px;
        margin: 0 15px;
        max-width: calc(100% - 30px);
        text-align: center;
    }
    
    .features {
        padding: 40px 0;
    }
    
    .features h2 {
        font-size: 28px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    /* Form specific responsive styling */
    #mc_embed_signup {
        max-width: 100% !important;
        padding: 20px !important;
        margin: 0 auto !important;
    }
    
    #mc_embed_signup h2 {
        font-size: 20px !important;
    }
    
    #mc_embed_signup .mc-field-group input,
    #mc_embed_signup .mc-field-group select {
        font-size: 16px !important;
        padding: 10px !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-content {
        padding: 15px;
    }
    
    #mc_embed_signup {
        padding: 15px !important;
    }
    
    #mc_embed_signup .button {
        padding: 10px 15px !important;
    }
    
    /* Make touch targets larger on small screens */
    #mc_embed_signup .mc-field-group input,
    #mc_embed_signup .mc-field-group select,
    #mc_embed_signup .button {
        min-height: 44px !important; /* Minimum recommended touch target size */
    }
}