@charset "utf-8";

@font-face {
    /* Donnez un nom à la police, c'est ce que vous utiliserez dans 'font-family' */
    font-family: 'Consolas-Bold'; 
    
    /* Spécifiez le chemin d'accès au fichier de police */
    src: url('../fonts/Consolas-Bold.woff2') format('woff2'),
         url('../fonts/Consolas-Bold.woff') format('woff');
    
    /* Définissez le poids et le style */
    font-weight: normal; 
    font-style: normal;
    
    /* Définissez comment le navigateur doit charger la police */
    font-display: swap; /* Fortement recommandé pour l'amélioration de la performance */
}

@font-face {
    /* Donnez un nom à la police, c'est ce que vous utiliserez dans 'font-family' */
    font-family: 'Montserrat'; 
    
    /* Spécifiez le chemin d'accès au fichier de police */
    src: url('../fonts/Montserrat.woff2') format('woff2'),
         url('../fonts/Montserrat.woff') format('woff');
    
    /* Définissez le poids et le style */
    font-weight: bold; 
    font-style: italic;
    
    /* Définissez comment le navigateur doit charger la police */
    font-display: swap; /* Fortement recommandé pour l'amélioration de la performance */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    button[type="submit"] {
        font-family: inherit;
        font-size: 16px;
    }
}
body {
    font-family: "Consolas-Bold", Tahoma, Geneva, Verdana, sans-serif;
    font-weight: bold;	
    background-image: url("../images/wp5057304.jpg");
    background-repeat: no-repeat;
    background-position: center center; /* Centre l'image */
    background-size: cover; /* Couvre tout l'élément */
    background-attachment: fixed; /* (Optionnel) Fixe l'image lors du défilement */
    background-color: #1e1a2d; /* (Bonne pratique) Couleur de secours */
    min-height: 100vh;
    overflow-x: hidden;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(var(--start-rotation, 0deg));
    }
    50% {
        transform: translateY(-20px)
            rotate(calc(var(--start-rotation, 0deg) + 180deg));
    }
}
/* Glass container styles */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15);
}
/* Header styles */
header {
    padding: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
}
/* Navigation styles */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 45px;
}
.logo {
    font-size: 32px;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}
.logo-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: all 0.3s ease;
}
.logo:hover .logo-icon svg {
    transform: scale(1.1) translateY(-2px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.4));
}
.nav-links {
    display: flex;
    gap: 30px;
}
.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 12px 24px 13px 24px;
    border-radius: 2px;
    cursor: pointer;
    font-size: 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}
.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
/* Page system */
.page {
    /*display: none;*/
    min-height: 100vh;
    padding: 40px 20px 20px;
}
.page.active {
    display: block;
}
/* Content wrapper to contain page content */
.content-wrapper {
    min-height: calc(100vh - 300px);
}
.content-wrapper-pharma {
    min-height: calc(100vh - 400px);
}
/* Home page styles */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: top;
    padding: 60px 40px;
    /*align-items: center;*/
    margin-bottom: 40px;
}
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-image img {
    width: 100%;
    /*max-width: 440px;*/
    max-width: 540px;
    max-height: 650px;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.hero-content {
    text-align: left;
}
.hero h1 {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}
.hero h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}
.hero h4 {
    color: white;
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}
.hero h4 a {
    /*color: white;*/
    color: rgba(44, 252, 20, 0.99);
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    font-size: 18px;
    font-weight: bold;
    font-family: "consolas";
}
.payment a {
    /*color: white;*/
    color: rgba(44, 252, 20, 0.99);
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    font-size: 30px;
    font-weight: bold;
    font-style: italic;
    font-family: "consolas";
    text-decoration: none;
}
.hero a {
    /*color: white;*/
    color: rgba(44, 252, 20, 0.99);
    margin-bottom: 20px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
    font-size: 18px;
    font-weight: bold;
}
.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
}
.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
button[type="submit"] {
    font-family: inherit;
    font-size: 16px;
}
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.feature-card {
    padding: 40px 30px;
    text-align: center;
    color: white;
}
.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}
.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}
/* About page styles */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: center;
}
.about-text {
    padding: 40px;
    color: white;
}
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}
.stat-card {
    text-align: center;
    padding: 30px;
    color: white;
}
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}
/* Team section styles */
.team-section {
    margin-bottom: 60px;
}
.team-section h1 {
    font-size: 3.5rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.team-section h2 {
    font-size: 2.5rem;
    color: white;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.team-member {
    padding: 40px 30px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}
.team-member:hover {
    transform: translateY(-10px);
}
.team-avatar {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}
.team-member:hover .team-avatar {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.25);
}
.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: white;
}
.team-member .role {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}
.team-member .bio {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}
.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.team-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.team-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}
/* Services page styles */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}
.service-card {
    /*padding: 40px 30px;*/
    padding: 8px 15px;
    color: white;
    text-align: left;
}
.service-header {
    /*display: flex;*/
    align-items: center;
    margin-bottom: 20px;
}
.service-header h3 {
    font-size: 28px !important;
}

