/* Base Styles & Variables */
:root {
    --red: #CE1126;
    --gold: #FCD116;
    --green: #006B3F;
    --black: #000000;
    --white: #FFFFFF;
    --brown: #8B4513;
    --tan: #D2B48C;
    --earth: #A52A2A;
    
    --primary-font: 'Montserrat', sans-serif;
    --cultural-font: 'Afrika', 'Kente', sans-serif;
}

@font-face {
    font-family: 'Afrika';
    src: url('fonts/Afrika.ttf') format('truetype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--primary-font);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
}

.cultural-pattern {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,100 M100,0 L0,100" stroke="%23FCD11633" stroke-width="1"/></svg>');
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
    border: 2px solid var(--red);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--red);
}

.btn-secondary {
    background-color: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--black);
}

/* Header & Navigation */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 100px;
    margin-right: 10px;
    width: 120px;
}

.logo h1 {
    font-family: var(--cultural-font);
    font-size: 1.8rem;
    color: var(--red);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-menu li {
    margin-left: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--red);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
}

.nav-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
    }

    .nav-menu .dropdown {
        position: absolute;
        background: white;
        border: 1px solid #ccc;
        display: none;
        flex-direction: column;
        min-width: 150px;
        z-index: 1000;
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nav-menu li:hover .dropdown {
        display: flex;
    }

    .nav-menu .dropdown li {
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
        margin-left: 0px;
    }

    .nav-menu .dropdown li:hover {
        background: #f0f0f0;
    }

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero_bg.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.hero-content {
    max-width: 800px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Featured Expeditions */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-family: var(--cultural-font);
    color: var(--red);
    display: inline-block;
    padding: 0 20px;
    background-color: var(--white);
    position: relative;
    z-index: 1;
}

.section-title:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--gold);
    z-index: 0;
}

.expeditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.expedition-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.expedition-card:hover {
    transform: translateY(-10px);
}

.expedition-img {
    height: 200px;
    overflow: hidden;
}

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

.expedition-card:hover .expedition-img img {
    transform: scale(1.1);
}

.expedition-content {
    padding: 20px;
}

.expedition-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--green);
}

.expedition-content p {
    margin-bottom: 20px;
    color: #666;
}

.expedition-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.price {
    font-weight: bold;
    color: var(--red);
    font-size: 1.2rem;
}

/* About Preview */
.about-preview {
    background-color: var(--green);
    color: var(--white);
    padding: 80px 0;
    position: relative;
}

.about-preview:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M0,0 L60,60 M60,0 L0,60" stroke="%23FCD11633" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.about-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-item {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 3px solid var(--gold);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--green);
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--gold);
    font-family: var(--cultural-font);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--black);
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
}

.newsletter-form button {
    background-color: var(--red);
    color: var(--white);
    border: none;
    padding: 0 15px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
}

/* About Page Styles */
.about-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.about-hero p {
    font-size: 1.5rem;
}

.mission-section {
    padding: 80px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.mission-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.mission-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.sankofa-section {
    padding: 80px 0;
    background-color: var(--gold);
    color: var(--black);
}

.sankofa-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.sankofa-symbol {
    text-align: center;
}

.sankofa-symbol img {
    max-width: 200px;
}

.sankofa-explanation h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.sankofa-explanation p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

.team-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    height: 250px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--red);
}

.position {
    color: var(--green);
    font-weight: 600;
    margin-bottom: 15px;
}

.values-section {
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(206, 17, 38, 0.1);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--green);
}

.about-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('public/images/about/cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for About Page */
@media (max-width: 992px) {
    .mission-grid,
    .sankofa-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .mission-content h2,
    .sankofa-explanation h2,
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Expeditions Page Styles */
.expeditions-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.expeditions-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.expeditions-hero p {
    font-size: 1.5rem;
}

.expeditions-filter {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.expeditions-filter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.sort-options select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--white);
}

.expeditions-listing {
    padding: 60px 0;
}

.expedition-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.expedition-card:hover {
    transform: translateY(-10px);
}

.expedition-img {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

.expedition-card:hover .expedition-img img {
    transform: scale(1.1);
}

.expedition-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--gold);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.8rem;
}

