/* ==========================================================================
   PALETTE PASTEL INTÉGRALE
   ========================================================================== */
:root {
    --bg-main: #F7FBFC;          /* Bleu glacier extrêmement pâle pour le fond global */
    --primary-blue: #D4E6F1;     /* Bleu ciel pastel */
    --soft-lavender: #E8EAF6;    /* Lavande doux */
    --soft-mint: #E8F5E9;        /* Menthe très claire */
    --soft-peach: #FFF3E0;       /* Pêche très clair */
    --soft-rose: #FCE4EC;        /* Rose poudré */
    --accent-blue: #AED6F1;      /* Bleu plus soutenu pour les détails */
    --text-dark: #455A64;        /* Gris-bleu foncé (moins agressif que le noir) */
    --footer-blue: #C5E3E8;      /* Bleu footer historique */
    --white: #FFFFFF;
    --border-radius: 20px;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Réinitialisation et Base
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-main); /* PLUS DE BLANC PUR */
    line-height: 1.6;
    user-select: none; /* Empêche la sélection de texte */
}

h1, h2, h3, h4 {
    font-weight: 700;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header_section {
    width: 100%;
    background-color: var(--primary-blue);
    box-shadow: var(--shadow);
    position: relative;
    z-index: 1000;
}

.header_top {
    padding: 15px 0;
    text-align: center;
}

.header_top .contact_info {
    background-color: var(--soft-mint) !important;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 40px;
}

.header_top span {
    color: var(--text-dark);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* NAV BAR */
.navbar {
    background-color: rgba(255, 255, 255, 0.5) !important;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,0.3);
    display: flex;
    justify-content: center;
}

.navbar-collapse {
    flex-grow: 0; /* Ne pas laisser le menu prendre toute la largeur */
}

.navbar-nav {
    display: flex;
    flex-direction: row; /* FORCE L'ALIGNEMENT HORIZONTAL */
    align-items: center;
    justify-content: center;
    width: auto;
}

.navbar-nav .nav-item {
    display: block;
}

.navbar-nav .nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    text-transform: uppercase;
    padding: 15px 20px !important;
    transition: all 0.3s ease;
    border-radius: 10px;
    white-space: nowrap; /* Empêche le texte de passer à la ligne */
}

.navbar-nav .nav-link:hover {
    background-color: var(--soft-rose);
}

.navbar-nav .nav-link.active {
    background-color: var(--accent-blue);
    color: white !important;
}

.center-logo {
    width: 100px;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.1));
}

/* Carte Interactive */
#map {
    height: 400px;
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 20px 0;
    z-index: 5;
}

/* Carte Interactive */
#map {
    height: 400px;
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin: 20px 0;
    z-index: 5;
    border: 3px solid var(--white);
}

/* ==========================================================================
   GLASSMORPHISM & ACCESSOIRES PRO
   ========================================================================== */

/* 1. Effet Verre Givré (Glassmorphism) */
.glass-effect {
    background: rgba(255, 255, 255, 0.4) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.actualite_item, .info_button, .team-member {
    backdrop-filter: blur(5px);
}

/* 2. Bouton Retour en Haut */
#back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px; /* À l'opposé du bouton de don */
    width: 50px;
    height: 50px;
    background-color: var(--secondary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    font-size: 20px;
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--text-dark);
    transform: translateY(-5px);
}

/* 3. Accordéon FAQ */
.faq-section {
    padding: 80px 0;
    background-color: var(--soft-peach);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px 25px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--text-dark);
    transition: background 0.3s;
}

.faq-question:hover { background: var(--bg-main); }

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--secondary-blue);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s;
    background: #fafafa;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 20px 25px;
}

/* ==========================================================================
   FINITIONS PREMIUM (SCROLLBAR & PROGRESS BAR)
   ========================================================================== */

