/**
 * Default Template Styles
 * Clean, professional design for standard pages
 */

.page-hero {
    position: relative;
    height: 400px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 20px;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,133.3C672,139,768,181,864,181.3C960,181,1056,139,1152,128C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-hero .page-excerpt {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.page-content-wrapper {
    max-width: 1200px;
    margin: -60px auto 60px;
    position: relative;
    z-index: 10;
}

.page-content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 60px;
    margin-bottom: 40px;
}

.page-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.page-content h2 {
    font-size: 2.2rem;
    color: #667eea;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-content h3 {
    font-size: 1.8rem;
    color: #764ba2;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0;
    padding-left: 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.page-content a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.page-content a:hover {
    color: #764ba2;
    text-decoration: underline;
}

.page-content blockquote {
    border-left: 4px solid #667eea;
    padding: 20px 30px;
    margin: 30px 0;
    background: #f8f9fa;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.page-meta {
    display: flex;
    gap: 30px;
    padding: 20px 0;
    border-top: 1px solid #e5e7eb;
    margin-top: 40px;
    color: #6b7280;
    font-size: 0.95rem;
}

.page-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero .page-excerpt {
        font-size: 1rem;
    }
    
    .page-content-card {
        padding: 30px 20px;
    }
    
    .page-content {
        font-size: 1rem;
    }
}