/* ==========================================
   AVF Villefranche-sur-Saone - Stylesheet
   ========================================== */

/* Variables */
:root {
    --primary: #00a79d;
    --primary-dark: #008a82;
    --primary-light: #e6f7f6;
    --secondary: #e8604c;
    --secondary-light: #fdf0ed;
    --accent: #2c3e50;
    --gold: #c5a55a;
    --gold-light: #faf6eb;
    --text: #2c3e50;
    --text-light: #5a6a7a;
    --text-muted: #8e9baa;
    --bg: #ffffff;
    --bg-alt: #f5f7fa;
    --bg-dark: #1e2d3d;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s ease;
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
}

/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

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

/* ==========================================
   Top Bar
   ========================================== */
.top-bar {
    background: var(--accent);
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.top-bar a:hover {
    color: #fff;
}

.top-bar-phone {
    font-weight: 600;
    letter-spacing: 0.5px;
}

.top-bar-phone i {
    margin-right: 6px;
    color: var(--secondary);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background var(--transition);
}

.top-bar-social a:hover {
    background: var(--primary);
}

/* ==========================================
   Header
   ========================================== */
.header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-avf {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.logo-city {
    font-size: 0.75rem;
    color: var(--text-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 4px;
    align-items: center;
}

.nav-link {
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-link--cta {
    background: var(--primary) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 50px;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: var(--primary-dark) !important;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   Sticky Sidebar
   ========================================== */
.sticky-sidebar {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sidebar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    color: #fff;
    font-size: 1.2rem;
    transition: background var(--transition);
    position: relative;
}

.sidebar-phone {
    background: var(--primary);
    border-radius: var(--radius-sm) 0 0 0;
}

.sidebar-email {
    background: var(--secondary);
    border-radius: 0 0 0 var(--radius-sm);
}

.sidebar-phone:hover {
    background: var(--primary-dark);
    color: #fff;
}

.sidebar-email:hover {
    background: #d4553f;
    color: #fff;
}

.sidebar-tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    transform: translateY(-50%) translateX(8px);
}

.sidebar-phone .sidebar-tooltip {
    background: var(--primary);
    color: #fff;
    margin-right: 8px;
}

.sidebar-email .sidebar-tooltip {
    background: var(--secondary);
    color: #fff;
    margin-right: 8px;
}

.sidebar-btn:hover .sidebar-tooltip {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ==========================================
   Hero
   ========================================== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: url('../img/hero-rue-nationale.png') center center / cover no-repeat;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 45, 61, 0.9) 0%, rgba(0, 167, 157, 0.5) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.hero-subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
    position: relative;
}

.hero-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero decorative elements */
.hero-decor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-decor svg {
    display: block;
    width: 100%;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 167, 157, 0.35);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

.btn-gold {
    background: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.btn-gold:hover {
    background: #b8943e;
    border-color: #b8943e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(197, 165, 90, 0.35);
}

/* ==========================================
   Sections
   ========================================== */
.section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: var(--primary-light);
    padding: 6px 18px;
    border-radius: 50px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--accent);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--gold), var(--primary));
    margin: 0 auto;
    border-radius: 2px;
}

.section-desc {
    max-width: 650px;
    margin: 16px auto 0;
    color: var(--text-light);
    font-size: 1.05rem;
}

/* Section decorative shapes */
.section-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.5;
    pointer-events: none;
}

.section-shape--1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.section-shape--2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    bottom: -50px;
    left: -80px;
}

.section-shape--3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--secondary-light) 0%, transparent 70%);
    top: 50%;
    left: -50px;
}

/* Wave separators */
.wave-separator {
    position: relative;
    height: 80px;
    margin-top: -1px;
    overflow: hidden;
}

.wave-separator svg {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* ==========================================
   Edito Section
   ========================================== */
.section-edito {
    background: var(--bg-alt);
    position: relative;
}

.section-edito::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 167, 157, 0.03) 100%);
    pointer-events: none;
}

.edito-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.edito-content p {
    margin-bottom: 16px;
    color: var(--text-light);
}

.edito-intro {
    font-size: 1.15rem;
    color: var(--text) !important;
    font-weight: 500;
    line-height: 1.8;
    position: relative;
    padding-left: 20px;
    border-left: 3px solid var(--gold);
}

.edito-content > p:not(.edito-intro) {
    padding-left: 20px;
}

.edito-quote {
    margin-top: 30px;
    padding: 28px 34px;
    border-left: 4px solid var(--primary);
    background: linear-gradient(135deg, var(--primary-light), rgba(255, 255, 255, 0.8));
    border-radius: 0 var(--radius) var(--radius) 0;
    position: relative;
}

.edito-quote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    left: 16px;
    line-height: 1;
}