.expedition-content {
    padding: 25px;
}

.expedition-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--green);
}

.expedition-desc {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.expedition-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #666;
}

.detail-item i {
    color: var(--red);
}

.expedition-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: bold;
    color: var(--red);
    font-size: 1.2rem;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.why-choose {
    padding: 80px 0;
    background-color: var(--green);
    color: var(--white);
}

.why-choose .section-title h2 {
    background-color: var(--green);
    color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.expedition-testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-text {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--green);
}

.author-info p {
    font-size: 0.9rem;
    color: #666;
}

.expedition-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('public/images/expeditions/cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for Expeditions Page */
@media (max-width: 992px) {
    .expeditions-filter .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .expeditions-hero h1 {
        font-size: 2.5rem;
    }
    
    .expeditions-hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .expeditions-hero h1 {
        font-size: 2rem;
    }
    
    .expedition-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .expedition-meta {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}

/* Culture & Learning Page Styles */
.culture-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.culture-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.culture-hero p {
    font-size: 1.5rem;
}

.culture-nav {
    padding: 40px 0;
    background-color: var(--gold);
}

.culture-nav-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.culture-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--black);
    padding: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.culture-nav-item:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.culture-nav-item i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.culture-nav-item span {
    font-weight: 600;
}

.adinkra-section {
    padding: 80px 0;
}

.adinkra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.adinkra-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.adinkra-card:hover {
    transform: translateY(-10px);
}

.adinkra-symbol {
    margin-bottom: 20px;
}

.adinkra-symbol img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.adinkra-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--green);
}

.adinkra-meaning {
    font-style: italic;
    color: var(--red);
    margin-bottom: 15px;
    font-weight: 600;
}

.adinkra-desc {
    color: #666;
    line-height: 1.6;
}

.traditions-section {
    padding: 80px 0;
    background-color: var(--green);
    color: var(--white);
}

.traditions-section .section-title h2 {
    background-color: var(--green);
    color: var(--white);
}

.traditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.tradition-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tradition-image {
    height: 200px;
    overflow: hidden;
}

.tradition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tradition-content {
    padding: 25px;
}

.tradition-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--green);
}

.tradition-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.btn-text {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-text:hover {
    color: var(--green);
}

.resources-section {
    padding: 80px 0;
}

.resources-tabs {
    margin-top: 40px;
}

.tab-headers {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
}

.tab-header {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-header.active {
    color: var(--red);
}

.tab-header.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--red);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.article-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.article-card:hover {
    transform: translateY(-10px);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: 25px;
}

.article-category {
    display: inline-block;
    padding: 5px 10px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--green);
}

.article-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(206, 17, 38, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.video-card:hover .play-button {
    background-color: var(--red);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--green);
}

.video-info p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.video-duration {
    font-size: 0.9rem;
    color: #999;
}

