/* Newsletter Component Styles */
.newsletter-section {
    padding: 80px 0;
    background: var(--gradient-dark);
    color: var(--light-text);
    text-align: center;
    position: relative;
}

.newsletter-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--primary-color));
    pointer-events: none;
}

.newsletter-section h2 {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--light-text);
}

.newsletter-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-text);
    font-size: 1rem;
    font-family: 'Cinzel', serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 228, 196, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form .btn {
    white-space: nowrap;
}

.newsletter-message {
    margin-top: 1.25rem;
    font-size: 0.95rem;
    color: var(--accent-color);
    min-height: 1.2em;
    transition: opacity 0.3s ease;
}

.newsletter-message.error {
    color: #ffb3c1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .newsletter-section h2 {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-form input {
        width: 100%;
    }

    .newsletter-form .btn {
        width: auto;
        min-width: 200px;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .newsletter-section h2 {
        font-size: 1.75rem;
    }

    .newsletter-section p {
        font-size: 1rem;
    }

    .newsletter-form .btn {
        min-width: 160px;
        max-width: 240px;
        padding: 12px 32px;
    }
}
