/**
 * Page Template Styles
 * Version: 3.0.0
 */

/* ========================================
   PAGE HERO
======================================== */
.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #ec4899 100%);
    color: #ffffff;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin: 0 0 20px 0;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.3rem;
    margin: 0 auto;
    opacity: 0.95;
    position: relative;
    z-index: 1;
    max-width: 700px;
}

/* ========================================
   PAGE CONTENT
======================================== */
.page-content-wrapper {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ========================================
   PAGE TYPOGRAPHY
======================================== */
.page-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 40px 0 20px;
    position: relative;
    padding-bottom: 15px;
}

.page-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.page-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1f2937;
    margin: 30px 0 15px;
}

.page-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 12px;
    color: #374151;
}

.page-content a {
    color: #667eea;
    text-decoration: underline;
    transition: all 0.3s ease;
}

.page-content a:hover {
    color: #5568d3;
}

.page-content blockquote {
    margin: 30px 0;
    padding: 25px 35px;
    background: #f9fafb;
    border-left: 5px solid #667eea;
    font-style: italic;
    color: #374151;
    border-radius: 12px;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
    .page-hero {
        padding: 80px 20px 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .page-content {
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-content {
        padding: 30px 20px;
    }
    
    .page-content p {
        font-size: 1rem;
    }
}
