/**
 * SEO Content Section CSS
 * Clean, readable SEO text section
 * Adalya Point E-cigarette Webshop
 */

/* ========== SECTION ========== */
.seo-content-section {
    width: 100%;
    padding: 5rem 0 6rem 0;
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(218, 165, 32, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

/* Ensure all child elements have dark background */
.seo-content-section * {
    background-color: transparent !important;
}

.seo-content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

.seo-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* ========== CONTENT BLOCKS ========== */
.seo-content-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.seo-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    background: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.seo-text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #d4d4d4;
    margin: 0;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: justify;
}

.seo-text:first-of-type {
    margin-top: 0;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1023px) {
    .seo-content-container {
        padding: 0 2rem;
    }
    
    .seo-content-wrapper {
        gap: 2.5rem;
    }
    
    .seo-title {
        font-size: 1.5rem;
    }
    
    .seo-text {
        font-size: 1rem;
        line-height: 1.75;
    }
}

@media (max-width: 767px) {
    .seo-content-section {
        padding: 4rem 0 5rem 0;
    }
    
    .seo-content-container {
        padding: 0 1.5rem;
    }
    
    .seo-content-wrapper {
        gap: 2rem;
    }
    
    .seo-content-block {
        gap: 1.25rem;
    }
    
    .seo-title {
        font-size: 1.375rem;
        line-height: 1.4;
    }
    
    .seo-text {
        font-size: 0.9375rem;
        line-height: 1.7;
        text-align: left;
    }
}

/* ========== ANIMATIONS ========== */
.seo-content-section {
    opacity: 0;
    transition: opacity 1s ease;
}

.seo-content-section.visible {
    opacity: 1;
}

.seo-content-block {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.seo-content-section.visible .seo-content-block {
    opacity: 1;
    transform: translateY(0);
}

.seo-content-block:nth-child(1) {
    transition-delay: 0.1s;
}

.seo-content-block:nth-child(2) {
    transition-delay: 0.2s;
}

.seo-content-block:nth-child(3) {
    transition-delay: 0.3s;
}

.seo-content-block:nth-child(4) {
    transition-delay: 0.4s;
}

/* ========== DECORATIVE ELEMENTS ========== */
.seo-content-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, rgba(218, 165, 32, 0.4) 20%, rgba(255, 215, 0, 0.6) 50%, rgba(218, 165, 32, 0.4) 80%, transparent 100%);
    z-index: 2;
}

.seo-content-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(218, 165, 32, 0.06) 30%, rgba(218, 165, 32, 0.08) 60%, rgba(218, 165, 32, 0.12) 100%);
    z-index: 1;
    pointer-events: none;
}
