/* Page Styles - Matching homepage styling */
.page-header {
    background: linear-gradient(135deg, var(--dark-navy) 0%, #1a2a4a 100%);
    color: var(--white);
    padding: 180px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/pattern.svg');
    background-size: cover;
    opacity: 0.15;
    animation: float 20s infinite alternate ease-in-out;
}

.page-header .section-title {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-content {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.entry-content h2 {
    font-size: 2.2rem;
    margin: 40px 0 20px;
    color: var(--dark-navy);
}

.entry-content h3 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: var(--dark-navy);
}

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

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

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

.entry-content a {
    color: var(--lime-green-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.entry-content a:hover {
    color: var(--hot-pink);
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.entry-content blockquote {
    border-left: 5px solid var(--lime-green-secondary);
    padding: 20px;
    margin: 20px 0;
    background-color: var(--light-gray);
    font-style: italic;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.entry-content table th,
.entry-content table td {
    padding: 12px 15px;
    border: 1px solid var(--medium-gray);
}

.entry-content table th {
    background-color: var(--light-gray);
    font-weight: 700;
}

.entry-content table tr:nth-child(even) {
    background-color: var(--light-gray);
}

/* WordPress specific styles */
.wp-block-image img {
    max-width: 100%;
    height: auto;
}

.wp-block-button__link {
    display: inline-block;
    background: var(--lime-green-secondary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(135, 218, 6, 0.4);
}

.wp-block-button__link:hover {
    background: var(--lime-green-primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(135, 218, 6, 0.6);
    color: var(--white);
}

.is-style-outline .wp-block-button__link {
    background: transparent;
    border: 2px solid var(--hot-pink);
    color: var(--hot-pink);
    box-shadow: none;
}

.is-style-outline .wp-block-button__link:hover {
    background: var(--hot-pink);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 20, 147, 0.4);
}

/* Responsive styles for pages */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .entry-content h2 {
        font-size: 2rem;
    }
    
    .entry-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 150px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-content {
        padding: 60px 0;
    }
    
    .entry-content h2 {
        font-size: 1.8rem;
    }
    
    .entry-content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .page-header {
        padding: 120px 0 50px;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .page-content {
        padding: 40px 0;
    }
}
