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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    min-height: 100vh;
}

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

/* Navigation - Thème Gasme.org */
.navbar {
    background: linear-gradient(135deg, #000000 0%, #330000 50%, #000000 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.3);
    border-bottom: 2px solid #cc0000;
}

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

.nav-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff3333;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.5);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-link:hover {
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    border-color: #ff3333;
    box-shadow: 0 0 15px rgba(255, 51, 51, 0.4);
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #ff3333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Age Selection */
.age-selection-hero {
    background: linear-gradient(135deg, #000000 0%, #1a0000 25%, #330000 50%, #1a0000 75%, #000000 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #e0e0e0;
    padding-top: 80px;
    position: relative;
}

.age-selection-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 51, 51, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 51, 51, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 51, 51, 0.5);
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    color: #cccccc;
}

/* Age Selection Cards */
.age-selection-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.age-cards {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.age-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    border: 2px solid #cc0000;
    border-radius: 20px;
    padding: 2.5rem;
    width: 300px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.age-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.age-card:hover {
    transform: translateY(-10px);
    border-color: #ff3333;
    box-shadow: 0 20px 40px rgba(255, 51, 51, 0.2);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.3));
}

.age-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #ff3333;
}

.age-card p {
    color: #cccccc;
    margin-bottom: 0.5rem;
}

.age-description {
    font-style: italic;
    opacity: 0.8;
    margin-bottom: 1.5rem !important;
}

.age-verification-notice {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid #cc0000;
    border-radius: 10px;
    padding: 1rem;
    margin-top: 2rem;
    color: #ffcccc;
}

/* Buttons - Thème Gasme.org */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    color: white;
    border: 1px solid #ff3333;
    box-shadow: 0 5px 15px rgba(255, 51, 51, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.4);
}

.btn-secondary {
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%);
    color: #e0e0e0;
    border: 1px solid #666666;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    border-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-age-minor {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: 1px solid #4CAF50;
}

.btn-age-minor:hover {
    background: linear-gradient(135deg, #45a049 0%, #4CAF50 100%);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.4);
}

.btn-age-adult {
    background: linear-gradient(135deg, #cc0000 0%, #ff3333 100%);
    color: white;
    border: 1px solid #ff3333;
}

.btn-age-adult:hover {
    background: linear-gradient(135deg, #ff3333 0%, #cc0000 100%);
    box-shadow: 0 10px 25px rgba(255, 51, 51, 0.4);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
}

.btn-danger:hover {
    background: linear-gradient(135deg, #c82333 0%, #dc3545 100%);
}

/* Sections Overview */
.sections-overview {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
}

.sections-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ff3333;
    text-shadow: 0 0 15px rgba(255, 51, 51, 0.3);
}

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

.section-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 1px solid #444444;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 51, 51, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.section-card:hover::before {
    opacity: 1;
}

.section-card:hover {
    transform: translateY(-5px);
    border-color: #cc0000;
    box-shadow: 0 15px 30px rgba(255, 51, 51, 0.2);
}

.section-card[data-age-restriction="adult"] {
    border-color: #ff6600;
}

.section-card[data-age-restriction="adult"]:hover {
    border-color: #ff3333;
}

.section-card[data-age-restriction="admin"] {
    border-color: #9900cc;
}

.section-card[data-age-restriction="admin"]:hover {
    border-color: #cc00ff;
}

.section-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 51, 51, 0.3));
}

.section-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff3333;
}

.section-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Age Restriction Indicators */
.section-card[data-age-restriction="adult"]::after {
    content: "18+";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6600;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

.section-card[data-age-restriction="admin"]::after {
    content: "ADMIN";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #9900cc;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Forms - Thème Gasme.org */
.form-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    padding: 2rem;
    padding-top: 100px;
}

.form-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid #cc0000;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 500px;
}

.form-title {
    text-align: center;
    margin-bottom: 2rem;
    color: #ff3333;
    font-size: 2rem;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #e0e0e0;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #444444;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: #e0e0e0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #cc0000;
    box-shadow: 0 0 15px rgba(204, 0, 0, 0.3);
    background: #2a2a2a;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.form-link {
    text-align: center;
    margin-top: 1.5rem;
    color: #cccccc;
}

.form-link a {
    color: #ff3333;
    text-decoration: none;
    font-weight: 500;
}