.edito-quote p {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--accent) !important;
    font-style: italic;
    margin-bottom: 8px;
}

.edito-quote cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

.edito-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.edito-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent);
    pointer-events: none;
}

.edito-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.edito-image:hover img {
    transform: scale(1.03);
}

.edito-card {
    background: #fff;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.edito-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--secondary));
}

.edito-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.edito-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.edito-card h3::before {
    content: '';
    width: 4px;
    height: 28px;
    background: var(--gold);
    border-radius: 2px;
    flex-shrink: 0;
}

.edito-card p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.edito-card cite {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-style: normal;
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.9rem;
    padding: 8px 16px;
    background: var(--secondary-light);
    border-radius: 50px;
}

/* ==========================================
   Mission Section
   ========================================== */
.section-mission {
    position: relative;
}

/* removed split background */

.section-mission > .container {
    position: relative;
    z-index: 1;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 70px;
    align-items: center;
}

.mission-photo-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
}

.mission-photo-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    border: 3px solid var(--primary);
    border-radius: var(--radius-lg);
    opacity: 0.2;
    pointer-events: none;
}

.mission-photo-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
}

.mission-photo-grid img:hover {
    transform: scale(1.02);
}

.mission-photo-grid img:first-child {
    height: 280px;
}

.mission-text {
    padding-right: 20px;
}

.mission-text p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.mission-intro {
    font-size: 1.15rem;
    color: var(--text) !important;
    font-weight: 500;
}

.mission-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-light), rgba(0, 167, 157, 0.15));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.1rem;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 600;
}

.value-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Mission Info Cards */
.mission-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.info-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.info-card:hover::after {
    opacity: 1;
}

.info-card > i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 2px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 50%;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.info-card a {
    color: var(--primary);
    font-weight: 500;
}

/* Animations Block */
.animations-block {
    background: #fff;
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.animations-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--secondary));
}

.animations-block::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.animations-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 12px;
}

.animations-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 36px;
    font-size: 0.95rem;
}

.animations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.animation-day {
    background: var(--bg-alt);
    padding: 24px 20px;
    border-radius: var(--radius);
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.animation-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.animation-day:hover {
    background: #fff;
    border-color: var(--border);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.animation-day:hover::before {
    opacity: 1;
}

.animation-day h4 {
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.animation-day h4 i {
    font-size: 0.85rem;
}

.animation-day p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   Ville Section
   ========================================== */
.section-ville {
    background: var(--bg-alt);
    position: relative;
}

.section-ville::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300a79d' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.ville-intro {
    text-align: center;
    max-width: 800px;
    margin: -20px auto 60px;
    position: relative;
}

.ville-intro-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.ville-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 70px;
}

.ville-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
    overflow: hidden;
    position: relative;
}

.ville-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ville-card:hover::after {
    opacity: 1;
}

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

.ville-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.ville-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    pointer-events: none;
}

.ville-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ville-card:hover .ville-card-img img {
    transform: scale(1.08);
}

.ville-card-body {
    padding: 28px;
}

.ville-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
    margin-top: -44px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 14px rgba(0, 167, 157, 0.35);
    transition: transform 0.4s ease;
}

.ville-card:hover .ville-card-icon {
    transform: scale(1.1) rotate(-5deg);
}

.ville-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.ville-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Monuments */
.ville-monuments {
    background: #fff;
    padding: 50px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.ville-monuments::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--gold-light) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ville-monuments-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 36px;
    position: relative;
}

.ville-monuments-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

.monuments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.monument {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 16px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    font-size: 0.9rem;
    color: var(--text);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.monument:hover {
    background: var(--primary-light);
    border-color: rgba(0, 167, 157, 0.15);
    transform: translateX(4px);
}

.monument i {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 167, 157, 0.1);
    border-radius: 50%;
}

/* ==========================================
   Equipe Section
   ========================================== */
.section-equipe {
    position: relative;
}

.section-equipe::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.equipe-block {
    margin-bottom: 60px;
}

.equipe-subtitle {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 10px;
}

.equipe-desc {
    text-align: center;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 0.95rem;
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
}

.equipe-grid--ca {
    grid-template-columns: repeat(3, 1fr);
}

.member-card {
    background: var(--bg-alt);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    width: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
}

.member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), transparent);
    pointer-events: none;
}

.member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: #fff;
    border-color: var(--border);
}

.equipe-photo {
    margin-bottom: 50px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-height: 380px;
    position: relative;
}

.equipe-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(30, 45, 61, 0.4), transparent);
    pointer-events: none;
}

.equipe-photo img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.member-card--president {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, var(--primary-light), #fff);
}

.member-avatar {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(0, 167, 157, 0.3);
}