.learning-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('public/images/culture/learning-cta.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.learning-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.learning-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Styles for Culture Page */
@media (max-width: 992px) {
    .culture-hero h1 {
        font-size: 2.5rem;
    }
    
    .culture-hero p {
        font-size: 1.2rem;
    }
    
    .culture-nav-items {
        gap: 10px;
    }
    
    .culture-nav-item {
        min-width: 100px;
        padding: 15px 10px;
    }
}

@media (max-width: 768px) {
    .culture-hero h1 {
        font-size: 2rem;
    }
    
    .tab-headers {
        flex-wrap: wrap;
    }
    
    .tab-header {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .learning-cta h2 {
        font-size: 2rem;
    }
}

/* Media & Gallery Page Styles */
.media-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.media-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.media-hero p {
    font-size: 1.5rem;
}

.gallery-filter {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.gallery-filter .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.sort-options select {
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: var(--white);
}

.photo-gallery {
    padding: 80px 0;
}

.gallery-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.gallery-section-desc {
    text-align: center;
    margin-bottom: 50px;
    font-size: 1.1rem;
    color: #666;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.gallery-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-thumb {
    height: 250px;
    overflow: hidden;
    position: relative;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-actions {
    display: flex;
    gap: 15px;
}

.gallery-action-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--black);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.gallery-action-btn:hover {
    background-color: var(--red);
    color: var(--white);
    transform: scale(1.1);
}

.gallery-info {
    padding: 20px;
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--green);
}

.gallery-info p {
    color: #666;
    font-size: 0.9rem;
}

.video-gallery {
    padding: 80px 0;
    background-color: var(--gold);
}

.video-gallery .gallery-section-title {
    color: var(--black);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.video-item {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.video-player {
    position: relative;
}

.video-thumbnail {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(206, 17, 38, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-item:hover .play-button {
    background-color: var(--red);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--green);
}

.video-info p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.video-duration,
.video-views {
    font-size: 0.9rem;
    color: #999;
    margin-right: 15px;
}

.expeditions-gallery {
    padding: 80px 0;
}

.expedition-highlights {
    position: relative;
}

.expedition-slider {
    display: flex;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.expedition-slide {
    min-width: 100%;
    display: flex;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slide-image {
    flex: 1;
    min-height: 400px;
}

.slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--green);
}

.slide-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--black);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.slider-prev:hover,
.slider-next:hover {
    background-color: var(--red);
    color: var(--white);
}

.media-download {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.download-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--green);
}

.download-text p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.download-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.media-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('public/images/media/social-cta.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.media-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.media-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.social-tags {
    margin-bottom: 30px;
}

.social-tag {
    display: inline-block;
    padding: 8px 15px;
    background-color: var(--gold);
    color: var(--black);
    border-radius: 4px;
    margin: 0 10px 10px 0;
    font-weight: 600;
}

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

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--red);
    color: var(--white);
    transform: translateY(-5px);
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--black);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 10;
}

.lightbox-image {
    flex: 1;
    overflow: hidden;
}

.lightbox-image img {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
}

.lightbox-info {
    padding: 20px;
    text-align: center;
}

.lightbox-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--green);
}

.lightbox-info p {
    margin-bottom: 20px;
    color: #666;
}