.form-link a:hover {
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(255, 51, 51, 0.5);
}

/* Age Warning */
.age-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #fff3cd;
}

.age-verification-info {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid #cc0000;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: #ffcccc;
    text-align: center;
}

/* Modal - Thème Gasme.org */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid #cc0000;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 15px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
    color: #e0e0e0;
}

.modal-content h3 {
    margin-bottom: 1rem;
    color: #ff3333;
    text-shadow: 0 0 10px rgba(255, 51, 51, 0.3);
}

.modal-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* Footer - Thème Gasme.org */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a0000 50%, #000000 100%);
    color: #e0e0e0;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
    border-top: 2px solid #cc0000;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff3333;
    text-shadow: 0 0 5px rgba(255, 51, 51, 0.3);
}

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

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

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #ff3333;
    text-shadow: 0 0 5px rgba(255, 51, 51, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444444;
    color: #cccccc;
}

/* Responsive - Thème Gasme.org */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(51, 0, 0, 0.95) 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        border-top: 2px solid #cc0000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .age-cards {
        flex-direction: column;
        align-items: center;
    }

    .age-card {
        width: 100%;
        max-width: 350px;
    }

    .sections-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

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

/* Utility Classes - Thème Gasme.org */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

.loading {
    text-align: center;
    padding: 2rem;
    color: #cccccc;
}

.error {
    background: rgba(248, 215, 218, 0.1);
    color: #f5c6cb;
    border: 1px solid #f1b0b7;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.success {
    background: rgba(212, 237, 218, 0.1);
    color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
}

/* Message Styles */
.message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 8px;
    z-index: 3000;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid;
}

.message.success {
    background: linear-gradient(135deg, #155724 0%, #28a745 100%);
    color: #d4edda;
    border-color: #28a745;
}

.message.error {
    background: linear-gradient(135deg, #721c24 0%, #dc3545 100%);
    color: #f8d7da;
    border-color: #dc3545;
}

.message.info {
    background: linear-gradient(135deg, #0c5460 0%, #17a2b8 100%);
    color: #d1ecf1;
    border-color: #17a2b8;
}

/* Age Filter Specific Styles */
.age-filter-active {
    filter: brightness(0.5) grayscale(1);
    pointer-events: none;
}

.age-filter-restricted::after {
    content: "🔒 Contenu restreint";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ff3333;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    z-index: 10;
}
/* Styles pour la section Culture & Sorties */

.modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #2a2a2a;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1001;
}

.close:hover,
.close:focus {
    color: #ff6b6b;
    text-decoration: none;
    cursor: pointer;
}

.event-modal-content {
    padding: 30px;
}

.event-modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #444;
}

.event-modal-icon {
    font-size: 4rem;
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-modal-meta {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.event-type-badge,
.event-category-badge {
    background: #ff6b6b;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.event-category-badge {
    background: #ffd93d;
    color: #1a1a1a;
}

.event-modal-info h3 {
    color: #ff6b6b;
    margin: 25px 0 10px 0;
    font-size: 1.2rem;
}

.event-price-large {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd93d;
}

.event-modal-actions {
    display: flex;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
}

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

.sold-out-message {
    color: #ff6b6b;
    font-weight: bold;
    text-align: center;
    padding: 15px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
}

.event-reviews {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #444;
}

.review-card {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

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

.review-rating {
    color: #ffd93d;
}

.verified-badge {
    background: #4CAF50;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
    margin-top: 10px;
    display: inline-block;
}

.reservation-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #fff;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #444;
    border-radius: 8px;
    background: #333;
    color: #fff;
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: #ff6b6b;
}

.reservation-summary {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.reservation-summary h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.reservation-success {
    text-align: center;
    padding: 40px 30px;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.reservation-details {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: left;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 30px 0;
}

.success-note {
    color: #ccc;
    font-style: italic;
}

.event-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: space-between;
    align-items: center;
}

.sold-out {
    background: #666;
    color: #ccc;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
}

.reservation-card {
    background: #2a2a2a;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #ff6b6b;
}

.reservation-card h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

.status-badge {
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.status-confirmed {
    background: #4CAF50;
    color: white;
}

.status-pending {
    background: #ff9800;
    color: white;
}

.status-cancelled {
    background: #f44336;
    color: white;
}

.status-completed {
    background: #2196F3;
    color: white;
}

.error-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    background: #f44336;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.notification-content {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    gap: 10px;
}

.notification-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    margin-left: 10px;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive pour les modals */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
        max-height: 85vh;
    }
    
    .event-modal-header {
        flex-direction: column;
        text-align: center;
    }
    
    .event-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .event-modal-actions,
    .form-actions,
    .success-actions {
        flex-direction: column;
    }
    
    .btn-large {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

/* Styles pour les lieux culturels */
.venue-card h3 {
    color: #fff;
    margin: 15px 0 10px 0;
}

.venue-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ccc;
}

/* Styles pour les ressources culturelles */
.resource-card h3 {
    color: #fff;
    margin: 15px 0 10px 0;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #ccc;
}

.resource-rating {
    color: #ffd93d;
    margin-top: 10px;
}

/* Améliorations pour les filtres */
.search-filters h3 {
    color: #ff6b6b;
    margin-bottom: 20px;
}

.filter-row select,
.filter-row input {
    background: #333;
    border: 2px solid #444;
    color: #fff;
    padding: 10px;
    border-radius: 8px;
}

.filter-row select:focus,
.filter-row input:focus {
    outline: none;
    border-color: #ff6b6b;
}

/* Animation pour les cartes */
.event-card,
.venue-card,
.resource-card {
    transition: all 0.3s ease;
}

.event-card:hover,
.venue-card:hover,
.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.2);
}
/* Styles pour la section Formations */

.course-modal-content {
    padding: 30px;
}

.course-modal-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #444;
}

