/* ============================================
   PAGE STYLES
   ============================================ */

/* Page Header */
.page-header {
    margin-top: 70px;
    padding: 100px 0 60px;
    background: 
        radial-gradient(circle at 20% 50%, rgba(224, 136, 33, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    text-align: center;
}

.page-title {
    font-family: 'Marcellus SC', serif;
    font-size: 64px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
    letter-spacing: 3px;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-light);
    letter-spacing: 1px;
}

/* Civilizations Section */
.civilizations-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.civilizations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.civilization-card {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-gold);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.civilization-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.civilization-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.civilization-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
    background-color: var(--dark-bg);
}

.civilization-card:hover .civilization-image img {
    transform: scale(1.1);
}

.civilization-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.civilization-card:hover .civilization-overlay {
    opacity: 1;
}

.btn-civilization {
    padding: 12px 30px;
    background-color: var(--primary-orange);
    color: var(--text-white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-orange);
    transition: all 0.3s ease;
}

.btn-civilization:hover {
    background-color: transparent;
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.civilization-content {
    padding: 30px;
}

.civilization-title {
    font-family: 'Marcellus SC', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    text-align: center;
}

.civilization-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}

.civilization-features {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.civilization-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-gold);
    font-size: 14px;
}

.civilization-features i {
    color: var(--primary-orange);
}

/* Media Gallery */
.media-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.media-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.media-tab {
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid var(--primary-gold);
    color: var(--text-white);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.media-tab:hover,
.media-tab.active {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--text-white);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.media-item {
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    border-radius: 5px;
    aspect-ratio: 16/9;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.media-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.5);
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* News Section */
.news-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.news-card {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-gold);
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.news-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 25px;
}

.news-date {
    font-size: 14px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.news-title {
    font-family: 'Marcellus SC', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
}

.news-excerpt {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--primary-orange);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 40px;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-gold);
    border-radius: 5px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    background-color: rgba(212, 175, 55, 0.1);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(212, 175, 55, 0.2);
}

.faq-question h3 {
    font-family: 'Marcellus SC', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin: 0;
}

.faq-question i {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 20px 25px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* Whitepaper Section */
.whitepaper-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.whitepaper-content {
    max-width: 1000px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--primary-gold);
    border-radius: 5px;
    padding: 50px;
}

.whitepaper-content h2 {
    font-family: 'Marcellus SC', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 30px;
    text-align: center;
}

.whitepaper-content h3 {
    font-family: 'Marcellus SC', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-white);
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 10px;
}

.whitepaper-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.whitepaper-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.whitepaper-content li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.whitepaper-content strong {
    color: var(--primary-orange);
}

/* Responsive */
@media screen and (max-width: 991px) {
    .page-title {
        font-size: 48px;
    }
    
    .civilizations-grid {
        grid-template-columns: 1fr;
    }
    
    .media-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 16px;
    }
    
    .whitepaper-content {
        padding: 30px 20px;
    }
    
    .civilization-content {
        padding: 20px;
    }
}

