* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #ffffff;
    background-color: #2b2b2b;
}

header {
    background-color: #ffffff;
    color: rgb(5, 5, 5);
    padding: 1rem;
    text-align: center;
}

.header-content {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.header-image {
    width: 100px;
    height: auto;
    margin-left: 20px;
    margin-right: 20px;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: #2b2b2b;
    text-decoration: none;
}

nav a:hover {
    color: #ff6200;
}

.contact-btn {
    background-color: #01aa09;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-right: 20px;
    font-weight: bold;
}

.contact-btn:hover {
    background-color: #01aa09;
}

.image-entre-header-section {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.btn-essayer {
    display: inline-block;
    padding: 10px 20px;
    background-color: #01aa09;
    color: white;
    text-decoration: none;
    border-radius: 15px;
    margin-top: 25px;
    font-weight: bold;
}

.btn-essayer:hover {
    background-color: #e55a00;
}

section {
    padding: 2rem;
    text-align: center;
}

#accueil {
    background-color: #000000;
}


@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;700&display=swap');

#accueil {
    font-family: 'Barlow', sans-serif;
}

#accueil h2 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 2rem;
}

#accueil p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 1.5rem;
}

#produits {
    position: relative;
    padding: 4rem 2rem;
    background: 
        linear-gradient(rgba(43, 43, 43, 0.85), rgba(43, 43, 43, 0.85)),
        url('images/pexels-cottonbro-5803142.jpg') center/cover no-repeat;
    color: white;
    z-index: 1;
    overflow: hidden; /* Important pour contenir l'image */
}


/* Styles pour la grille de produits */
.produit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 colonnes fixes */
    gap: 2rem; /* Espacement entre les éléments */
    margin-top: 2rem;
}

.produit {
    padding: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s ease;
}

/* État animé quand la section est visible */
.produit-grid.active .produit {
    opacity: 1;
    transform: translateY(0);
}

/* Délais progressifs pour les 2 éléments */
.produit-grid.active .produit:nth-child(1) { transition-delay: 0s; }
.produit-grid.active .produit:nth-child(2) { transition-delay: 0.5s; }

/* Styles généraux pour toutes les images */
.produit img {
    width: 100%; /* Responsive */   
    height: auto; /* Conserve les proportions naturelles */
    min-height: 600px; /* Hauteur minimale */
    max-height: 800px; /* Hauteur maximale */
    object-fit: cover; /* Par défaut, coupe l'image pour remplir */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Ombre subtile */
    transition: transform 0.3s ease; /* Animation fluide */
    border: 1px solid #000000; /* Bordure noire */
    border-radius: 8px; /* Coins arrondis */
}

/* Effet de survol pour toutes les images */
.produit img:hover {
    transform: scale(1.05); /* Zoom léger par défaut */
}

/* Style pour la description sous les photos */
.produit-description {
    grid-column: 1 / -1; /* S'étend sur toute la largeur */
    text-align: center; /* Centre le texte */
    margin-top: 1rem; /* Espacement au-dessus */
}



#call-to-action {
    position: relative;
    padding: 4rem 2rem;
    background: 
        /* Dégradé moins opaque pour voir l'image */
        linear-gradient(145deg, 
            rgba(162, 245, 162, 0.6) 0%, 
            rgba(1, 170, 9, 0.7) 30%, 
            rgba(0, 61, 0, 0.8) 100%),
        /* Chemin corrigé avec slash */
        url('Images/gc_photo_ext.jpg') center/cover no-repeat;
    color: white;
    max-width: 1700px;
    margin: 2rem auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-height: 300px; /* Garantit une hauteur minimale */
}

@media (max-width: 768px) {
    #call-to-action {
        background: 
            linear-gradient(rgba(1, 170, 9, 0.7), rgba(0, 61, 0, 0.8)),
            url('Images/gc_photo_ext.jpg') center/cover;
    }
}

.btn-experience {
    display: inline-block;
    padding: 20px 30px;
    background-color: #01aa09;
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 35px;
    font-weight: bold;
}

