/* ========================================
   PASTEL GRADIENT SECTION COMPONENT
   ======================================== */

.pastel-gradient-section {
    width: 80%;
    height: auto;
    margin: 50px auto;
    padding: 20px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg,
            var(--brand-brown-light) 0%,
            /* Light peach/orange - top-left */
            var(--brand-gray-light) 25%,
            /* Light blue/cyan - top-right */
            #ffffff 50%,
            /* White - center */
            var(--brand-green-light) 75%,
            /* Light blue/cyan - bottom-left */
            #ffd4c9 100%
            /* Soft pink/peach - bottom-right */
        );
    background-size: 200% 200%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(184, 230, 240, 0.3);
    transition: all var(--transition-slow);
}

/* Subtle overlay for depth */
.pastel-gradient-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(184, 230, 240, 0.05) 25%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(184, 230, 240, 0.05) 75%,
            rgba(255, 212, 201, 0.1) 100%);
    border-radius: inherit;
    pointer-events: none;
}

/* Hover effect with subtle animation */
.pastel-gradient-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(184, 230, 240, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pastel-gradient-section {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .pastel-gradient-section {
        width: 95%;
    }
}

/* CTA Content Styles */
.cta-content {
    text-align: center;
    padding: var(--spacing-xl);
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.cta-title {
    margin-bottom: var(--spacing-md);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Specific color for pastel-gradient-section */
.pastel-gradient-section .cta-title {
    color: #fff;
}

.cta-description {
    font-size: 1.1rem;
    margin-bottom: var(--spacing-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive CTA adjustments */
@media (max-width: 768px) {
    .cta-content {
        padding: var(--spacing-lg);
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cta-content {
        padding: var(--spacing-md);
    }

    .cta-title {
        font-size: 1.4rem;
    }
}