/* Common Styles */
.ultimes-griots-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-brand .nav-logo {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-list li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list li a:hover,
.nav-list li a.active {
    color: #D4AF37;
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
}

.nav-list li a:hover::after,
.nav-list li a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #333;
}

.page-container {
    padding-top: 80px;
    min-height: 100vh;
}

/* Hero Section */
.heritage-hero {
    background: linear-gradient(135deg, #8B4513 0%, #2d1b1b 50%, #1a1a1a 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.heritage-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="african-pattern" patternUnits="userSpaceOnUse" width="25" height="25"><circle cx="12.5" cy="12.5" r="2" fill="rgba(255,255,255,0.03)"/><path d="M5,5 L20,5 L20,20 L5,20 Z" stroke="rgba(255,255,255,0.02)" stroke-width="0.5" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23african-pattern)"/></svg>');
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #D4AF37, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #ddd;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #D4AF37;
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid #D4AF37;
    background: rgba(255,255,255,0.05);
    border-radius: 0 10px 10px 0;
}

/* Regions Section */
.regions-section {
    padding: 100px 0;
    background: white;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #2d1b1b;
}

.regions-map {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.region-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.region-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: #D4AF37;
}

.region-header {
    height: 200px;
    background: linear-gradient(45deg, #D4AF37, #8B4513);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.region-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.region-icon {
    font-size: 4rem;
    position: relative;
    z-index: 2;
}

.region-content {
    padding: 30px;
}

.region-name {
    font-size: 1.8rem;
    color: #2d1b1b;
    margin-bottom: 15px;
    font-weight: 700;
}

.region-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.region-highlights {
    background: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.region-highlights h4 {
    color: #D4AF37;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.region-highlights ul {
    margin: 0;
    padding-left: 20px;
    color: #666;
}

.region-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.region-stat {
    text-align: center;
}

.region-stat strong {
    display: block;
    color: #D4AF37;
    font-size: 1.3rem;
    font-weight: 700;
}

.region-stat span {
    font-size: 0.9rem;
    color: #888;
}

/* Traditions Section */
.traditions-section {
    background: #f8f8f8;
    padding: 100px 0;
}

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

.tradition-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.tradition-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #8B4513);
}

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

.tradition-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.tradition-title {
    color: #2d1b1b;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.tradition-examples {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    font-style: italic;
    color: #555;
}

/* Wisdom Section */
.wisdom-section {
    background: #2d1b1b;
    color: white;
    padding: 100px 0;
}

.wisdom-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.wisdom-title {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #D4AF37;
}

.proverbs-carousel {
    margin-bottom: 60px;
}

.proverb {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid #D4AF37;
}

.proverb-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 20px;
    color: #ddd;
    line-height: 1.6;
}

.proverb-origin {
    color: #D4AF37;
    font-weight: 600;
}

.wisdom-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.wisdom-stat {
    text-align: center;
}

.wisdom-stat h3 {
    font-size: 3rem;
    color: #D4AF37;
    margin-bottom: 10px;
}

.wisdom-stat p {
    font-size: 1.1rem;
    color: #ddd;
}

/* Call to Action */
.cta-section {
    background: white;
    padding: 80px 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-title {
    font-size: 2.5rem;
    color: #2d1b1b;
    margin-bottom: 30px;
}

.cta-description {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
}

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

.cta-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: linear-gradient(45deg, #D4AF37, #FFD700);
    color: #1a1a1a;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    color: #1a1a1a;
}

.cta-secondary {
    background: transparent;
    color: #D4AF37;
    border: 2px solid #D4AF37;
}

.cta-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: rgba(26, 26, 26, 0.98);
        transition: left 0.3s ease;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }
    
    .nav-list li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-list li a {
        display: block;
        padding: 15px 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .regions-map {
        grid-template-columns: 1fr;
    }
    
    .traditions-grid {
        grid-template-columns: 1fr;
    }
    
    .region-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .wisdom-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 250px;
        text-align: center;
    }
}