.spalsh-header {
    /*display: flex;*/
    align-items: center;
    margin-bottom: 20px;
}
.spalsh-header h3 {
    font-size: 24px !important;
}

.cycle-header {
    font-size: 24px;
    align-items: center;
    margin-bottom: 20px;
}
.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}
.service-card h3 {
    font-size: 1.4rem;
    color: white;
}
.service-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;
}
.service-features {
    list-style: none;
}
.service-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: rgba(255, 255, 255, 0.9);
}
/* Contact page styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.contact-map-section {
    margin-bottom: 40px;
}
.contact-map-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
}
.contact-form {
    padding: 40px;
}
.contact-form h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.contact-form h3 {
    color: white;
    /*font-size: 2rem;*/
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.contact-form h4 {
    color: rgba(255, 255, 255, 0.7);
    /*font-size: 2rem;*/
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.contact-form h5 {
    color: white;
    /*font-size: 2rem;*/
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    color: white;
    font-size: 16px;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.form-group textarea {
    height: 120px;
    resize: vertical;
    line-height: 1.5;
}
.contact-info {
    padding: 40px;
    color: white;
}
.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}
.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 18px;
}
.contact-item-text h4 {
    color: white;
    margin-bottom: 5px;
}
.contact-item-text p {
    color: rgba(255, 255, 255, 0.8);
}
.contact-map {
    padding: 40px;
    color: white;
    width: 100%;
}
.contact-promo {
    padding: 15px;
    color: white;
    width: 100%;
}

.contact-map h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.contact-map h4 {
    color: rgba(255, 255, 255, 0.7);
    /*font-size: 2rem;*/
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.map-container {
    width: 100%;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    position: relative;
    backdrop-filter: blur(10px);
}
.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
}
.map-placeholder-icon {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.7;
}
.map-placeholder p {
    margin: 8px 0;
    font-size: 16px;
}
.map-placeholder .address {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}
.map-placeholder .integration-note {
    font-size: 14px;
    opacity: 0.6;
    margin-top: 20px;
}
/* Footer styles */
#footer {
    margin-top: 30px;
    /*padding: 30px 0;*/
    padding: 20px;
}
.footer-content {
    padding: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    padding: 5px 10px;
}
.footer-links a:hover {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}
.copyright a {
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
}
/* Section supplémentaires ajoutée par moi */

.button {
  border: none;
  background-color: #e7e7e700; 
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  font-weight: bold;
  margin: 4px 2px;
  cursor: pointer;
  border: 2px solid white;
}

.button:hover {
  background-color: rgb(201, 194, 212);
  color: black;
}
.color-clear {
    color: rgba(179, 179, 245, 0.03) !important;
}
.color-white {
    color: white !important;
}
.crest {
    width: 95%;
}
.cursor-zoom {
    cursor: zoom-in !important;
}
.cycle {
	font-family: "consolas";
	font-size: 36px;
    text-align: right;
}
.description {
    padding: 20px 20px 0px 20px;
}
.details-link {
    color: greenyellow; 
    font-size: 14px;
    text-align: right;
}
.detail-buy-now {
    text-align: center !important;
    padding: 20px 0px 20px 0px;
}
.detail-buy-now a {
    font-weight: bold !important;
    font-size: 48px !important;
    font-style: italic !important;
    text-decoration: none !important;
}
.display-block {
    display: block !important;
}
.flex {
    display: flex;
    justify-content: space-between;
}
.flex-details-link {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 16px;
}
.font-size-96px {
    font-size: 96px !important;
}
/* Category header .font-size-72px formely 72 px readjust to 64px*/
.font-size-72px {
    font-size: 72px !important;
}
.font-size-64px {
    font-size: 64px !important;
}
.font-size-56px {
    font-size: 56px !important;
}
.font-size-48px {
    font-size: 48px !important;
}
.font-size-36px {
    font-size: 36px !important;
}
.font-size-28px {
    font-size: 28px !important;
}
.font-size-24px {
    font-size: 24px !important;
}
.font-size-18px {
    font-size: 18px !important;
}
.font-size-16px {
    font-size: 16px !important;
}
.font-size-14px {
    font-size: 13px !important;
}
.font-size-12px {
    font-size: 12px !important;
}
.font-size-2px {
    font-size: 2px !important;
}
.font-weight-bold {
    font-weight: bold !important;
}

