/* =========================================
   Pages Stylesheet - News & Gallery
   ========================================= */

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--darker) 0%, var(--gray-900) 100%);
    text-align: center;
    border-bottom: 3px solid var(--primary);
}

.page-header h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--gray-400);
}

/* News Archive Styles */
.news-year {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--gray-700);
}

.news-year:last-child {
    border-bottom: none;
}

.year-title {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 30px;
    padding-left: 20px;
    border-left: 4px solid var(--primary);
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 25px;
    padding: 25px;
    background: var(--gray-800);
    transition: var(--transition);
}

.news-item:hover {
    transform: translateX(10px);
    border-left: 3px solid var(--primary);
}

.news-date {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    padding-top: 5px;
}

.news-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.news-content p {
    color: var(--gray-400);
    margin-bottom: 15px;
    line-height: 1.6;
}

.news-summary {
    background: var(--gray-800);
    padding: 30px;
}

.news-summary ul {
    list-style: none;
    margin: 20px 0;
}

.news-summary li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray-300);
}

.news-summary li::before {
    content: '🥊';
    position: absolute;
    left: 0;
}

.highlight-text {
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 20px;
}

/* Gallery Styles */
.gallery-intro {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-intro p {
    color: var(--gray-400);
    font-size: 1.1rem;
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 60px;
}

.gallery-item {
    overflow: hidden;
    aspect-ratio: 1;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Featured Photo */
.featured-photo {
    margin-bottom: 60px;
    text-align: center;
}

.featured-photo h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.featured-photo img {
    width: 100%;
    max-width: 900px;
    border: 3px solid var(--primary);
}

.photo-caption {
    margin-top: 15px;
    color: var(--gray-400);
    font-style: italic;
}

/* Fighters Photos */
.fighters-photos {
    margin-bottom: 60px;
}

.fighters-photos h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.fighters-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.fighter-photo-card {
    text-align: center;
}

.fighter-photo-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-bottom: 15px;
}

.fighter-photo-card h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.fighter-photo-card p {
    color: var(--primary);
    font-weight: 500;
}

/* Coach Photos */
.coach-photos {
    margin-bottom: 40px;
}

.coach-photos h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.coach-feature {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.coach-feature img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 4px solid var(--primary);
    margin-bottom: 20px;
}

.coach-feature p {
    color: var(--gray-400);
}

/* Social CTA */
.social-cta {
    text-align: center;
    background: var(--gray-900);
}

.social-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.social-cta p {
    color: var(--gray-400);
    margin-bottom: 25px;
}

.social-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--darker) 100%);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--gray-200);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

/* Footer Simple */
.footer-simple {
    text-align: center;
    padding: 20px 0;
}

.footer-simple .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-simple p {
    color: var(--gray-400);
    margin-bottom: 10px;
}

.footer-simple .footer-social {
    margin: 20px 0;
    justify-content: center;
}

.footer-simple .copyright {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-top: 20px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    color: var(--primary);
    transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
    .news-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .news-date {
        font-size: 0.9rem;
    }
    
    .photo-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .fighters-grid {
        grid-template-columns: 1fr;
    }
    
    .social-buttons {
        flex-direction: column;
        align-items: center;
    }
}
