
/* Hero Section */
.hero-section {
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    overflow: hidden;
    z-index: 1;
}

.hero-section::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 1000 100" fill="rgba(255,255,255,0.03)"><path d="M0,50 C150,80 350,20 500,50 C650,80 850,20 1000,50 L1000,100 L0,100 Z"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: 2.1rem;
    margin-top: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.breadcrumb-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 2;
}

.breadcrumb {
    background: transparent;
    margin-bottom: 0;
    padding: 0;
}

.breadcrumb-item {
    font-size: 0.9rem;
    font-family: 'Merriweather', serif;
    color: rgba(255, 255, 255, 0.8);
    padding: 0 .6em;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
    font-weight: 500;
}
.breadcrumb-section .breadcrumb-item.active,
.breadcrumb-section .breadcrumb-item.active i {
    color: #fff !important;
}
.nav-btn {
    position: relative;
    top: -5px;
    left: -15px;
    background: var(--light-bg);
    border: none;
    padding: 4px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background: var(--border-color);
}

/* Footer */
.footer {
    width: 100%;
    position: relative;
    background: var(--bg-footer);
    color: rgba(255, 255, 255, 0.664);
    padding: 3rem 0 0rem;
    box-sizing: border-box;
    overflow-x: hidden;
    z-index: 1000;
}

.footer-section-titre{
    font-family: 'Merriweather', serif;
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}
.footer p{
    line-height: 1.4;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.664);
    line-height: 1.4;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.newsletter {
    display: flex;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 2rem;
}

.form-icon {
    display: flex;
    gap: 15px;
    list-style: none;
    margin-top: 20px;
}
.form-icon a {
    list-style: none;
    margin-bottom: 5px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.form-icon  a:hover {
    color: white;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.664);;
}
.bottom{
    display: flex;
    gap: 15px;
}
.bottom a{
    color: rgba(255, 255, 255, 0.664);;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.4;
    font-size: 0.9rem;
}
.bottom a:hover{
     color: white;
}
/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(10);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.no-events {
    text-align: center;
    padding: 40px;
    color: #666;
}

.no-events i {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--border-color);
}
body.noscroll {
  overflow: hidden;
}
/* Personnalisé presse */

.fond-titre{
    background-color: var(--secondary-color);
    color: white;
    font-size: 1rem;
}
.rubrique{
    font-size: 1rem; 
    color: var(--primary-color);
}
.rubrique-description{
    font-size: 0.9rem;
    color: var(--text-light);
}
.icon i{
    color: var(--secondary-color);
}
.icon strong{
    color: var(--accent-color);
}
.rounded{
    background-color: var(--bg-light);
}
.rounded i{
    font-size: 4rem;
    color: var(--secondary-color);
}

.btn-primary{
    border-radius: 5px;
    border: none;
    outline: none;
    padding: 6px 15px;
    color: white;
    background-color: var(--secondary-color);
    font-size: 0.9rem;
}
.btn-primary:hover{
   background-color: var(--primary-color);
}

.text-danger{
    font-size: 2rem;
}
.doc-titre{
    color: var(--primary-color);
}

.btn-light{
    border: 1px solid #333333e7;
}.btn-light:hover{
    border: 1px solid #333333e7;
}

.fa-video, .fa-images, .fa-down, .fa-image{
    font-size: 1rem;
}
.doc-presse{
    font-size: 1.5rem; 
    color: var(--primary-color);
}
.form-label{
    font-size: 1rem;
}
/*dossier presse*/
.badge{
    background: var(--primary-color);
}
.voir-btn{
    background: var(--primary-color);
}.voir-btn:hover{
    background: var(--primary-color);
}
.aucun-icon{
    font-size: 3rem;
}
.btn-voir-plus{
    display: none;
}
.plus{
    font-size: 0.95rem;
}
.content-com{
    max-height: 500px; 
    overflow-y: auto;
}
/*Contact et accreditation erreur*/
.resp-img{
    width: 80px; 
    height: 80px;
}
.resp-img img{
    width: 70px; 
    height: 70px; 
    object-fit: cover;
}
.resp-img .text-primary{
    font-size: 2rem;
}
.resp-nom{
    font-size: 1.3rem; 
    color: var(--primary-color);
}
.resp-email-num{
    font-size: 0.95rem;
}
.fond-titre-second{
    background-color: var(--text-light) !important;
    font-size: 1rem;
}
.form-titre{
    font-size: 1.1rem; 
    color: var(--primary-color);
}
.localisation{
    height: 300px;
}
.localisation i{
    font-size: 4rem;
}
.form-control{
    font-size: 0.95rem;
    color: var(--text-light);
}

/*logo & visuels*/
.logo-card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.charte-item:hover {
    background-color: #f8f9fa;
    transition: background-color 0.3s ease;
}

.banniere-preview img {
    transition: transform 0.3s ease;
}

.banniere-preview:hover img {
    transform: scale(1.05);
}
@media (max-width: 750px) {
    .section-titre{
        font-size: 1.5rem; 
    }
    .sous-titre{
        font-size: 0.8rem;
    }
    .btn-sm{
        font-size: 0.8rem;
    }
    /**/
    .fond-titre{
        font-size: 1rem;
    }
    .rubrique{
        font-size: 1rem; 
    }
    .rubrique-description{
        font-size: 0.85rem;
    }

    .btn-primary{
        font-size: 0.8rem;
    }

    .doc-titre{
        font-size: 0.9rem;
    }
    
    .fa-video, .fa-images, .fa-down{
        font-size: 2rem;
    }
    .doc-presse{
        font-size: 1rem; 
    }
}
/* Footer */
.footer {
    background: var(--bg-footer);
    color: rgba(255, 255, 255, 0.664);
    padding: 3rem 0 1rem;
}

.footer-section-titre {
    font-family: 'Merriweather', serif;
    color: white;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}
.footer p{
    line-height: 1.4;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.664);
    line-height: 1.4;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.newsletter {
    display: flex;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter button {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    margin-top: 2rem;
}

.form-icon {
    display: flex;
    gap: 15px;
    list-style: none;
    margin-top: 20px;
}
.form-icon a {
    list-style: none;
    margin-bottom: 5px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.form-icon  a:hover {
    color: white;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.664);;
}
.bottom{
    display: flex;
    gap: 15px;
}
.bottom a{
    color: rgba(255, 255, 255, 0.664);;
    text-decoration: none;
    transition: color 0.3s;
    line-height: 1.4;
    font-size: 0.9rem;
}
.bottom a:hover{
     color: white;
}
/* Responsive Design */
@media (max-width: 1250px) {
    .container {
        max-width: 1150px;
        margin: 0 auto;
    }
}
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
}
@media (max-width: 880px) {
    .footer-bottom, .bottom {
        flex-direction: column;
        align-items: center;
    }
}
/* Messages Flash */
.alert-custom {
    border-radius: 10px;
    border: none;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
}

.alert-error {
    background-color: #f8d7da;
    color: #721c24;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar-custom .nav-link {
        padding: 0.6rem 1rem;
        margin: 0.2rem 0;
    }
}

.section-titre,
.doc-titre, 
.doc-presse,
.fond-titre-second{
    font-family: 'Merriweather', serif;
}