.btn-experience:hover {
    background-color: #e55a00;
}

footer {
    background-color: #222;
    color: white;
    padding: 4rem; /* Augmenté pour plus d’espace */
    text-align: center;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 2000px; /* Limite la largeur pour éviter un étalement excessif */
    margin: 0 auto;
    flex-wrap: wrap; /* Permet un retour à la ligne sur petits écrans */
}

.footer-left {
    text-align: left;
    max-width: 50%;
    padding-left: 0; /* S'assurer qu'il n'y a pas de padding à gauche */
    margin-left: 0; /* S'assurer qu'il n'y a pas de marge à gauche */
}

.footer-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-left p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-right {
    text-align: left;
    margin-left: 40px; /* Espace depuis la colonne de gauche */
    flex: 1; /* Prend l'espace disponible */
}

.footer-right h2,
.footer-right p {
    text-align: left;
    margin-left: 500px;
}

.contact-info {
    margin: 1rem 0; /* Espace au-dessus et en dessous des coordonnées */
    text-align: left;
    margin-left: 500px;
}

.social-links {
    margin-top: 1rem; /* Espace entre les coordonnées et les liens sociaux */
    margin-left: 500px;
}

.social-links a {
    color: #e55a00;
    font-size: 80px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e55a00;
}

.social-links {
    display: flex;
}

.social-links a:not(:last-child) {
    margin-right: 50px; /* Espace spécifique entre les icônes */
}

@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .produit-grid {
        grid-template-columns: 1fr; /* Une colonne sur petits écrans */
    }
}

/* Styles spécifiques à la page boutique */
.page-boutique {
    background-color: #1e1e1e;
    color: #fff;
}

.banner-boutique {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/pexels-eyecatcher-2745821.jpg') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 2rem;
}

.banner-content h1 {
    font-size: 3rem;
    color: #01aa09;
    margin-bottom: 1rem;
}

.banner-content p {
    font-size: 1.2rem;
}

.filtres-container {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 1rem;
}

.filtres-container h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: #01aa09;
}

.filtres-bouton {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filtre-btn {
    padding: 0.5rem 1.5rem;
    background: transparent;
    color: #fff;
    border: 2px solid #01aa09;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: bold;
}

.filtre-btn:hover, .filtre-btn.active {
    background: #01aa09;
    color: #fff;
}

.grille-produits {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 3rem;
}

.produit-card {
    background: #2b2b2b;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    animation: appear 0.5s forwards;
}

@keyframes appear {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.produit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(1, 170, 9, 0.2);
}

.produit-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.produit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.produit-card:hover .produit-image img {
    transform: scale(1.05);
}

.stock {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #01aa09;
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
}

.stock-limite {
    background: #e55a00;
}

.produit-info {
    padding: 1.5rem;
}

.produit-info h3 {
    color: #01aa09;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.produit-desc {
    color: #ccc;
    margin-bottom: 1.5rem;
    min-height: 40px;
}



.prix {
    font-weight: bold;
    font-size: 1.3rem;
    color: #fff;
}

.btn-achat {
    background: #01aa09;
    color: white;
    border: none;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
}

.btn-achat:hover {
    background: #018507;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.2rem;
    }
    
    .grille-produits {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .grille-produits {
        grid-template-columns: 1fr;
    }
    
    .produit-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .btn-achat {
        width: 100%;
        justify-content: center;
    }
}

footer {
    background-color: #222;
    color: white;
    padding: 4rem; /* Augmenté pour plus d’espace */
    text-align: center;
    margin-top: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 2000px; /* Limite la largeur pour éviter un étalement excessif */
    margin: 0 auto;
    flex-wrap: wrap; /* Permet un retour à la ligne sur petits écrans */
}

.footer-left {
    text-align: left;
    max-width: 50%;
    padding-left: 0; /* S'assurer qu'il n'y a pas de padding à gauche */
    margin-left: 0; /* S'assurer qu'il n'y a pas de marge à gauche */
}

.footer-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-left p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-right {
    text-align: left;
    margin-left: 40px; /* Espace depuis la colonne de gauche */
    flex: 1; /* Prend l'espace disponible */
}

.footer-right h2,
.footer-right p {
    text-align: left;
    margin-left: 500px;
}

.contact-info {
    margin: 1rem 0; /* Espace au-dessus et en dessous des coordonnées */
    text-align: left;
    margin-left: 500px;
}

.social-links {
    margin-top: 1rem; /* Espace entre les coordonnées et les liens sociaux */
    margin-left: 500px;
}

.social-links a {
    color: #ff6200;
    font-size: 80px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #e55a00;
}

.social-links {
    display: flex;
}

.social-links a:not(:last-child) {
    margin-right: 50px; /* Espace spécifique entre les icônes */
}




/* Styles spécifiques à la page À propos */
.page-apropos {
    background-color: #1e1e1e;
    color: #fff;
}

.banner-apropos {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/pexels-pixabay-163427.jpg') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 3rem;
}

.banner-apropos h1 {
    font-size: 3rem;
    color: #01aa09;
    margin-bottom: 1rem;
}

.banner-apropos p {
    font-size: 1.2rem;
}

/* Styles pour la section Nos Pilotes */
.pilotes-section {
    padding: 80px 20px;
    color: white;
    text-align: center;
    position: relative;
}

.pilotes-overlay {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pilotes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.pilote-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    transition: transform 0.3s ease;
}

.pilote-card:hover {
    transform: translateY(-10px);
}

.pilote-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    margin-bottom: 20px;
}