/* Responsive Styles for Media Page */
@media (max-width: 992px) {
    .media-hero h1 {
        font-size: 2.5rem;
    }
    
    .media-hero p {
        font-size: 1.2rem;
    }
    
    .gallery-filter .container {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .expedition-slide {
        flex-direction: column;
    }
    
    .slide-image {
        min-height: 300px;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .media-hero h1 {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-section-title {
        font-size: 2rem;
    }
    
    .lightbox-content {
        flex-direction: column;
    }
    
    .lightbox-image {
        max-height: 50vh;
    }
}

/* Blog Page Styles */
.blog-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.blog-hero p {
    font-size: 1.5rem;
}

.blog-content {
    padding: 60px 0;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

/* Featured Post */
.featured-post {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 50px;
}

.featured-image {
    height: 400px;
    position: relative;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: var(--red);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
}

.featured-content {
    padding: 40px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.post-category {
    color: var(--red);
    font-weight: 600;
}

.post-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.post-excerpt {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.post-author {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 600;
    color: var(--green);
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

/* Blog Filter */
.blog-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--white);
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--red);
    color: var(--white);
    border-color: var(--red);
}

/* Blog Posts Grid */
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
}

.post-image {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--gold);
    color: var(--black);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content {
    padding: 25px;
}

.post-content .post-meta {
    margin-bottom: 10px;
}

.post-content .post-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: var(--primary-font);
}

.post-content .post-excerpt {
    font-size: 1rem;
    margin-bottom: 20px;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-content .post-author {
    margin-bottom: 0;
}

.post-content .author-avatar {
    width: 35px;
    height: 35px;
}

.read-more {
    color: var(--red);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--green);
}

/* Pagination */
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #ddd;
    background-color: var(--white);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
    background-color: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.pagination-btn.next {
    width: auto;
    padding: 0 20px;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.sidebar-widget p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #555;
}

.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #555;
    transition: color 0.3s ease;
}

.categories-list a:hover {
    color: var(--red);
}

.categories-list span {
    background-color: #f5f5f5;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post {
    display: flex;
    gap: 15px;
}

.popular-post-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.popular-post-content h4 a {
    color: var(--green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-post-content h4 a:hover {
    color: var(--red);
}

.popular-post-content .post-date {
    font-size: 0.8rem;
    color: #666;
}

.blog-newsletter {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.blog-newsletter input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    padding: 5px 12px;
    background-color: #f5f5f5;
    color: #555;
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--red);
    color: var(--white);
}

/* Blog CTA */
.blog-cta {
    padding: 80px 0;
    background-color: var(--green);
    color: var(--white);
    text-align: center;
}

.blog-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.blog-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Styles for Blog Page */
@media (max-width: 992px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero p {
        font-size: 1.2rem;
    }
    
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-image {
        height: 300px;
    }
    
    .post-title {
        font-size: 1.8rem;
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-content {
        padding: 25px;
    }
    
    .blog-filter {
        overflow-x: auto;
        padding-bottom: 15px;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .post-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* Contact Page Styles */
.contact-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.contact-hero p {
    font-size: 1.5rem;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

/* Contact Information */
.contact-info-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.contact-info-card > p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #555;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    color: var(--black);
    font-size: 1.2rem;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--green);
}

.contact-text p {
    color: #666;
    line-height: 1.5;
}

.social-contact h3 {
    margin-bottom: 15px;
    color: var(--green);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background-color: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--red);
    color: var(--white);
    transform: translateY(-3px);
}

/* FAQ Section */
.faq-section {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.faq-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--green);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--red);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 20px 0;
    color: #666;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-section {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.contact-form-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.contact-form-card h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.contact-form-card > p {
    margin-bottom: 30px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    min-height: 20px;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

/* Quick Contact Options */
.quick-contact-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.quick-contact-card h3 {
    margin-bottom: 20px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.quick-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.quick-contact-btn:hover {
    transform: translateY(-3px);
}

.whatsapp-btn {
    background-color: #25D366;
}

.phone-btn {
    background-color: var(--red);
}

.email-btn {
    background-color: var(--green);
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.map-section > p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.map-embed {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-placeholder {
    height: 100%;
    background-color: #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #6c757d;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--red);
}

.map-placeholder h3 {
    margin-bottom: 10px;
    color: var(--green);
}

.map-address {
    font-weight: 600;
    color: var(--black);
    margin-top: 15px;
}

.map-info {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-info h3 {
    margin-bottom: 25px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.transport-options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.transport-option {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.transport-option i {
    font-size: 1.5rem;
    color: var(--red);
    margin-top: 3px;
}

.transport-option h4 {
    margin-bottom: 5px;
    color: var(--green);
}

.transport-option p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Team Contact Section */
.team-contact {
    padding: 80px 0;
    background-color: var(--gold);
}

.team-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--black);
    font-family: var(--cultural-font);
}

.team-contact > p {
    text-align: center;
    margin-bottom: 50px;
    color: var(--black);
}

.team-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.team-contact-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.team-member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid var(--gold);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info h3 {
    margin-bottom: 5px;
    color: var(--green);
}

.position {
    color: var(--red);
    font-weight: 600;
    margin-bottom: 10px;
}

.expertise {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.team-contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-contact-links a {
    color: #555;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: color 0.3s ease;
}

.team-contact-links a:hover {
    color: var(--red);
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('public/images/contact/cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--green);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 30px 25px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 20px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    text-align: center;
}

/* Responsive Styles for Contact Page */
@media (max-width: 992px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-section {
        position: static;
    }
    
    .map-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info-card,
    .faq-section,
    .contact-form-card {
        padding: 25px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .quick-contact-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .quick-contact-btn {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .team-contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Booking Page Styles */
.booking-hero {
    height: 50vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.booking-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.booking-hero p {
    font-size: 1.5rem;
}

.booking-process {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.booking-section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.booking-section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 1.1rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--green);
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.expedition-selection {
    padding: 80px 0;
}

.expedition-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.expedition-option {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.expedition-option:hover {
    transform: translateY(-10px);
}

.expedition-image {
    height: 200px;
    overflow: hidden;
}

.expedition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-expedition-placeholder {
    height: 100%;
    background-color: var(--gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.custom-expedition-placeholder i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.expedition-details {
    padding: 25px;
}

.expedition-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--green);
}

.expedition-duration {
    color: var(--red);
    font-weight: 600;
    margin-bottom: 5px;
}

.expedition-price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--black);
}

.expedition-highlights {
    list-style: none;
    margin-bottom: 20px;
}

.expedition-highlights li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: #666;
}

.expedition-highlights i {
    color: var(--green);
    margin-right: 10px;
}

.booking-form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.booking-form-container {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.form-header p {
    color: #666;
    margin-bottom: 20px;
}

.selected-expedition {
    background-color: var(--gold);
    padding: 15px;
    border-radius: 4px;
    font-weight: 600;
    color: var(--black);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.form-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--green);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gold);
}

.section-description {
    color: #666;
    margin-bottom: 20px;
    font-style: italic;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--red);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    margin-top: 5px;
    min-height: 20px;
}

.traveler-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 20px;
}

.traveler-form h4 {
    margin-bottom: 15px;
    color: var(--green);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.payment-info {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
}

.payment-options {
    margin: 20px 0;
}

.payment-option {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.payment-option input {
    margin-right: 10px;
}

.payment-option label {
    font-weight: 600;
    color: #555;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.booking-assistance {
    margin-top: 40px;
}

.assistance-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.assistance-card h3 {
    margin-bottom: 15px;
    color: var(--green);
}

.assistance-card p {
    margin-bottom: 20px;
    color: #666;
}

.assistance-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.assistance-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.assistance-link:hover {
    background-color: var(--red);
    color: var(--white);
}

.why-book {
    padding: 80px 0;
    background-color: var(--green);
    color: var(--white);
}

.why-book .section-title {
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.booking-testimonials {
    padding: 80px 0;
}

.testimonial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
    color: #555;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin-bottom: 5px;
    color: var(--green);
}

.testimonial-author p {
    color: #666;
    font-size: 0.9rem;
}

.booking-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('public/images/book/cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.booking-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.booking-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: var(--white);
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    overflow: hidden;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: var(--green);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-body {
    padding: 30px 25px;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--green);
    margin-bottom: 20px;
}

.modal-body p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.booking-details {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 6px;
    margin-top: 20px;
}

.booking-details h4 {
    margin-bottom: 10px;
    color: var(--green);
}

.booking-details span {
    color: var(--red);
    font-weight: 600;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid #eee;
    text-align: center;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Responsive Styles for Booking Page */
@media (max-width: 992px) {
    .booking-hero h1 {
        font-size: 2.5rem;
    }
    
    .booking-hero p {
        font-size: 1.2rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .expedition-cards {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 768px) {
    .booking-hero h1 {
        font-size: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .booking-form-container {
        padding: 25px;
    }
    
    .form-section {
        padding: 20px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .assistance-contacts {
        flex-direction: column;
    }
}

/* Culture Page Specific Styles */
.culture-hero {
    height: 60vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/hero.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.culture-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.culture-hero p {
    font-size: 1.5rem;
}

.culture-nav {
    padding: 40px 0;
    background-color: var(--gold);
}

.culture-nav-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
}

.culture-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--black);
    padding: 15px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.culture-nav-item:hover {
    background-color: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.culture-nav-item i {
    font-size: 2rem;
    margin-bottom: 10px;
}

.culture-nav-item span {
    font-weight: 600;
}

/* Adinkra Section */
.adinkra-section {
    padding: 80px 0;
}

.adinkra-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.adinkra-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.adinkra-card:hover {
    transform: translateY(-10px);
}

.adinkra-symbol {
    margin-bottom: 20px;
}

.adinkra-symbol img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.adinkra-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--green);
}

.adinkra-meaning {
    font-style: italic;
    color: var(--red);
    margin-bottom: 15px;
    font-weight: 600;
}

.adinkra-desc {
    color: #666;
    line-height: 1.6;
}

/* Traditions Section */
.traditions-section {
    padding: 80px 0;
    background-color: var(--green);
    color: var(--white);
}

.traditions-section .section-title h2 {
    background-color: var(--green);
    color: var(--white);
}

.traditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tradition-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tradition-image {
    height: 200px;
    overflow: hidden;
}

.tradition-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tradition-content {
    padding: 25px;
}

.tradition-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--green);
}

.tradition-content p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

/* Festivals Section */
.festivals-section {
    padding: 80px 0;
}

.festivals-tabs {
    margin-top: 40px;
}

.tab-headers {
    display: flex;
    border-bottom: 2px solid #eee;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-header {
    padding: 15px 30px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-header.active {
    color: var(--red);
}

.tab-header.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--red);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.festival-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.festival-image {
    border-radius: 8px;
    overflow: hidden;
}

.festival-image img {
    width: 100%;
    height: auto;
    display: block;
}

.festival-info h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--green);
}

.festival-period, .festival-location {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--red);
}

.festival-highlights {
    margin-top: 20px;
}

.festival-highlights h4 {
    margin-bottom: 10px;
    color: var(--green);
}

.festival-highlights ul {
    list-style-type: disc;
    margin-left: 20px;
}

.festival-highlights li {
    margin-bottom: 5px;
}

/* Cuisine Section */
.cuisine-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.cuisine-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cuisine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.dish-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-5px);
}

.dish-image {
    height: 200px;
    overflow: hidden;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-info {
    padding: 20px;
}

.dish-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--green);
}

.dish-info p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.5;
}

.dish-ingredients {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ingredient-tag {
    background-color: var(--gold);
    color: var(--black);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cuisine-cta {
    text-align: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.cuisine-cta h3 {
    margin-bottom: 15px;
    color: var(--green);
}

.cuisine-cta p {
    margin-bottom: 20px;
    color: #666;
}

/* Crafts Section */
.crafts-section {
    padding: 80px 0;
}

.crafts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.craft-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.craft-card:hover {
    transform: translateY(-5px);
}

.craft-image {
    height: 200px;
    overflow: hidden;
}

.craft-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.craft-info {
    padding: 20px;
}

.craft-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--green);
}

.craft-info p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.5;
}

.craft-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 600;
}

/* Language Section */
.language-section {
    padding: 80px 0;
    background-color: var(--gold);
}

.language-section .section-title h2 {
    background-color: var(--gold);
}

.language-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.language-card {
    background-color: var(--white);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.language-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--green);
}

.language-card p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.5;
}