.height-95vh {
    height: 95vh;
}
.logo-header {
    /*color: whitesmoke;*/
    color: #f00 !important; 
    text-decoration: none; 
    font-size: 24px !important;
    font-style: italic;
}
.logo-size {
    width: 450px;
}
.margin-bottom-0px {
    margin-bottom: 0px !important;
}
.margin-zero {
    margin: 0px !important;
}
.margin-top-20px {
    margin-top: 20px !important;
}
.margin-top-50px {
    margin-top: 50px;
}
.menu-mobile {
    display: none;
}
.mini-button {
  border: none;
  background-color: #e7e7e700; 
  color: white;
  padding: 6px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 10px;
  font-weight: bold;
  margin: 2px 1px;
  cursor: pointer;
  border: 2px solid white;
}

.mini-button:hover {
  background-color: rgb(201, 194, 212);
  color: black;
}
.padding-zero {
    padding: 0px !important;
}
.padding-20px {
    padding:20px;
}
.padding-bottom-0px {
    padding-bottom: 0px !important;
}
.padding-top-60px {
    padding-top: 60px !important;
}
.product-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 2px;
    /*box-shadow: 15px 35px rgba(0, 0, 0, 0.2);*/
    /*margin-bottom: 15px*/
}
.product-image:hover img {
   cursor: pointer;
}
.product-image-detail img {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 2px;
    /*padding: 70px; */
    padding-top: 60px;
}
.qr-detail img {
    /*width: 100%;*/
    padding: 40px 0px 30px 0px;
    max-width: 600px;
    height: auto;
    border-radius: 2px;
}
.qr-center{
    text-align: center;
}
.return {
    text-align: right;
}
.text-align-center {
    display: flex !important;
    justify-content: center !important;
}
.text-justify {
    text-align: justify;
}
.top {
    display: none;
    color: aliceblue; 
    text-align: center; 
    font-size: 35px;
    font-style: italic; 
    text-decoration: none;
}
.vip-card-price {
	/*font-family: "consolas";*/
	font-size: 24px;
    text-align: right;
    margin-top: 15px;
}
.vert-fluo {
    color: rgb(123, 255, 46) !important;
}
.jaune-fluo {
    color: rgb(255, 255, 0) !important;
}
.orange-fluo {
    color: rgb(255, 165, 0) !important;
}
.rouge-fluo {
    color: rgb(255, 0, 0, 1) !important;
}

/* Menu responsive 
.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #04AA6D;
  color: white;
}

.topnav .icon {
  display: none;
}

/* Le conteneur de la modale */
.modal {
    display: none; /* Caché par défaut */
    position: fixed; /* Reste en place même en scrollant */
    z-index: 1; /* Place la modale au-dessus des autres éléments */
    /*padding-top: 100px; /* Position en haut de l'écran */
    padding-top: 1%; /* Position en haut de l'écran */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Permet le défilement si l'image est très grande */
    background-color: rgba(0,0,0,0.9); /* Fond noir semi-transparent */
}

/* Le contenu de la modale (l'image) */
.modal-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1800px; /* Taille maximale de l'image dans la modale */
    /* L'image s'affichera à sa taille native si elle est plus petite que 1000px/80% */
}