.pilote-bio {
    margin: 15px 0;
    line-height: 1.6;
}

.facebook-link {
    display: inline-block;
    color: white;
    background-color: #3b5998;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.facebook-link:hover {
    background-color: #2d4373;
}

.facebook-link i {
    margin-right: 8px;
}

/* Section Histoire */
.histoire-section {
    background-attachment: scroll !important;
}

.histoire-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 5rem;
}

.histoire-text {
    flex: 1;
}

.histoire-text h2 {
    color: #01aa09;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.histoire-text p {
    margin-bottom: 1rem;
    line-height: 2;
}

.histoire-image {
    flex: 1;
}

.histoire-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}



/* Section Équipe */
.equipe-section {
    padding: 0;
    position: relative;
    color: white;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('images/pexels-cottonbro-5803350.jpg') center/cover no-repeat fixed;
}

.equipe-overlay {
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.5);
}

.equipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.membre-equipe {
    background: rgba(43, 43, 43, 0.9);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.membre-equipe:hover {
    transform: translateY(-5px);
}

.membre-equipe img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid #01aa09;
}

.equipe-section h2 {
    color: #01aa09;
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2rem;
}


/* Section Valeurs */
.valeurs-section {
    padding: 4rem 2rem;
    text-align: center;
}

.valeurs-section h2 {
    color: #01aa09;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.valeurs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.valeur-card {
    background: #2b2b2b;
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.valeur-card:hover {
    transform: translateY(-5px);
}

.valeur-card i {
    font-size: 3rem;
    color: #01aa09;
    margin-bottom: 1rem;
}

.valeur-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.valeur-card p {
    color: #ccc;
}


/* Section Engagement - Version carrée centrée */
.engagement-section {
    padding: 6rem 2rem;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('images/engagement-bg.jpg') center/cover no-repeat fixed;
    color: white;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif; /* Police par défaut */
}

.engagement-container {
    width: 100%;
    max-width: 500px; /* Réduction de la largeur maximale */
    margin: 0 auto;
    position: relative;
}

.engagement-content {
    background: rgba(43, 43, 43, 0.95);
    padding: 3rem;
    border-radius: 10px;
    width: 200px; /* Largeur fixe carrée */
    height: 200px; /* Hauteur égale à la largeur */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0,0,0,0.7);
    border: 3px solid #01aa09;
    position: relative;
    overflow: hidden;
}

