/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #0ea5e9;
    --primary-teal: #06b6d4;
    --primary-green: #10b981;
    --accent-orange: #f59e0b;
    --accent-red: #dc2626;
    --accent-purple: #8b5cf6;
    --dark-blue: #1e293b;
    --light-gray: #f8fafc;
    --medium-gray: #64748b;
    --white: #ffffff;
    --gradient-ocean: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 50%, var(--primary-green) 100%);
    --gradient-sunset: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-red) 100%);
    --gradient-tropical: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-teal) 100%);
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 15px 40px rgba(0, 0, 0, 0.2);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-blue);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 1.8rem;
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-link {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-ocean);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark-blue);
    margin: 3px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-ocean);
    opacity: 0.6;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cta-button {
    background: var(--gradient-sunset);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-bounce);
    box-shadow: var(--shadow-medium);
    animation: fadeInUp 1s ease-out 0.8s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.cta-button i {
    margin-left: 0.5rem;
    transition: var(--transition-smooth);
}

.cta-button:hover i {
    transform: translateY(3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 2px;
    height: 30px;
    background: var(--white);
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

/* Sections générales */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-ocean);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Section Économie */
.economics-section {
    background: var(--white);
}

.economics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(14, 165, 233, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-ocean);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-ocean);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.stat-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.stat-content h3 {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.stat-description {
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.stat-additional {
    background: var(--light-gray);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-block;
}

.economics-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.chart-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
}

.economic-context h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

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

.context-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.context-list li:hover {
    transform: translateX(10px);
}

.context-list i {
    color: var(--primary-blue);
    margin-right: 1rem;
    font-size: 0.8rem;
}

/* Section Enfant */
.child-section {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 50%, #f59e0b 100%);
}

.child-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.child-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.responsive-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.child-image:hover .responsive-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem;
}

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

.overlay-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.overlay-text {
    font-size: 1rem;
}

.child-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.challenge-card,
.hope-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.challenge-card h3,
.hope-card h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--dark-blue);
}

.challenge-card h3 i {
    color: var(--accent-red);
    margin-right: 0.5rem;
}

.hope-card h3 i {
    color: var(--primary-green);
    margin-right: 0.5rem;
}

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

.challenge-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.challenge-list li::before {
    content: '•';
    color: var(--accent-red);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Section Coutumes */
.customs-section {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 50%, #f3e8ff 100%);
}

.customs-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.customs-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
    position: sticky;
    top: 100px;
}

.customs-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.custom-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

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

.custom-card h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--dark-blue);
}

.custom-card h3 i {
    color: var(--accent-purple);
    margin-right: 0.5rem;
}

.custom-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.detail-item h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.highlight-box {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-purple);
    margin-top: 1rem;
    font-style: italic;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.value-item h4 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

.value-item h4 i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

.value-item ul {
    list-style: none;
}

.value-item ul li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.value-item ul li::before {
    content: '•';
    color: var(--primary-blue);
    position: absolute;
    left: 0;
}

/* Section Croyances */
.beliefs-section {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #10b981 100%);
}

.beliefs-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.main-religion {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.religion-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-tropical);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.religion-icon i {
    font-size: 2rem;
    color: var(--white);
}

.main-religion h3 {
    font-size: 1.8rem;
    color: var(--dark-blue);
    margin-bottom: 1rem;
}

.main-religion > p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.religion-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.detail-box {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: left;
}

.detail-box h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.traditional-beliefs,
.cultural-influences {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.traditional-beliefs h3,
.cultural-influences h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--dark-blue);
}

.traditional-beliefs h3 i {
    color: var(--accent-purple);
    margin-right: 0.5rem;
}

.cultural-influences h3 i {
    color: var(--primary-teal);
    margin-right: 0.5rem;
}

.belief-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.belief-item h4 {
    color: var(--dark-blue);
    margin-bottom: 0.5rem;
}

.belief-item p {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.influence-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--gradient-tropical);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Section Volcan */
.volcano-section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 50%, #dc2626 100%);
    color: var(--white);
}

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

.volcano-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.volcano-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.volcano-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.volcano-stats {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.volcano-stat {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.volcano-stat .stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-red);
}

.volcano-stat .stat-label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.volcano-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.volcano-characteristics,
.eruption-timeline,
.impact-warning {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-blue);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.volcano-characteristics h3,
.eruption-timeline h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.volcano-characteristics h3 i {
    color: var(--accent-red);
    margin-right: 0.5rem;
}

.eruption-timeline h3 i {
    color: var(--accent-orange);
    margin-right: 0.5rem;
}

.char-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.char-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
}

.char-label {
    font-weight: 600;
    color: var(--medium-gray);
}

.char-value {
    font-weight: 600;
    color: var(--dark-blue);
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-sunset);
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--accent-red);
    border-radius: 50%;
    border: 3px solid var(--white);
}

.timeline-year {
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 0.5rem;
}

.timeline-content {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.impact-warning {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--accent-orange);
}

.impact-warning i {
    color: var(--accent-orange);
    font-size: 1.5rem;
}

/* Section Admin */
.admin-section {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #0f172a 100%);
    color: var(--white);
}

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

.admin-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.admin-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.admin-card {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-blue);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.admin-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-ocean);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.admin-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.admin-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--dark-blue);
}

.portal-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.portal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.portal-item:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.portal-name {
    font-weight: 600;
}

.portal-url {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-family: 'Courier New', monospace;
}

.portal-item:hover .portal-url {
    color: rgba(255, 255, 255, 0.8);
}

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

.infrastructure-list li {
    margin-bottom: 1rem;
    padding: 0.75rem;
    background: var(--light-gray);
    border-radius: 8px;
    position: relative;
    padding-left: 2rem;
    transition: var(--transition-smooth);
}

.infrastructure-list li::before {
    content: '▶';
    color: var(--primary-blue);
    position: absolute;
    left: 0.75rem;
}

.infrastructure-list li:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateX(5px);
}

.tech-aspects {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tech-item {
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
    transition: var(--transition-smooth);
}

.tech-item:hover {
    background: var(--primary-blue);
    color: var(--white);
}

.tech-item h4 {
    margin-bottom: 0.5rem;
    color: var(--dark-blue);
}

.tech-item:hover h4 {
    color: var(--white);
}

.tech-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

.tech-item:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.modernization-banner {
    background: rgba(255, 255, 255, 0.95);
    color: var(--dark-blue);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.banner-content p {
    color: var(--medium-gray);
}

.banner-icon i {
    font-size: 3rem;
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.footer-section h3 i {
    margin-right: 0.5rem;
    color: var(--primary-blue);
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--primary-blue);
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: var(--transition-smooth);
        box-shadow: var(--shadow-medium);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .economics-details,
    .child-content,
    .customs-content,
    .volcano-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .admin-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modernization-banner {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .customs-image {
        position: static;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stat-item {
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

