/* ===== THÈMES POUR LE SITE DE GONDENANS LES MOULINS ===== */

/* ===== THÈME VILLAGE (par défaut) ===== */
.village-theme {
    --primary-color: #2c5530;
    --secondary-color: #4a7c59;
    --accent-color: #ffd700;
    --text-color: #333;
    --bg-color: #f8f9fa;
    --card-bg: #ffffff;
    --border-color: #e9ecef;
}

.village-theme .hero-section {
    background: url('/images/photo-arriere-plan-bienvenue.png') center/cover no-repeat;
}

.village-theme .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.village-theme .nav-brand a,
.village-theme .section-header h2,
.village-theme .intro-content h2,
.village-theme .album-title a,
.village-theme .news-content h3,
.village-theme .widget h3 {
    color: var(--primary-color);
}

.village-theme .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.village-theme .btn-primary:hover {
    background: #1e3a21;
    border-color: #1e3a21;
}

.village-theme .nav-link:hover {
    background: var(--primary-color);
}

.village-theme .main-footer {
    background: var(--primary-color);
}

.village-theme .hero-title i,
.village-theme .section-header h2 i,
.village-theme .intro-content h2 i,
.village-theme .widget h3 i,
.village-theme .footer-section h3 {
    color: var(--accent-color);
}

/* Effets spéciaux pour le thème village */
.village-theme .album-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.village-theme .album-card:hover::before {
    opacity: 1;
}

.village-theme .intro-image::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.8;
}

/* ===== THÈME NATURE ===== */
.nature-theme {
    --primary-color: #228B22;
    --secondary-color: #32CD32;
    --accent-color: #FFD700;
    --text-color: #2F4F2F;
    --bg-color: #F0FFF0;
    --card-bg: #ffffff;
    --border-color: #90EE90;
}

.nature-theme body {
    background-color: var(--bg-color);
    color: var(--text-color);
}

.nature-theme .hero-section {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 50%, #90EE90 100%);
}

.nature-theme .hero-section::before {
    background-image: url('/images/nature-bg.jpg');
    opacity: 0.4;
}

.nature-theme .main-header {
    background: rgba(240, 255, 240, 0.95);
    border-bottom: 2px solid var(--border-color);
}

.nature-theme .nav-brand a,
.nature-theme .section-header h2,
.nature-theme .intro-content h2,
.nature-theme .album-title a,
.nature-theme .news-content h3,
.nature-theme .widget h3 {
    color: var(--primary-color);
}

.nature-theme .btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.nature-theme .btn-primary:hover {
    background: #006400;
    border-color: #006400;
    box-shadow: 0 5px 15px rgba(34, 139, 34, 0.3);
}

.nature-theme .nav-link:hover {
    background: var(--primary-color);
}

.nature-theme .main-footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #006400 100%);
}

.nature-theme .hero-title i,
.nature-theme .section-header h2 i,
.nature-theme .intro-content h2 i,
.nature-theme .widget h3 i,
.nature-theme .footer-section h3 {
    color: var(--accent-color);
}

.nature-theme .recent-albums {
    background: linear-gradient(135deg, #F0FFF0 0%, #E6FFE6 100%);
}

.nature-theme .village-intro {
    background: linear-gradient(135deg, #ffffff 0%, #F5FFFA 100%);
}

.nature-theme .album-card {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, var(--secondary-color), var(--primary-color)) border-box;
}

.nature-theme .album-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.2);
}