.engagement-intro {
    font-size: clamp(2rem, 3vw, 2.5rem);
    /* Minimum 1.2rem, adaptatif, maximum 1.5rem */
}

.engagement-intro {
    font-size: 1.4rem; /* Taille moyenne (équivalent ~18px) */
    /* Ou pour plus grand : */
    font-size: 1.6rem; /* ~20px */
}

.engagement-text h2 {
    font-family: 'Roboto Condensed', sans-serif;
    color: #01aa09;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    position: relative;
    padding-bottom: 1rem; /* Ajout d'espace sous le titre */
}

.engagement-text h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #01aa09;
    margin: 1.5rem auto 0; /* Espacement supplémentaire */
}

.engagement-text ul {
    list-style-type: none;
    padding: 0;
    max-width: 400px;
    margin: 2rem auto 0; /* Augmentation de la marge supérieure */
}

.engagement-text li {
    font-size: 1.2rem; /* Taille de base (~19px) */
    line-height: 1.6; /* Interligne */
    margin-bottom: 1.2rem; /* Espace entre les éléments */
}
/* Effet de losange en arrière-plan */


.engagement-content:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('images/engagement-bg.jpg') center/cover;
    transform: rotate(45deg);
    z-index: 1;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
    .engagement-content {
        width: 90%;
        height: auto;
        min-height: 500px;
        padding: 2rem;
    }
    
    .engagement-text ul {
        max-width: 100%;
    }
}

/* Page Garages Partenaires */
.page-garages {
    background-color: #1e1e1e;
    color: #fff;
}

.banner-garages {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
                url('images/garage-banner.jpg') center/cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-garages h1 {
    font-size: 3rem;
    color: #01aa09;
    margin-bottom: 1rem;
}

.map-container {
    width: 90%; /* Contrôle la largeur globale */
    max-width: 1000px; /* Largeur maximale */
    margin: 2rem auto; /* Centrage et espacement */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.map-iframe {
    height: 350px; /* Doit correspondre à la hauteur dans l'iframe */
    width: 100%;
    display: block; /* Évite les espaces indésirables */
}

.garages-grid {
    display: flex; /* Changé de grid à flex pour aligner les cartes sur une ligne */
    flex-wrap: nowrap; /* Empêche le retour à la ligne */
    justify-content: center; /* Centre les cartes horizontalement */
    gap: 2rem;
    max-width: 1200px; /* Ajusté pour accueillir plusieurs cartes */
    margin: 0 auto;
    padding: 2rem;
}

.garage-card {
    background: #2b2b2b;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    flex: 1; /* Permet aux cartes de partager l'espace équitablement */
    min-width: 300px; /* Taille minimale pour chaque carte */
    max-width: 350px; /* Taille maximale pour uniformité */
}

.garage-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.garage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(1, 170, 9, 0.2);
}

.garage-image {
    height: 200px;
    overflow: hidden;
}

.garage-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.garage-card:hover .garage-image img {
    transform: scale(1.1);
}

.garage-info {
    padding: 1.5rem;
}

.garage-info h3 {
    color: #01aa09;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.garage-details {
    margin-bottom: 1.5rem;
}

.garage-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.garage-details i {
    color: #01aa09;
    width: 20px;
}

.btn-garage {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: transparent;
    color: #01aa09;
    border: 2px solid #01aa09;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-garage:hover {
    background: #01aa09;
    color: white;
}

.cta-section {
    text-align: center;
    padding: 4rem 2rem;
    background: #2b2b2b;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.btn-partenaire {
    display: inline-block;
    padding: 1rem 2rem;
    background: #ff6200;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-partenaire:hover {
    background: #e55a00;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 98, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .banner-garages h1 {
        font-size: 2.2rem;
    }
    
    .garages-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
}


.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white; /* Fond du loader */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

.loader-container.fade-out {
    opacity: 0;
    pointer-events: none; /* Empêche les interactions pendant la disparition */
}

.loader {
    animation: pulse 1.5s infinite ease-in-out;
}

.logo {
    width: 200px; /* Ajustez selon votre logo */
    height: auto;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}