.member-avatar--small {
    width: 58px;
    height: 58px;
    font-size: 1.2rem;
    background: linear-gradient(135deg, var(--text-muted), var(--text-light));
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.member-card h4 {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.member-role {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.member-card--small {
    width: 100%;
    padding: 28px 18px;
}

/* ==========================================
   Associations Section
   ========================================== */
.section-associations {
    background: var(--bg-alt);
    position: relative;
}

.section-associations::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--secondary-light) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.associations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.asso-card {
    background: #fff;
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.asso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--secondary), var(--gold));
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.asso-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.asso-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--secondary-light), rgba(232, 96, 76, 0.15));
    color: var(--secondary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.asso-card:hover .asso-icon {
    background: var(--secondary);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 4px 14px rgba(232, 96, 76, 0.3);
}

.asso-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.asso-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.asso-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
}

.asso-contact span {
    font-size: 0.82rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
}

.asso-contact i {
    width: 20px;
    color: var(--primary);
    margin-right: 8px;
    font-size: 0.8rem;
}

/* ==========================================
   Actualites Section
   ========================================== */
.section-actualites {
    position: relative;
}

.section-actualites::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.actu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.actu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    transition: all 0.5s ease;
    position: relative;
}

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

.actu-img {
    height: 220px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    position: relative;
    overflow: hidden;
}

.actu-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
    z-index: 1;
}

.actu-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.actu-card:hover .actu-img img {
    transform: scale(1.08);
}

.actu-img .actu-date {
    position: relative;
    z-index: 2;
}

.actu-date {
    background: var(--secondary);
    color: #fff;
    padding: 7px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(232, 96, 76, 0.3);
}

.actu-content {
    padding: 28px;
}

.actu-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 12px;
    line-height: 1.4;
}

.actu-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.actu-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 0;
    position: relative;
}

.actu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.actu-link:hover::after {
    width: 100%;
}

.actu-link:hover {
    gap: 10px;
    color: var(--primary);
}

.actu-cta {
    text-align: center;
    margin-top: 50px;
}

/* Blog Section (on homepage) */
.section-blog {
    background: var(--bg-alt);
    position: relative;
}

.section-blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5a55a' fill-opacity='0.04'%3E%3Ccircle cx='20' cy='20' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* ==========================================
   Blog Article Page
   ========================================== */
.article-hero {
    position: relative;
    height: 420px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.article-hero > img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(30, 45, 61, 0.95) 0%, rgba(30, 45, 61, 0.3) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
}

.article-hero .container {
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.article-hero-content {
    max-width: 750px;
}

.article-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    transition: all var(--transition);
}

.article-back:hover {
    color: #fff;
    gap: 12px;
}

.article-meta-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.article-category {
    background: var(--secondary);
    color: #fff;
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-date {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.article-date i {
    margin-right: 6px;
    color: var(--primary);
}

.article-hero h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
    line-height: 1.2;
}

/* Article Layout */
.article-section {
    padding-top: 60px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    margin-bottom: 80px;
}

/* Article Content */
.article-content {
    min-width: 0;
}

.article-intro p {
    font-size: 1.15rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 32px;
    padding-bottom: 28px;
    border-bottom: 2px solid var(--border);
}

.article-content h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--accent);
    margin-top: 36px;
    margin-bottom: 16px;
    position: relative;
    padding-left: 18px;
}

.article-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    background: linear-gradient(to bottom, var(--primary), var(--gold));
    border-radius: 2px;
}

.article-content p {
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.8;
    font-size: 0.98rem;
}

.article-content ul {
    list-style: none;
    margin: 20px 0 24px;
    padding: 0;
}

.article-content ul li {
    position: relative;
    padding: 12px 20px 12px 24px;
    margin-bottom: 8px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-size: 0.95rem;
    border-left: 3px solid var(--primary);
    line-height: 1.6;
}

.article-content a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.article-content a:hover {
    color: var(--primary-dark);
}

/* Article Figure */
.article-figure {
    margin: 32px 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.article-figure img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.article-figure figcaption {
    background: var(--bg-alt);
    padding: 12px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    font-style: italic;
}

/* Article Blockquote */
.article-content blockquote {
    margin: 36px 0;
    padding: 32px 36px;
    background: linear-gradient(135deg, var(--primary-light), rgba(0, 167, 157, 0.08));
    border-left: 4px solid var(--primary);
    border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
    position: relative;
}

.article-content blockquote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.15;
    position: absolute;
    top: -10px;
    left: 18px;
    line-height: 1;
}

.article-content blockquote p {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.6;
}

.article-content blockquote cite {
    font-style: normal;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

/* Article Share */
.article-share {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 2px solid var(--border);
    display: flex;
    align-items: center;
    gap: 16px;
}

.article-share > span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.article-share-links {
    display: flex;
    gap: 10px;
}

.article-share-links a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-alt);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.4s ease;
    text-decoration: none;
}