.nature-theme .album-placeholder {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.nature-theme .news-date {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.nature-theme .event-date {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.nature-theme .widget {
    background: linear-gradient(135deg, #ffffff 0%, #F0FFF0 100%);
    border: 1px solid var(--border-color);
}

.nature-theme .tag {
    background: linear-gradient(135deg, var(--border-color), #98FB98);
    color: var(--primary-color);
    font-weight: 600;
}

/* Effets spéciaux pour le thème nature */
.nature-theme .album-card::before {
    content: '🌿';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.nature-theme .album-card:hover::before {
    opacity: 0.8;
}

.nature-theme .intro-image::after {
    content: '🍃';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.7;
}

.nature-theme .hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23F0FFF0'%3E%3C/path%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
    z-index: 4;
}

/* ===== STYLES SPÉCIFIQUES POUR LA PAGE VILLAGE ===== */

/* Village stats cards */
.village-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* ===== STYLES SPÉCIFIQUES POUR LA PAGE MONUMENTS ===== */

/* Monuments section */
.monuments-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.monuments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.monument-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.monument-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.monument-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.monument-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.monument-card:hover .monument-image img {
    transform: scale(1.1);
}

.monument-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.monument-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.monument-content {
    padding: 2rem;
}

.monument-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.monument-content h3 i {
    color: var(--accent-color);
}

.monument-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.monument-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #888;
    font-size: 0.9rem;
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.detail-item i {
    color: var(--primary-color);
}

/* Natural sites section */
.natural-sites-section {
    padding: 4rem 0;
}

.sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.site-card {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--secondary-color);
}

.site-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.site-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.site-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.site-card:hover .site-image img {
    transform: scale(1.1);
}

.site-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.site-badge {
    background: var(--secondary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.site-content {
    padding: 2rem;
}

.site-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-content h3 i {
    color: var(--accent-color);
}

.site-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.site-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: #888;
    font-size: 0.85rem;
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
}

.feature-item i {
    color: var(--secondary-color);
}

/* Rural heritage section */
.rural-heritage-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.heritage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.heritage-item {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.heritage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.heritage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.heritage-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.heritage-content p {
    color: #666;
    line-height: 1.6;
}

/* Practical info section */
.practical-info-section {
    padding: 4rem 0;
}

/* Responsive design for monuments page */
@media (max-width: 768px) {
    .monuments-grid,
    .sites-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .monument-image,
    .site-image {
        height: 200px;
    }
    
    .monument-content,
    .site-content {
        padding: 1.5rem;
    }
    
    .heritage-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .heritage-item {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .heritage-icon {
        align-self: center;
    }
    
    .monument-details,
    .site-features {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .monument-content h3,
    .site-content h3 {
        font-size: 1.2rem;
    }
    
    .heritage-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .detail-item,
    .feature-item {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
    }
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 0.25rem;
}

/* Geography section */
.geography-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.info-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3 i {
    color: var(--accent-color);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f1f3f4;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-list li:last-child {
    border-bottom: none;
}

/* Highlight section */
.highlight-section {
    margin-top: 3rem;
}

.highlight-card {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.highlight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-card h3 i {
    color: var(--accent-color);
}

/* Demographics section */
.demographics-section {
    padding: 4rem 0;
}

.demographics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.demo-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.demo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.demo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.demo-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.demo-label {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

/* Climate section */
.climate-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.climate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.climate-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
    border-left: 5px solid var(--primary-color);
}

.climate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.climate-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.climate-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.climate-value {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    line-height: 1;
}

.climate-content p {
    margin: 0.5rem 0 0 0;
    color: #6c757d;
    line-height: 1.4;
}

/* Neighbors section */
.neighbors-section {
    padding: 4rem 0;
}

.neighbors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.neighbor-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.neighbor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.neighbor-direction {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.neighbor-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Admin info section */
.admin-info-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    width: 16px;
}

/* Responsive design */
@media (max-width: 768px) {
    .village-stats {
        margin-top: 2rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .demographics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .climate-grid {
        grid-template-columns: 1fr;
    }
    
    .climate-card {
        flex-direction: column;
        text-align: center;
    }
    
    .neighbors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .demo-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .demo-number {
        font-size: 2rem;
    }
    
    .climate-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .neighbors-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .climate-value {
        font-size: 1.5rem;
    }
    
    .demo-number {
        font-size: 1.8rem;
    }
}

/* ===== ANIMATIONS COMMUNES AUX THÈMES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Application des animations */
.album-card {
    animation: fadeInUp 0.6s ease forwards;
}

.album-card:nth-child(1) { animation-delay: 0.1s; }
.album-card:nth-child(2) { animation-delay: 0.2s; }
.album-card:nth-child(3) { animation-delay: 0.3s; }
.album-card:nth-child(4) { animation-delay: 0.4s; }
.album-card:nth-child(5) { animation-delay: 0.5s; }
.album-card:nth-child(6) { animation-delay: 0.6s; }

.intro-content {
    animation: slideInLeft 0.8s ease forwards;
}

.intro-image {
    animation: slideInRight 0.8s ease forwards;
}

.news-item {
    animation: fadeInUp 0.6s ease forwards;
}

.news-item:nth-child(1) { animation-delay: 0.1s; }
.news-item:nth-child(2) { animation-delay: 0.2s; }
.news-item:nth-child(3) { animation-delay: 0.3s; }

.widget {
    animation: fadeInUp 0.6s ease forwards;
}

.widget:nth-child(1) { animation-delay: 0.2s; }
.widget:nth-child(2) { animation-delay: 0.4s; }

/* Effets au survol */
.album-card:hover .album-image img {
    animation: pulse 2s infinite;
}

.btn:hover {
    animation: pulse 0.6s ease;
}

/* ===== THÈME SAISONNIER (optionnel) ===== */
.seasonal-spring {
    --seasonal-color: #98FB98;
}

.seasonal-summer {
    --seasonal-color: #FFD700;
}

.seasonal-autumn {
    --seasonal-color: #FF8C00;
}

.seasonal-winter {
    --seasonal-color: #87CEEB;
}

/* Particules flottantes pour le thème nature */
.nature-theme .hero-section::before {
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        url('/images/nature-bg.jpg');
}

/* Responsive pour les thèmes */
@media (max-width: 768px) {
    .nature-theme .hero-section::after {
        height: 50px;
    }
    
    .album-card::before {
        font-size: 1.2rem;
    }
    
    .intro-image::after {
        font-size: 1.5rem;
        top: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .nature-theme .hero-section::after {
        height: 30px;
    }
    
    .album-card::before {
        display: none;
    }
    
    .intro-image::after {
        display: none;
    }
}

/* ===== DARK MODE (optionnel) ===== */
@media (prefers-color-scheme: dark) {
    .village-theme {
        --bg-color: #1a1a1a;
        --card-bg: #2d2d2d;
        --text-color: #e0e0e0;
        --border-color: #404040;
    }
    
    .nature-theme {
        --bg-color: #0d1f0d;
        --card-bg: #1a2e1a;
        --text-color: #e0f0e0;
        --border-color: #2d4f2d;
    }
    
    .main-header {
        background: rgba(0, 0, 0, 0.9) !important;
    }
    
    .album-card,
    .widget,
    .news-item {
        background: var(--card-bg);
        color: var(--text-color);
    }
}
