
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

/* Permettre la sélection pour les champs de saisie */
input, textarea {
    user-select: text;
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #c4ecfc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #0077cc 0%, #2E8B57 100%);
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.page {
    display: none;
    animation: fadeIn 0.5s ease-in;
}

.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Bureau du Foyer === */
.bureau-section{
  display:flex;
  justify-content:center;
  margin:3rem auto;
  padding:0 1rem;
}
.bureau-card{
  max-width:480px;
  width:100%;
  background:#f8fcff;              /* ton clair */
  border:3px solid #2E8B57;        /* vert */
  border-radius:1.5rem;
  padding:2rem 1.5rem;
  box-shadow:0 6px 18px rgba(0,0,0,.12);
  text-align:center;
}
.section-title{
  font-size:1.6rem;
  color:#0077cc;                   /* bleu principal */
  margin-bottom:1.2rem;
}
.bureau-list{
  list-style:none;
  margin:0;
  padding:0;
  font-size:1rem;
  line-height:1.6;
}
.bureau-list li+li{margin-top:.6rem;}
.role{font-weight:600;color:#2E8B57;}
.phone{
  white-space:nowrap;
  color:#0077cc;
  text-decoration:none;
}
.phone:hover{text-decoration:underline;}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0077cc;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0077cc, #2E8B57);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.cards-grid a {
    text-decoration: none;
    color: inherit;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #0077cc;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.card h3 {
    color: #0077cc;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Activity Table */
.activity-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #0077cc;
    color: #0077cc;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0077cc;
    color: white;
}

.activities-grid {
    display: grid;
    gap: 20px;
    margin: 30px 0;
}

.activity-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #0077cc;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.activity-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.activity-title {
    font-size: 1.4rem;
    color: #0077cc;
    font-weight: bold;
}

.activity-price {
    background: linear-gradient(135deg, #0077cc, #2E8B57);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
}

.activity-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.detail-icon {
    background: #f0f4ff;
    color: #0077cc;
    padding: 5px;
    border-radius: 50%;
    font-size: 0.9rem;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pricing Table */
.pricing-info {
    background: linear-gradient(135deg, #f0f4ff, #e8f0ff);
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: center;
}

.pricing-info h3 {
    color: #0077cc;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.adhesion-price {
    font-size: 2rem;
    color: #0077cc;
    font-weight: bold;
    margin: 20px 0;
}

/* Contact Cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.contact-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.contact-card h4 {
    color: #0077cc;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #0077cc;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .activity-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .activity-details {
        grid-template-columns: 1fr;
    }
}

/* Alert Banner */
.alert-banner {
    background: linear-gradient(135deg, #2980b9, #ee5a24);
    color: white;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
    animation: pulse 2s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); }
    to { transform: scale(1.02); }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    color: #0077cc;
    text-align: center;
    margin: 40px 0;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #0077cc, #2E8B57);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Quick Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #0077cc;
    display: block;
}

.stat-label {
    color: #666;
    margin-top: 10px;
}

.hero-title{
 display:flex;
 align-items:center;
 gap:1rem;
 flex-wrap:wrap;
 justify-content:center;
}
.hero-title img.logo-img{
 height:80px;
 width:auto;
}
.contact-form{
 max-width:600px;
 margin:0 auto;
 display:flex;
 flex-direction:column;
 gap:1rem;
}
.contact-form input,
.contact-form textarea{
 width:100%;
 padding:10px;
 border:1px solid #ccc;
 border-radius:8px;
}
.contact-form button{
 align-self:center;
}
.cards-grid{
 justify-content:center;
}
/* À ajouter dans votre fichier css/style.css */
.pricing-info{
  background:#eef3ff;            /* même fond pastel que vos encarts */
  border-radius:16px;
  padding:2rem;
  text-align:center;
}
.pricing-row{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:2rem;
  justify-items:center;
  margin:1.5rem 0;
}
.price-block{
  background:#fff;
  border-radius:12px;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  padding:1.25rem 2rem;
}
.price-block h4{
  margin:0 0 .5rem;
  font-size:1.5rem;
  color:#0c0c0c;                 /* bleu de la charte */
}
.price{
  font-size:2rem;
  font-weight:700;
  color:#0270d6;
}
.pricing-note{
  margin-top:.75rem;
  font-size:.9rem;
}

/* Activity Detail Pages */
.activity-page {
    margin-top: 20px;
}

.activity-hero {
    text-align: center;
    margin-bottom: 30px;
    padding: 30px 20px;
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.1), rgba(46, 139, 87, 0.1));
    border-radius: 20px;
    border: 2px solid #e8f0ff;
}

.activity-hero h1 {
    font-size: 2.5rem;
    color: #0077cc;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.activity-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    font-style: italic;
}