.article-share-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.article-sidebar-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.article-sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}

.article-sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-sidebar-card h3 i {
    color: var(--primary);
}

.article-info-list {
    list-style: none;
}

.article-info-list li {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.article-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.article-info-list li > i {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--primary-light), rgba(0, 167, 157, 0.15));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.article-info-list li strong {
    display: block;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 2px;
}

.article-info-list li span {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Sidebar CTA Card */
.article-sidebar-card--cta {
    background: linear-gradient(135deg, var(--accent), var(--bg-dark));
    color: #fff;
}

.article-sidebar-card--cta::before {
    background: linear-gradient(90deg, var(--secondary), var(--gold));
}

.article-sidebar-card--cta h3 {
    color: #fff;
}

.article-sidebar-card--cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Related Articles */
.article-related {
    padding-top: 50px;
    border-top: 2px solid var(--border);
}

.article-related-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--accent);
    text-align: center;
    margin-bottom: 36px;
}

/* ==========================================
   Stats Section
   ========================================== */
.section-stats {
    background: linear-gradient(135deg, var(--accent) 0%, var(--bg-dark) 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.section-stats::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 167, 157, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* ==========================================
   CTA Section
   ========================================== */
.section-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 50%, var(--accent) 100%);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.section-cta::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(197, 165, 90, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold), var(--secondary));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.footer-logo .logo-avf {
    font-size: 1.5rem;
}

.footer-logo .logo-city {
    color: rgba(255, 255, 255, 0.5);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px !important;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact a:hover {
    color: var(--primary);
    padding-left: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer-unavf {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--primary) !important;
    font-weight: 500;
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ==========================================
   Blog Page
   ========================================== */
.page-header {
    background: url('../img/rue-commercante.png') center center / cover no-repeat;
    padding: 130px 0 70px;
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 45, 61, 0.9) 0%, rgba(0, 167, 157, 0.55) 100%);
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 12px;
}

.page-header p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.5s ease;
    border: 1px solid var(--border);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.blog-card-img {
    height: 230px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    overflow: hidden;
    position: relative;
}

.blog-card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.25), transparent);
    pointer-events: none;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 30px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.blog-card-meta i {
    margin-right: 4px;
    color: var(--primary);
}

.blog-card-content h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--accent);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

/* ==========================================
   Contact Page
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.contact-form label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: all var(--transition);
    background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 167, 157, 0.1);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.contact-info-block {
    background: var(--bg-alt);
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.contact-info-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
}

.contact-info-block h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--accent);
    margin-bottom: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-info-item i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light), rgba(0, 167, 157, 0.15));
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-info-item:hover i {
    background: var(--primary);
    color: #fff;
}

.contact-info-item h4 {
    font-size: 0.95rem;
    color: var(--accent);
    margin-bottom: 4px;
}

.contact-info-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.contact-map {
    margin-top: 30px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 250px;
    background: var(--border);
    box-shadow: var(--shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 1024px) {
    .nav-list {
        gap: 2px;
    }

    .nav-link {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    .mission-info {
        grid-template-columns: repeat(2, 1fr);
    }

    .animations-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .monuments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar-right > a {
        display: none;
    }

    .header-content {
        height: 70px;
    }

    .burger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: var(--shadow-lg);
        padding: 20px;
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 999;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        display: block;
        padding: 12px 16px;
        font-size: 1rem;
    }

    .nav-link--cta {
        text-align: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 2.2rem;
    }

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

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .edito-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

    .mission-photo-grid {
        grid-template-columns: 1fr;
    }

    .mission-values {
        grid-template-columns: 1fr 1fr;
    }

    .mission-info {
        grid-template-columns: 1fr;
    }

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

    .animations-block {
        padding: 30px 20px;
    }

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

    .ville-monuments {
        padding: 30px 20px;
    }

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

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

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .equipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .equipe-grid--ca {
        grid-template-columns: repeat(2, 1fr);
    }

    .article-hero {
        height: 320px;
    }

    .article-hero h1 {
        font-size: 1.8rem;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
    }

    .article-figure img {
        height: 250px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .stat-item::after {
        display: none;
    }

    .sticky-sidebar {
        bottom: 0;
        top: auto;
        right: 0;
        left: 0;
        transform: none;
        flex-direction: row;
    }

    .sidebar-btn {
        flex: 1;
        border-radius: 0;
        height: 48px;
    }

    .sidebar-btn .sidebar-tooltip {
        display: inline;
    }

    .sidebar-phone {
        border-radius: 0;
    }

    .sidebar-email {
        border-radius: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

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

    .equipe-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .equipe-grid--ca {
        grid-template-columns: 1fr;
    }

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