.course-modal-icon {
    font-size: 4rem;
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-modal-meta {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.course-type-badge,
.course-level-badge {
    background: #4CAF50;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.course-level-badge {
    background: #2196F3;
}

.course-modal-info h3 {
    color: #4CAF50;
    margin: 25px 0 10px 0;
    font-size: 1.2rem;
}

.course-price-large {
    font-size: 1.5rem;
    font-weight: bold;
    color: #4CAF50;
}

.course-modules {
    background: #333;
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

.module-item {
    border-bottom: 1px solid #444;
    padding: 15px 0;
}

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

.module-item h4 {
    color: #fff;
    margin-bottom: 8px;
}

.module-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 10px;
}

.enrollment-form {
    padding: 30px;
}

.enrollment-summary {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
}

.enrollment-summary h3 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.enrollment-success {
    text-align: center;
    padding: 40px 30px;
}

.enrollment-details {
    background: #333;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: left;
}

.enrollment-card {
    background: #2a2a2a;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #4CAF50;
}

.enrollment-card h3 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.certification-card {
    background: #2a2a2a;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
    border-left: 4px solid #FFD700;
}

.certification-card h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

.consultation-card h3 {
    color: #fff;
    margin: 15px 0 10px 0;
}

.consultation-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #ccc;
}

.consultation-rating {
    color: #FF9800;
    margin-top: 10px;
}

.resource-card h3 {
    color: #fff;
    margin: 15px 0 10px 0;
}

.resource-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #ccc;
}

.resource-votes {
    color: #9C27B0;
    margin-top: 10px;
}

.learning-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #444;
}

.tab-button {
    background: transparent;
    color: #ccc;
    border: none;
    padding: 15px 25px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-button.active,
.tab-button:hover {
    color: #4CAF50;
    border-bottom-color: #4CAF50;
}

.tab-content {
    min-height: 300px;
}

.progress-bar {
    background: #333;
    border-radius: 10px;
    height: 10px;
    overflow: hidden;
    margin: 15px 0;
}

.progress-fill {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
    height: 100%;
    transition: width 0.3s ease;
    border-radius: 10px;
}

.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    background: #4CAF50;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

.review-details {
    display: flex;
    gap: 15px;
    margin: 10px 0;
    font-size: 0.9rem;
    color: #ccc;
}

/* Styles pour les types de cours */
.course-card[data-course-type="online"] {
    border-left-color: #2196F3;
}

.course-card[data-course-type="hybrid"] {
    border-left-color: #FF9800;
}

.course-card[data-course-type="consultation"] {
    border-left-color: #9C27B0;
}

.course-card[data-course-type="workshop"] {
    border-left-color: #F44336;
}

.course-card[data-course-type="certification"] {
    border-left-color: #FFD700;
}

/* Responsive pour les formations */
@media (max-width: 768px) {
    .course-modal-header {
        flex-direction: column;
        text-align: center;
    }
    
    .course-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 2.5rem;
    }
    
    .course-modal-meta {
        justify-content: center;
    }
    
    .learning-tabs {
        flex-direction: column;
    }
    
    .tab-button {
        text-align: center;
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab-button.active,
    .tab-button:hover {
        border-left-color: #4CAF50;
        border-bottom-color: transparent;
    }
    
    .course-actions,
    .consultation-meta,
    .resource-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .module-meta,
    .review-details {
        flex-direction: column;
        gap: 5px;
    }
}

/* Animation pour les cartes de cours */
.course-card,
.consultation-card,
.resource-card,
.enrollment-card,
.certification-card {
    transition: all 0.3s ease;
}

.course-card:hover,
.consultation-card:hover,
.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.2);
}