.common-phrases h4 {
    margin-bottom: 10px;
    color: var(--red);
}

.common-phrases ul {
    list-style-type: none;
}

.common-phrases li {
    margin-bottom: 8px;
    padding-left: 0;
}

.language-learning {
    text-align: center;
    padding: 40px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 600px;
    margin: 0 auto;
}

.language-learning h3 {
    margin-bottom: 15px;
    color: var(--green);
}

.language-learning p {
    margin-bottom: 20px;
    color: #666;
}

/* Cultural Experiences CTA */
.cultural-experiences-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('public/images/culture/cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .culture-hero h1 {
        font-size: 2.5rem;
    }
    
    .culture-hero p {
        font-size: 1.2rem;
    }
    
    .culture-nav-items {
        gap: 10px;
    }
    
    .culture-nav-item {
        min-width: 100px;
        padding: 15px 10px;
    }
    
    .festival-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .culture-hero h1 {
        font-size: 2rem;
    }
    
    .tab-headers {
        flex-wrap: wrap;
    }
    
    .tab-header {
        padding: 10px 15px;
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Article Details Styles */
.article-details-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
}

.article-details-hero .breadcrumb {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    color: var(--white);
}

.article-details-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.article-excerpt {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.article-meta-hero {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.article-meta-hero span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Article Gallery */
.article-gallery {
    padding: 40px 0;
    background-color: #f9f9f9;
}

.gallery-main {
    max-width: 800px;
    margin: 0 auto;
}

.main-image {
    position: relative;
    margin-bottom: 20px;
}

.main-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 1.5rem;
}

.gallery-nav.prev {
    left: 10px;
}

.gallery-nav.next {
    right: 10px;
}

.gallery-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Article Content Layout */
.article-details-content {
    padding: 60px 0;
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.article-main {
    max-width: 100%;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 50px;
}

.article-content h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--red);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.article-content blockquote {
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
}

/* Key Takeaways */
.key-takeaways {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.takeaway-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.takeaway-item i {
    color: var(--green);
    margin-top: 3px;
}

/* Related Practices */
.practices-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.practice-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}

.practice-item h3 {
    margin-bottom: 10px;
    color: var(--green);
}

.practice-region {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--red);
    font-size: 0.9rem;
    margin-top: 10px;
}