.activity-content {
    display: grid;
    gap: 30px;
}

.activity-description {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #2E8B57;
}

.activity-description h2 {
    color: #2E8B57;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.activity-description p {
    line-height: 1.8;
    color: #555;
    font-size: 1.1rem;
}

.activity-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.activity-image-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.activity-image-placeholder {
    background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
    border: 3px dashed #0077cc;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    min-width: 300px;
    transition: all 0.3s ease;
}

.activity-image-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 119, 204, 0.2);
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.activity-image-placeholder p {
    color: #0077cc;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
}

.activity-actions {
    margin-top: 15px;
    text-align: center;
}

.btn-detail {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #0077cc, #2E8B57);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,119,204,0.3);
}

.btn-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,119,204,0.4);
}

.activity-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 15px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #0077cc;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0077cc, #2E8B57);
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.info-card h3 {
    color: #0077cc;
    margin-bottom: 12px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.info-card p {
    margin: 5px 0;
    line-height: 1.6;
}

.info-card.important {
    border-left-color: #e74c3c;
    background: #fdf2f2;
}

.info-card.important h3 {
    color: #e74c3c;
}

.nouveau-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
    padding: 30px;
    background: linear-gradient(135deg, rgba(0, 119, 204, 0.05), rgba(46, 139, 87, 0.05));
    border-radius: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    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.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #0077cc, #2E8B57);
    color: white;
    box-shadow: 0 3px 10px rgba(0,119,204,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,119,204,0.4);
}

.btn-secondary {
    background: #f8f9ff;
    color: #0077cc;
    border-color: #0077cc;
}

.btn-secondary:hover {
    background: #0077cc;
    color: white;
}

.btn-outline {
    background: transparent;
    color: #666;
    border-color: #ddd;
}

.btn-outline:hover {
    background: #f8f9ff;
    border-color: #0077cc;
    color: #0077cc;
}

/* Media Queries pour les pages d'activités */
@media (max-width: 768px) {
    .activity-hero h1 {
        font-size: 2rem;
    }
    
    .activity-subtitle {
        font-size: 1rem;
    }
    
    .activity-info-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .activity-image-placeholder {
        min-width: 250px;
        padding: 30px;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
    
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #0077cc 0%, #2E8B57 100%);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        border-radius: 0 0 15px 15px;
        padding: 20px;
        z-index: 1000;
    }
    
    .nav-toggle {
        display: block !important;
        color: white;
    }
}