/* 1. Scrollbar personnalisée (Standard Moderne) */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { 
    background: var(--accent-blue); 
    border-radius: 10px; 
    border: 2px solid var(--bg-main); 
}
::-webkit-scrollbar-thumb:hover { background: var(--secondary-blue); }

/* 2. Barre de progression de lecture */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, var(--accent-blue), #2ECC71);
    z-index: 2000;
}

/* 3. Section Chiffres Clés (Impact) */
.impact-section {
    padding: 60px 0;
    background-color: var(--white);
    text-align: center;
}

.counter-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.counter-box {
    flex: 1;
    min-width: 200px;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--secondary-blue);
    display: block;
    margin-bottom: 5px;
}

.counter-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
}

/* ==========================================================================
   ANIMATIONS AVANCÉES (REVEAL & INTERACTION)
   ========================================================================== */

/* 1. Apparitions variées */
.reveal { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal-left { opacity: 0; transform: translateX(-50px); transition: all 1s cubic-bezier(0.2, 1, 0.3, 1); }
.reveal-right { opacity: 0; transform: translateX(50px); transition: all 1s cubic-bezier(0.2, 1, 0.3, 1); }

.reveal.active, .reveal-left.active, .reveal-right.active { 
    opacity: 1; 
    transform: translate(0, 0); 
}

/* 2. Animation de lévitation (Ordinateur et boutons) */
@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating-anim {
    animation: floating 4s ease-in-out infinite;
}

/* 3. Soulignement animé du menu */
.navbar-nav .nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--accent-blue);
    transition: width .3s;
    margin: 0 auto;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* 4. Effet de chargement de page */
body {
    animation: fadeInPage 1s ease-in-out;
}

@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* 5. Micro-interactions sur les cartes */
.actualite_item:hover img, .team-member:hover .member-image {
    transform: scale(1.05);
    transition: transform 0.5s ease;
}

/* ==========================================================================
   DONATION BUTTONS - LOOK PRO & CONVERSION
   ========================================================================== */

/* 1. Bouton dans le Header (CTA) */
.nav-link.don-header {
    background-color: #E74C3C !important; /* Rouge pro pour l'action */
    color: white !important;
    border-radius: 50px !important;
    padding: 10px 25px !important;
    margin-left: 15px;
    box-shadow: 0 4px 10px rgba(231, 76, 60, 0.3);
    transition: all 0.3s ease;
}

.nav-link.don-header:hover {
    background-color: #C0392B !important;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(231, 76, 60, 0.5);
}

/* 2. Bouton Flottant (Côté de l'écran) */
.floating-don {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1500;
    background-color: #2ECC71; /* Vert positif */
    color: white !important;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: pulse-green 2s infinite;
}

.floating-don:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #27AE60;
}

