/* ---
   newsletter.css
   Styles for the "Feminine Wisdom" Newsletter CTA Page
   --- */

/* --- 1. Hero Section --- */
.newsletter-hero {
    padding: 14rem 2rem 12rem;
    background-image: linear-gradient(rgba(73, 55, 91, 0.65), rgba(73, 55, 91, 0.65)), url('https://images.pexels.com/photos/7135121/pexels-photo-7135121.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--color-background);
}

.newsletter-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.newsletter-hero-title {
    font-family: var(--font-primary);
    font-size: 5.5rem;
    font-weight: 600;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.newsletter-hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-lavender);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

/* --- 2. Main Content & Intro --- */
.newsletter-main {
    padding: 6rem 2rem;
    background-color: var(--color-background);
}

.newsletter-container {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.intro-text {
    font-size: 1.25rem;
    color: var(--color-text-2);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.intro-text strong {
    color: var(--color-text);
    font-weight: 600;
}

.divider {
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-amethyst), var(--color-gold));
    margin: 3rem auto;
    border: 0;
}

/* --- 3. Features Grid ("What Awaits You") --- */
.features-section .section-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    color: var(--color-text);
    margin-bottom: 4rem;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    text-align: left;
}

.feature-card {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(109, 91, 135, 0.08);
    border: 1px solid var(--color-background-2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--color-amethyst);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 1rem;
    color: var(--color-text-2);
    line-height: 1.7;
}

/* --- 4. "Why Subscribe" Section --- */
.why-subscribe-section {
    background-color: var(--color-background-2);
    padding: 5rem 2rem;
    margin-top: 6rem;
    border-radius: 15px;
}

.why-subscribe-section h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 2.5rem;
}

.why-subscribe-list {
    list-style: none;
    padding: 0;
    max-width: 650px;
    margin: 0 auto;
}

.why-subscribe-list li {
    font-size: 1.2rem;
    color: var(--color-text-2);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.why-subscribe-list i {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    color: var(--color-gold);
    margin-top: 5px;
}

/* --- 5. Quote Section --- */
.quote-section {
    margin: 5rem auto;
    max-width: 750px;
    text-align: center;
}

.quote-section blockquote {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-style: italic;
    color: var(--color-text);
    line-height: 1.4;
    position: relative;
    padding: 0 3rem;
}

.quote-section blockquote::before,
.quote-section blockquote::after {
    content: '“';
    font-size: 6rem;
    color: var(--color-lavender);
    position: absolute;
    line-height: 1;
}

.quote-section blockquote::before {
    top: -1rem;
    left: 0;
}

.quote-section blockquote::after {
    content: '”';
    bottom: -3rem;
    right: 0;
}

.quote-section cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1.1rem;
    font-style: normal;
    color: var(--color-text-2);
}

/* --- 6. CTA Form Section --- */
.cta-form-section {
    background-color: var(--color-text);
    color: var(--color-background);
    padding: 5rem 2rem;
    text-align: center;
}

.cta-form-section h2 {
    font-family: var(--font-primary);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-form-section p {
    color: var(--color-lavender);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 550px;
    margin: 0 auto;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--color-lavender);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-secondary);
}

.newsletter-form input::placeholder {
    color: var(--color-background-3);
}

.newsletter-form .btn-primary {
    background-color: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-text);
    text-shadow: none;
    white-space: nowrap;
}

.newsletter-form .btn-primary:hover {
    background-color: var(--color-lavender);
    border-color: var(--color-lavender);
    color: var(--color-text);
    transform: translateY(-3px) scale(1.02);
}

/* --- 7. Responsive Adjustments --- */
@media (max-width: 767px) {
    .newsletter-hero {
        padding: 10rem 1.5rem 8rem;
    }
    .newsletter-hero-title {
        font-size: 3.5rem;
    }
    .newsletter-hero-subtitle {
        font-size: 1.2rem;
    }
    .newsletter-main {
        padding: 4rem 1.5rem;
    }
    .features-section .section-title {
        font-size: 2.5rem;
        margin-bottom: 3rem;
    }
    .newsletter-form {
        flex-direction: column;
    }
}