/* Le bouton de fermeture (x) */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Responsive design */
@media (max-width: 1220px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .logo-header {
        font-size: 24px;
    }
}
@media (max-width: 1110px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .crest {
        display: none;
        width: 100%;
    }
}
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}/*
@media (max-width: 768px) {
    /* Adjust padding for mobile *
    .topnav a:not(:first-child) {display: none;}
    .topnav a.icon {
        float: right;
        display: block;
    }
}*/
@media (max-width: 768px) {
    /* Adjust padding for mobile 
    .topnav.responsive {position: relative;}
    .topnav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
    }*/
    .page {
        padding: 30px 20px 20px;
    }
    .content-wrapper {
        min-height: auto;
    }
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding-top: 20px !important;
        padding: 10px;
    }
    .hero-content {
        text-align: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    nav {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }
    .nav-links {
        gap: 15px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    .nav-links a {
        display: block;
        text-align: center;
        width: 100%;
        max-width: 200px;
        font-size: 14px;
        padding: 10px 20px;
    }
    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-links {
        gap: 15px;
        flex-direction: column;
    }
    .footer-links a {
        display: block;
        text-align: center;
    }
    button[type="submit"] {
        width: 100%;
    }
    .map-container {
        height: 350px;
    }
    .logo-icon {
        width: 40px;
        height: 40px;
    }
    .logo {
        font-size: 22px;
    }
    .details-link {
        color: greenyellow; 
        font-size: 20px;
        text-align: right;
    }
    /*.flex-details-link {
        display: flex;
        justify-content: space-between;
        margin-top: 15px;
        font-size: 20px !important;
    }*/
    .product-image-detail img {
        width: 90%;
        padding: 0px;
    }
    .qr-detail img {
        width: 100%;
    }
   /* .service-header h3 {
        font-size: 46px !important;
    }*/
    .vip-card-price h5 {
        font-size: 36px;
    }
    .service-card h5 {
        font-size: 28px;
    }
    .service-card h3 {
        font-size: 42px;
    }
    .service-card h3 span {
        font-size: 24px !important;
    }
    .contact-grid h2 {
        font-size: 42px !important;
    }
    .team-section h2 {
        font-size: 56px !important;
    }
    .logo-header {
        font-size: 20px !important;
    }
    .crest {
        width: 100%;
    }
    .discount-responsive {
        font-size: 18px !important;
    }
    .logo-display-none{
        display: none;
    }
    .logo-size {
        width: 80dvw;
    }
    .menu-mobile {
        display: block;
    }
    .menu-desktop {
        display: none;
    }
    .top {
        display: block;
        color: aliceblue; 
        text-align: center; 
        font-size: 24px;
        font-style: italic; 
        text-decoration: none;
    }
    .payment-mobile-title{
        font-size: 28px !important;
    }
    .payment-mobile-address{
        font-size: 12px !important;
    }
    .text-align-center-mobile {
        text-align: center;
    }
    .card-display-none-responsive{
        display: none;
    }
    .font-size-responsive-48px {
        font-size: 48px !important;
    }
    .font-size-responsive-36px {
        font-size: 36px !important;
    }
    .font-size-responsive-24px {
        font-size: 24px !important;
    }
    .font-size-responsive-18px {
        font-size: 18px !important;
    }
    .font-size-responsive-16px {
        font-size: 16px !important;
    }
    .font-size-responsive-14px {
        font-size: 14px !important;
    }
    .font-size-responsive-12px {
        font-size: 12px !important;
    }
    .service-header h3{
        font-size: 48px !important;
    }
    .responsive-text-align-center {
        text-align: center !important;
    }
    .mini-button {
        border: none;
        background-color: #e7e7e700; 
        color: white;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        font-weight: bold;
        margin: 4px 2px;
        cursor: pointer;
        border: 2px solid white;
    }
    .footer-contact-responsive {
        display: none !important;
    }
    .line-height-zero {
        line-height: normal !important;
    }
    .padding-side-20px {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }
}

/* Advertissing banner */
.top-alert-bar {
    background-color: #333; /* Fond gris foncé */
    color: #fff; /* Texte blanc */
    text-align: center;
    padding: 10px 15px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box; /* S'assure que le padding n'augmente pas la largeur */
    position: sticky; /* Fixe la bannière au défilement */
    top: 0;
    z-index: 1000; /* Assurez-vous qu'elle est au-dessus du reste du contenu (y compris le header) */
    border-bottom: 3px solid #f00; /* Ligne rouge pour attirer l'attention */
}

.top-alert-text {
    margin: 0;
    line-height: 1.4;
}

.top-alert-text a {
   /* color: #ff0; /* Lien jaune pour le contraste */
    color: rgb(0, 255, 38); /* Lien jaune pour le contraste */
    text-decoration: none;
    font-weight: bold;
}

.top-alert-text a:hover {
    text-decoration: underline;
}

/* Ajustement pour les petits écrans (téléphones cellulaires) */
@media (max-width: 768px) {
    .top-alert-bar {
        padding: 8px 10px;
        font-size: 12px; /* Texte légèrement plus petit sur mobile */
    }
}

/*
 * 1. Définition de l'animation de changement de couleur (Scintillement)
 */
@keyframes scintillement {
    0%   { color: #ff6b6b !important; text-shadow: 0 0 15px rgba(255, 107, 107, 0.8); } /* Rouge vif */
    25%  { color: #48dbfb !important; text-shadow: 0 0 15px rgba(72, 219, 251, 0.8); } /* Bleu ciel */
    50%  { color: #ff9f43 !important; text-shadow: 0 0 15px rgba(255, 159, 67, 0.8); } /* Orange */
    75%  { color: #1dd1a1 !important; text-shadow: 0 0 15px rgba(29, 209, 161, 0.8); } /* Vert menthe */
    100% { color: #ff6b6b !important; text-shadow: 0 0 15px rgba(255, 107, 107, 0.8); } /* Retour au rouge */
}

/*
 * 2. Définition de l'animation de grossissement/rétrécissement (Battement de cœur)
 */
@keyframes battement-coeur {
    0% {
        transform: scale(1); /* Taille normale */
    }
    50% {
        transform: scale(1.05); /* Grossit légèrement (le "battement") */
    }
    100% {
        transform: scale(1); /* Retour à la taille normale */
    }
}

/*
 * 3. Application des animations à une nouvelle classe
 * (Vous appliquerez cette classe à l'élément de texte dans votre HTML)
 */
.texte-anime {
    /* Assurez-vous que l'élément peut être mis à l'échelle */
    display: inline-block;
    /*color: whitesmoke;
    /* Application des animations */
    animation: 
        /* 1. Scintillement (couleur changeante) */
        scintillement 4s infinite alternate,
        /* 2. Battement de cœur (taille pulsée) */
        battement-coeur 1.5s infinite;

    /* Styles de base pour l'élément */
    font-weight: bold;
}

/* Responsive dropdown menu*/  
.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.active {
  background-color: #727272;
  color: white;
}

.topnav .icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;    
  border: none;
  outline: none;
  color: white;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: whitesmoke;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: #555;
  color: white;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 768px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
  .h1 {
    font-size: 18fpx !important;
}
}

@media screen and (max-width: 768px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

@media (max-width:600px){.w3-modal-content{margin:0 10px;width:auto!important}.w3-modal{padding-top:30px}
.w3-dropdown-hover.w3-mobile .w3-dropdown-content,.w3-dropdown-click.w3-mobile .w3-dropdown-content{position:relative}	
.w3-hide-small{display:none!important}.w3-mobile{display:block;width:100%!important}.w3-bar-item.w3-mobile,.w3-dropdown-hover.w3-mobile,.w3-dropdown-click.w3-mobile{text-align:center}
.w3-dropdown-hover.w3-mobile,.w3-dropdown-hover.w3-mobile .w3-btn,.w3-dropdown-hover.w3-mobile .w3-button,.w3-dropdown-click.w3-mobile,.w3-dropdown-click.w3-mobile .w3-btn,.w3-dropdown-click.w3-mobile .w3-button{width:100%}}
@media (max-width:768px){.w3-modal-content{width:500px}.w3-modal{padding-top:50px}.w3-modal-content-oral-box{width:500px}}
@media (min-width:993px){.w3-modal-content{width:900px}.w3-hide-large{display:none!important}.w3-sidebar.w3-collapse{display:block!important}.w3-modal-content-oral-box{width:900px}}

.w3-modal{z-index:3;display:none;padding-top:60px;position:fixed;left:0;top:0;width:100%;height:100%;overflow:auto;background-color:rgb(0,0,0);background-color:rgba(0,0,0,0.4)}
.w3-animate-zoom {animation:animatezoom 0.6s}@keyframes animatezoom{from{transform:scale(0)} to{transform:scale(1)}}
.w3-modal-content{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;width:600px}
.w3-modal-content-oral-box{margin:auto;background-color:#fff;position:relative;padding:0;outline:0;width:1000px}

@media (max-width: 400px) {
    .logo-header {
        /*display: none !important;*/
        font-size: 16px !important;
}
}