/* Styles pour les badges de statut */
.status-active {
    background: #4CAF50;
    color: white;
}

.status-completed {
    background: #2196F3;
    color: white;
}

.status-dropped {
    background: #f44336;
    color: white;
}

.status-suspended {
    background: #ff9800;
    color: white;
}

/* Styles pour les niveaux de difficulté */
.course-level[data-level="beginner"] {
    background: #4CAF50;
}

.course-level[data-level="intermediate"] {
    background: #FF9800;
}

.course-level[data-level="advanced"] {
    background: #f44336;
}

.course-level[data-level="expert"] {
    background: #9C27B0;
}

/* Amélioration des filtres pour les formations */
.search-filters h3 {
    color: #4CAF50;
    margin-bottom: 20px;
}

/* Styles pour les consultations */
.consultation-type[data-type="individual"] {
    background: #2196F3;
}

.consultation-type[data-type="group"] {
    background: #4CAF50;
}

.consultation-type[data-type="workshop"] {
    background: #FF9800;
}

.consultation-type[data-type="assessment"] {
    background: #9C27B0;
}
/* Styles pour la section Blog & Magazine */

.blog-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #E91E63, #FF5722);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.main-featured {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    background: #2a2a2a;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.main-featured:hover {
    transform: translateY(-5px);
}

.featured-image {
    width: 100%;
    height: 60%;
    background: linear-gradient(45deg, #E91E63, #FF5722);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
}

.featured-content {
    padding: 30px;
    height: 40%;
}

.featured-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #ccc;
    flex-wrap: wrap;
}

.category-badge {
    background: #E91E63;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.secondary-featured {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mini-article {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 20px;
    border-left: 4px solid #E91E63;
    transition: transform 0.3s ease;
    cursor: pointer;
}

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

.articles-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin: 60px 0;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.article-card {
    background: #2a2a2a;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(233, 30, 99, 0.2);
}

.article-header {
    display: flex;
    gap: 20px;
    padding: 25px;
}

.article-thumbnail {
    width: 120px;
    height: 80px;
    background: linear-gradient(45deg, #E91E63, #FF5722);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.article-info {
    flex: 1;
}

.article-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: white;
}

.article-excerpt {
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    gap: 15px;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.engagement-stats {
    display: flex;
    gap: 15px;
    align-items: center;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: #999;
}

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

.sidebar-section {
    background: #2a2a2a;
    border-radius: 15px;
    padding: 25px;
}

.sidebar-title {
    color: #E91E63;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    border-bottom: 2px solid #444;
    padding-bottom: 10px;
}

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

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #333;
    border-radius: 8px;
    transition: background 0.3s ease;
    cursor: pointer;
}

.category-item:hover {
    background: #444;
}