/* Article Tags */
.article-tags {
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tag {
    background-color: var(--gold);
    color: var(--black);
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.tag:hover {
    background-color: var(--red);
    color: var(--white);
}

/* Article Actions */
.article-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

/* Author Bio */
.author-bio {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
}

.author-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    margin-bottom: 5px;
    color: var(--green);
}

.author-title {
    color: #666;
    margin-bottom: 10px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.social-link {
    color: var(--red);
    text-decoration: none;
    font-size: 1.2rem;
}

/* Comments Section */
.comments-section {
    margin: 60px 0;
}

.comment {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.comment-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.comment-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-author-info h4 {
    margin-bottom: 5px;
    color: var(--green);
}

.comment-date {
    color: #666;
    font-size: 0.9rem;
}

.comment-actions {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.btn-text {
    background: none;
    border: none;
    color: var(--red);
    cursor: pointer;
    text-decoration: underline;
}

.comment-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.toc-card,
.related-articles-card,
.resources-card,
.newsletter-card,
.quick-facts-card {
    background-color: var(--white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.toc-card h3,
.related-articles-card h3,
.resources-card h3,
.newsletter-card h3,
.quick-facts-card h3 {
    margin-bottom: 20px;
    color: var(--green);
    font-family: var(--cultural-font);
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toc-item {
    color: #666;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    transition: color 0.3s ease;
}

.toc-item:hover {
    color: var(--red);
}

.toc-h2 {
    font-weight: 600;
    padding-left: 0;
}

.toc-h3 {
    font-weight: normal;
    padding-left: 15px;
    font-size: 0.9rem;
}

.related-articles-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.related-article {
    display: flex;
    gap: 15px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.related-article:hover {
    transform: translateX(5px);
}

.related-article-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.related-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-article-content h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--green);
}

.related-article-date {
    color: #666;
    font-size: 0.8rem;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background-color: #f9f9f9;
    border-radius: 4px;
    text-decoration: none;
    color: #555;
    transition: all 0.3s ease;
}

.resource-item:hover {
    background-color: var(--gold);
    color: var(--black);
}

.resource-item i {
    color: var(--red);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.facts-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fact-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.fact-item:last-child {
    border-bottom: none;
}

/* Related Expeditions */
.related-expeditions {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.related-expeditions h2 {
    text-align: center;
    margin-bottom: 15px;
    color: var(--green);
}

.related-expeditions > p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

/* Article CTA */
.article-details-cta {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('public/images/culture/article-cta-bg.jpg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
}

.article-details-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: var(--cultural-font);
}

.article-details-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .article-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-sidebar {
        position: static;
    }
    
    .article-details-hero h1 {
        font-size: 2.2rem;
    }
    
    .article-excerpt {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .article-details-hero {
        height: 60vh;
    }
    
    .article-details-hero h1 {
        font-size: 1.8rem;
    }
    
    .article-meta-hero {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-actions {
        flex-direction: column;
    }
    
    .author-header {
        flex-direction: column;
        text-align: center;
    }
    
    .gallery-thumbnails {
        justify-content: flex-start;
        overflow-x: auto;
    }
    
    .thumbnail {
        flex-shrink: 0;
    }
}

/* Ensure lightbox and modal styles work with active class */
.lightbox-modal.active {
    display: flex !important;
}

.video-modal.active {
    display: flex !important;
}

/* Loading state improvements */
.loading-spinner {
    display: none;
    text-align: center;
    padding: 2rem;
}

.loading-spinner.active {
    display: block;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--red);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Filter button active states */
.filter-btn.active {
    background-color: var(--red);
    color: var(--white);
    border-color: var(--red);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .gallery-actions {
        gap: 10px;
    }
    
    .gallery-action-btn {
        width: 40px;
        height: 40px;
    }
    
    .filter-options {
        overflow-x: auto;
        padding-bottom: 10px;
    }
}