/* 3. Animation de pulsation */
.action_button.don {
    animation: pulse-green 2.5s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(46, 204, 113, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

/* ==========================================================================
   LAPTOP MOCKUP - PRÉSENTATION PREMIUM
   ========================================================================== */
.laptop-container {
    position: relative;
    width: 100%;
    max-width: 500px; /* Taille de l'ordinateur */
    margin: 0 auto;
    perspective: 1000px;
}

.laptop-screen {
    position: relative;
    padding-top: 56.25%; /* Ratio 16:9 */
    background-color: #333;
    border: 12px solid #222; /* Cadre de l'écran */
    border-radius: 15px 15px 0 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

.laptop-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.laptop-base {
    position: relative;
    width: 110%; /* Socle légèrement plus large */
    height: 12px;
    background: linear-gradient(to bottom, #d2d2d2 0%, #959592 100%); /* Métal brossé */
    margin-left: -5%;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 4px;
    background-color: rgba(0,0,0,0.2); /* Petite encoche pour l'ouverture */
    border-radius: 0 0 5px 5px;
}

/* ==========================================================================
   SECTION VIDÉO
   ========================================================================== */
.video_section {
    padding: 100px 0 60px; /* Augmentation du padding haut pour décoller du header */
    background-color: var(--soft-lavender);
    margin-top: 20px; /* Marge supplémentaire pour sécurité */
}

.video-text-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.video-container {
    position: relative;
    width: var(--phone-width, 300px); /* Modifiable depuis le HTML */
    height: var(--phone-height, 400px); /* Modifiable depuis le HTML */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.phone-frame {
    width: 100%;
    height: auto;
    z-index: 1;
    pointer-events: none;
    position: relative;
}

.video {
    position: absolute;
    top: var(--video-top, 48.5%);      /* POSITION VERTICALE */
    left: var(--video-left, 50%);     /* POSITION HORIZONTALE */
    transform: translate(-50%, -50%);
    width: var(--video-width, 86%);   /* LARGEUR DE LA VIDÉO */
    height: var(--video-height, 78%); /* HAUTEUR DE LA VIDÉO */
    object-fit: cover;
    z-index: 2;
    border-radius: var(--video-radius, 20px); /* ARRONDIS DES ANGLES */
    background-color: #000;
}

.video-description {
    flex: 1;
    min-width: 300px;
}

.video-description h2 {
    color: var(--text-dark);
    font-size: 2.2em;
    margin-bottom: 20px;
}

/* ==========================================================================
   BOUTONS D'ACTION
   ========================================================================== */
.action_section {
    padding: 40px 0;
    background-color: var(--bg-main);
}

.action_buttons_row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action_button {
    padding: 18px 35px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none !important;
    color: var(--text-dark);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.action_button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

.action_button.don { background-color: #C8E6C9; } /* Vert pastel */
.action_button.equipe { background-color: #BBDEFB; } /* Bleu pastel */
.action_button.actions { background-color: #FFCDD2; } /* Rouge pastel */

/* ==========================================================================
   INFO BUTTONS - CÔTE À CÔTE
   ========================================================================== */
.info_buttons_section {
    padding: 50px 0;
}

.info_buttons_row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap; /* Force le côte à côte */
}

.info_button {
    flex: 1;
    max-width: 280px;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.info_button:hover { transform: translateY(-5px); }

/* Couleurs différentes pour chaque bloc info */
.info_button:nth-child(1) { background-color: #F8BBD0; } /* Rose */
.info_button:nth-child(2) { background-color: #B2EBF2; } /* Cyan */
.info_button:nth-child(3) { background-color: #DCEDC8; } /* Lime */
.info_button:nth-child(4) { background-color: #D1C4E9; } /* Violet */

.info_button div {
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
    text-transform: uppercase;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    padding-bottom: 10px;
}

.info_button_link {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgba(255,255,255,0.5);
    border-radius: 50px;
    text-decoration: none !important;
    color: var(--text-dark);
    font-weight: bold;
}

/* ==========================================================================
   SERVICE SECTION
   ========================================================================== */
.service_section {
    padding: 80px 0;
    background-color: var(--soft-mint);
}

.service_section .box {
    background-color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    height: 100%;
}

/* ==========================================================================
   OWL CAROUSEL - PHOTOS UNIFORMES & NAVIGATION CLAIRE
   ========================================================================== */
.owl-carousel {
    padding: 40px 0;
}

.owl-carousel .item {
    padding: 15px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 10px;
}

.owl-carousel .item img {
    width: 100%;
    height: 300px; /* HAUTEUR FIXE POUR TOUTES LES PHOTOS */
    object-fit: cover; /* RECADRAGE INTELLIGENT SANS DÉFORMATION */
    border-radius: 15px;
    display: block;
}

.owl-carousel .caption {
    margin-top: 15px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95em;
    height: 40px; /* Alignement des textes */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Flèches de navigation (Suivant/Précédent) */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--accent-blue) !important;
    color: white !important;
    border-radius: 50% !important;
    font-size: 24px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.owl-nav button.owl-prev { left: -25px; }
.owl-nav button.owl-next { right: -25px; }

.owl-nav button:hover {
    background-color: var(--text-dark) !important;
    transform: translateY(-50%) scale(1.1);
}

/* Points de navigation en bas (Dots) */
.owl-dots {
    text-align: center;
    margin-top: 30px;
}

.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    margin: 5px 7px;
    background: #D7CCC8 !important;
    display: block;
    transition: opacity 200ms ease;
    border-radius: 30px;
}

.owl-dots .owl-dot.active span {
    background: var(--accent-blue) !important;
    width: 30px; /* Point actif plus large pour plus de clarté */
}

/* ==========================================================================
   LIGHTBOX MODAL - ZOOM PHOTOS
   ========================================================================== */
.photo-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 1000px;
    border-radius: 10px;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.5); /* Cercle sombre derrière */
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 2100;
    border: 2px solid white;
}

.close-modal:hover {
    background-color: #e74c3c; /* Devient rouge au survol */
    transform: scale(1.1);
    color: white;
}

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
    font-size: 1.2em;
    font-weight: bold;
}

/* Style spécifique pour les blocs d'actualités (Aperçu Document) */
.actualite_item {
    background-color: var(--white);
    padding: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.actualite_item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); /* Effet de profondeur pour l'image */
}

/* Effet "Papier" pour les PDF */
.actualite_item[data-pdf] {
    background: linear-gradient(135deg, #ffffff 0%, #f1f1f1 100%);
    position: relative;
}

.actualite_item[data-pdf]::before {
    content: "PDF";
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #e74c3c;
    color: white;
    font-size: 0.7em;
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 5px;
    z-index: 10;
}

.actualite_item:hover {
    transform: translateY(-8px) rotate(1deg); /* Petit effet de bascule au survol */
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* Curseur pointer sur les images du carrousel et des actualités */
.owl-carousel .item img,
.actualite_item img,
.actualite_item {
    cursor: pointer;
}

/* ==========================================================================
   ADHERENCE SECTION - ALIGNEMENT PARFAIT
   ========================================================================== */
.adhesion-container {
    margin-top: 40px;
    padding: 20px;
}

.adhesion-container .row {
    align-items: center; /* Centre verticalement les éléments de la ligne */
}

.arrow-image {
    width: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.card-image {
    max-width: 100%;
    height: auto;
    margin: 15px 0;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border: 5px solid var(--white);
}

.adhesion-container h5 {
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 15px;
}

.adhesion-container p {
    font-size: 1.1em;
    color: var(--text-dark);
    line-height: 1.5;
}

.bottom-text {
    text-align: center;
    margin-top: 50px;
    font-style: italic;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.2em;
}

/* ==========================================================================
   TEAM SECTION - LOOK PASTEL
   ========================================================================== */
.team {
    padding: 80px 0;
    text-align: center;
}

.team-title {
    font-size: 3em;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.team-members-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    width: 280px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-10px);
}

/* Couleurs alternées pour les membres */
.team-member:nth-child(odd) { background-color: var(--soft-peach); }
.team-member:nth-child(even) { background-color: var(--soft-mint); }

.member-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.member-name {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.member-role {
    font-size: 1em;
    color: #666;
    margin-bottom: 5px;
    font-style: italic;
}

.member-phone {
    font-size: 0.9em;
    color: var(--text-dark);
    font-weight: 600;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer_section {
    background-color: var(--footer-blue);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-title {
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 25px;
}

.footer_links li a {
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
    text-decoration: none;
    font-weight: 600;
}

.social_links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.social_icon {
    width: 35px;
    height: 35px;
}

.text-white-with-black-outline {
    color: white;
    text-shadow: -1px -1px 0 #3d1e1e, 1px -1px 0 #3d1e1e, -1px 1px 0 #3d1e1e, 1px 1px 0 #3d1e1e;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .info_buttons_row { flex-wrap: wrap; }
    .info_button { max-width: 45%; flex: none; }
    .video-text-container { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
    .info_button { max-width: 100%; }
}