/* Styles pour les activités avec placeholder images */
.activity-image-placeholder:nth-child(odd) {
    background: linear-gradient(135deg, #e8f0ff, #f0f8ff);
    border-color: #0077cc;
}

.activity-image-placeholder:nth-child(even) {
    background: linear-gradient(135deg, #f0f8f0, #f8fff8);
    border-color: #2E8B57;
}
@media (max-width: 768px) {
    .activity-hero h1 {
        font-size: 2rem;
    }
    
    .activity-info-grid {
        grid-template-columns: 1fr;
    }
    
    .activity-image-placeholder {
        min-width: 250px;
        padding: 30px 20px;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .info-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .activity-hero {
        padding: 20px 15px;
    }
    
    .activity-hero h1 {
        font-size: 1.8rem;
    }
    
    .activity-subtitle {
        font-size: 1rem;
    }
    
    .activity-description {
        padding: 20px;
    }
    
    .activity-image-placeholder {
        min-width: 200px;
        padding: 25px 15px;
    }
}

/* Styles spécifiques pour la page tarifs/inscription */
.info-notes {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #0077cc;
    border: 1px solid #dee2e6;
}

.info-notes p {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #212529;
}

.info-notes ul {
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: #495057;
}

.inscription-methods,
.requirements-section,
.submission-section,
.contact-section {
    margin: 3rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
}

.inscription-methods h2,
.requirements-section h2,
.submission-section h2,
.contact-section h2 {
    color: #0077cc;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-align: center;
}

.alert-banner {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,119,204,0.1);
    border: 2px solid #0077cc;
}

.alert-banner h3 {
    color: #0d47a1;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.alert-banner p {
    color: #1565c0;
    font-weight: 500;
}

.btn-primary {
    background: linear-gradient(135deg, #0077cc 0%, #005fa3 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #005fa3 0%, #004080 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,119,204,0.3);
}

.btn-secondary {
    background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(108,117,125,0.3);
}

.btn-outline {
    background: transparent;
    color: #0077cc;
    padding: 12px 24px;
    border: 2px solid #0077cc;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
}

.btn-outline:hover {
    background: #0077cc;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,119,204,0.3);
}

/* Responsive pour les boutons */
@media (max-width: 768px) {
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .inscription-methods h2,
    .requirements-section h2,
    .submission-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }
    
    .alert-banner h3 {
        font-size: 1.2rem;
    }
}

/* Styles pour la page Association */

/* Section Assemblées Générales */
.ag-section {
    margin: 3rem 0;
}

.ag-list {
    list-style: none;
    padding: 0;
}

.ag-list li {
    margin: 1rem 0;
    padding: 0.8rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    border-left: 4px solid #0077cc;
    transition: all 0.3s ease;
}

.ag-list li:hover {
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    transform: translateX(5px);
}

.ag-list a {
    color: #0077cc;
    text-decoration: none;
    font-weight: 500;
}

.ag-list a:hover {
    color: #005599;
    text-decoration: underline;
}

/* Section Conseils d'Administration */
.ca-section {
    margin: 3rem 0;
}

/* Section Référents Activités */
.referents-section {
    margin: 3rem 0;
}

.referents-list {
    list-style: none;
    padding: 0;
}

.referents-list li {
    margin: 1.5rem 0;
    padding: 1rem;
    background: linear-gradient(135deg, #f0f8ff, #e6f3ff);
    border-radius: 8px;
    border-left: 4px solid #2E8B57;
}

.referents-list li strong {
    color: #2E8B57;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.referents-list .phone {
    color: #0077cc;
    text-decoration: none;
    font-weight: 500;
}

.referents-list .phone:hover {
    color: #005599;
    text-decoration: underline;
}

/* Section Mouvement Rural */
.mouvement-section {
    margin: 3rem 0;
}

/* Section RGPD */
.rgpd-section {
    margin: 3rem 0;
}

.rgpd-section .card {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
}

/* Section Documents */
.documents-section {
    margin: 3rem 0;
}

.download-link {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, #0077cc, #005599);
    color: white !important;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.download-link:hover {
    background: linear-gradient(135deg, #005599, #003d7a);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 204, 0.3);
}

/* Responsive pour page Association */
@media (max-width: 768px) {
    .referents-list li {
        padding: 0.8rem;
    }
    
    .referents-list li strong {
        font-size: 1rem;
    }
    
    .ag-list li {
        padding: 0.6rem;
    }
}

/* Styles pour la section Actualités */
.news-section {
    margin: 3rem 0;
}

.news-item-full {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-item-full:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.news-item-full.highlight {
    background: linear-gradient(135deg, #0077cc 0%, #2E8B57 100%);
    color: white;
}

.news-item-full.highlight h3 {
    color: white;
}

.news-item-full.highlight strong {
    color: #FFD700;
}

.news-item-full.highlight a {
    color: #FFD700;
    text-decoration: underline;
}

.news-content {
    padding: 2rem;
}

.news-content h3 {
    color: #0077cc;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #2E8B57;
    padding-bottom: 0.5rem;
}

.news-content h3 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-content h3 a:hover {
    color: #2E8B57;
}

.news-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.news-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.news-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.news-image {
    float: right;
    width: 300px;
    height: 200px;
    margin: 0 0 1rem 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-item-full:hover .news-image img {
    transform: scale(1.05);
}

/* Style spécifique pour l'image de la guinguette - affichage complet sans coupure */
.guinguette-image {
    height: auto !important;
    min-height: 200px;
}

.guinguette-image img {
    object-fit: contain !important;
    object-position: center;
}

.placeholder-image {
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed #ccc;
}

.placeholder-text {
    text-align: center;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

/* Responsive pour les actualités */
@media (max-width: 768px) {
    .news-image {
        float: none;
        width: 100%;
        margin: 0 0 1rem 0;
    }
    
    .news-content {
        padding: 1.5rem;
    }
    
    .news-content h3 {
        font-size: 1.3rem;
    }
}

/* Styles pour les réseaux sociaux */
.card .social-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px;
    margin-top: 15px;
    width: 100%;
}

.card .social-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #f8f9ff, #e8f0ff);
    border: 2px solid transparent;
    border-radius: 25px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    text-decoration: none;
}

.card .social-link.facebook {
    border-color: #1877f2;
}

.card .social-link.facebook:hover {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: white;
    border-color: #1877f2;
}

.card .social-link.instagram {
    border-color: #e4405f;
}

.card .social-link.instagram:hover {
    background: linear-gradient(135deg, #e4405f, #f06292);
    color: white;
    border-color: #e4405f;
}

.card .social-link.website {
    border-color: #0077cc;
}

.card .social-link.website:hover {
    background: linear-gradient(135deg, #0077cc, #2E8B57);
    color: white;
    border-color: #0077cc;
}

.social-icon {
    font-size: 1.2rem;
}

/* Responsive pour les réseaux sociaux */
@media (max-width: 768px) {
    .card .social-links {
        gap: 12px;
    }
    
    .card .social-link {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .social-icon {
        font-size: 1.1rem;
    }
}