.category-name {
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-icon {
    font-size: 1.2rem;
}

.category-count {
    background: #E91E63;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

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

.tag-item {
    background: #333;
    color: #ccc;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tag-item:hover {
    background: #E91E63;
    color: white;
}

.tag-item.featured {
    background: #E91E63;
    color: white;
}

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

.popular-item {
    display: flex;
    gap: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.popular-item:hover {
    transform: translateX(5px);
}

.popular-thumbnail {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #E91E63, #FF5722);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.popular-info h4 {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.popular-meta {
    font-size: 0.8rem;
    color: #999;
}

.search-section {
    background: #2a2a2a;
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
}

.search-form {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #444;
    border-radius: 25px;
    background: #333;
    color: white;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: #E91E63;
}

.filters-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.filter-select {
    padding: 10px 15px;
    border: 2px solid #444;
    border-radius: 8px;
    background: #333;
    color: white;
}

.filter-select:focus {
    outline: none;
    border-color: #E91E63;
}

.premium-badge {
    background: #FFD700;
    color: #1a1a1a;
    padding: 5px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-block;
    margin-left: 10px;
}

.reading-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.newsletter-form input {
    width: 100%;
    margin-bottom: 15px;
}

/* Styles pour la page article */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-hero {
    text-align: center;
    margin-bottom: 40px;
}

.article-hero h1 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.article-body {
    color: #ccc;
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-body h2,
.article-body h3,
.article-body h4 {
    color: #E91E63;
    margin: 30px 0 15px 0;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body blockquote {
    border-left: 4px solid #E91E63;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #fff;
}

.article-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.like-btn {
    background: transparent;
    border: 2px solid #E91E63;
    color: #E91E63;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.like-btn:hover,
.like-btn.liked {
    background: #E91E63;
    color: white;
}

.share-btn {
    background: transparent;
    border: 2px solid #FF5722;
    color: #FF5722;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #FF5722;
    color: white;
}

.premium-access {
    background: #333;
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 40px 0;
}

.premium-access h3 {
    color: #FFD700;
    margin-bottom: 15px;
}

.premium-access .btn-primary {
    background: linear-gradient(45deg, #FFD700, #FFA000);
    color: #1a1a1a;
}

/* Styles pour les commentaires */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #444;
}

.comment-form {
    background: #333;
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.comment-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 15px;
    border: 2px solid #444;
    border-radius: 10px;
    background: #2a2a2a;
    color: white;
    resize: vertical;
}

.comment-form textarea:focus {
    outline: none;
    border-color: #E91E63;
}

.comment {
    background: #333;
    border-radius: 15px;
    padding: 25px;
    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: 10px;
}

.pinned-badge {
    background: #FF9800;
    color: white;
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.7rem;
}

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

.comment-content {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

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

.comment-like-btn,
.comment-reply-btn {
    background: transparent;
    border: 1px solid #666;
    color: #ccc;
    padding: 8px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.comment-like-btn:hover {
    border-color: #E91E63;
    color: #E91E63;
}

.comment-reply-btn:hover {
    border-color: #2196F3;
    color: #2196F3;
}

.comment-replies {
    margin-top: 20px;
    padding-left: 30px;
    border-left: 3px solid #444;
}

.comment-reply {
    background: #2a2a2a;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.reply-form {
    margin-top: 20px;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 10px;
}

.reply-form textarea {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    border: 2px solid #444;
    border-radius: 8px;
    background: #333;
    color: white;
    margin-bottom: 15px;
}

.reply-actions {
    display: flex;
    gap: 10px;
}

.reply-actions button {
    padding: 8px 20px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
}

.reply-actions button:first-child {
    background: #E91E63;
    color: white;
}

.reply-actions button:last-child {
    background: #666;
    color: white;
}

/* Barre de progression de lecture */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(45deg, #E91E63, #FF5722);
    z-index: 1000;
    transition: width 0.3s ease;
}

/* Responsive pour le blog */
@media (max-width: 768px) {
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .featured-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .article-header {
        flex-direction: column;
    }
    
    .article-thumbnail {
        width: 100%;
        height: 120px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .filters-row {
        grid-template-columns: 1fr;
    }
    
    .article-actions {
        flex-direction: column;
    }
    
    .comment-replies {
        padding-left: 15px;
    }
    
    .featured-meta,
    .article-meta,
    .engagement-stats {
        flex-direction: column;
        gap: 8px;
    }
}

/* Animation pour les éléments du blog */
.article-card,
.mini-article,
.popular-item,
.category-item {
    transition: all 0.3s ease;
}

/* Styles pour les notifications du blog */
.success-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
    background: #4CAF50;
    color: white;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
}

/* Styles pour les partages sociaux */
.share-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}

.share-button {
    padding: 10px 15px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-facebook {
    background: #1877F2;
    color: white;
}

.share-twitter {
    background: #1DA1F2;
    color: white;
}

.share-linkedin {
    background: #0A66C2;
    color: white;
}

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

.share-email {
    background: #666;
    color: white;
}

.share-copy {
    background: #FF9800;
    color: white;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}