/*--------------------------------------------------------------
# Newsletter Component
--------------------------------------------------------------*/

.newsletter-section {
    padding: 5em 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-section .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2em;
    text-align: center;
    position: relative;
    z-index: 1;
}

.newsletter-content .section-title {
    color: var(--color-accent-gold);
    margin-bottom: 1em;
    font-size: 2.8em;
    font-weight: 700;
}

.newsletter-description {
    color: var(--color-neutral-white);
    font-size: 1.2em;
    line-height: 1.7;
    margin-bottom: 2.5em;
    opacity: 0.9;
}

.newsletter-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9em;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .newsletter-submit {
        padding: 1.2em 2em;
    }
    
    .newsletter-section .section-title {
        font-size: 2.2em;
    }
} 