/* ===== Fond et texte global ===== */
body {
    background-color: #000; /* Fond noir */
    color: #fff; /* Texte blanc par défaut */
    font-family: 'Times New Roman', Times, serif; /* Utilisez une police plus stylée si possible (ex: Google Fonts) */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    max-width: 1200px;
}

/* ===== Header / Logo ===== */
.logo-section {
    text-align: center;
    padding: 30px 20px;
    padding-bottom: 2px;
    margin-bottom: auto;
}

.main-logo {
    width: 100px;  /* Ajustez la taille selon vos besoins */
    height: 150px; /* Ajustez la taille selon vos besoins */
    object-fit: contain; /* Assure que l'image est contenue sans être coupée */
    margin-bottom: 5px;
}

.logo-placeholder {
    font-size: 24px;
    font-weight: bold;
    border: 3px solid #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 auto 5px;
}

.logo-section h1 {
    font-size: 40px;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
}


.container{
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
}

/* Conteneur principal */
.content-container {
    width: 90%;
    max-width: 800px; /* Taille maximale pour simuler l'affichage mobile */
    margin-bottom: 20px;
    padding: 20px;
}

/* Carte de bienvenue */
.welcome-card {
    background-color: #1a1a1a; /* Fond de carte noir un peu plus clair */
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.welcome-card h2 {
    font-size: 20px;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 500;
}

.welcome-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    margin-bottom: 30px;
}


/* ===== Boutons d'action ===== */
.cta-buttons {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.primary-btn, .secondary-btn {
    flex: 1;
    padding: 15px 10px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
}

.primary-btn {
    background-color: transparent; /* Bouton principal blanc */
    color: #fff;
    border: 1px solid #fff;
}

.secondary-btn {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff; /* Bouton secondaire avec contour blanc */
}

/* ===== Liens d'information ===== */
.info-links {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.info-btn {
    flex: 1;
    background-color: #333; /* Fond gris foncé pour les boutons d'info */
    color: #fff;
    border: none;
    padding: 15px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}

/* ===== Section des cartes Produit/Événement ===== */
.product-event-cards {
    display: flex;
    overflow-x: scroll; /* Permet le défilement horizontal */
    padding-top: 20px;
    gap: 10px;
}

.card {
    flex: 0 0 auto; /* Empêche les cartes de se réduire */
    width: 150px; /* Largeur fixe pour les cartes */
    text-align: center;
}

.card-image {
    width: 100%;
    height: 250px; /* Hauteur fixe pour les images */
    object-fit: cover; /* Assure que l'image couvre la zone */
    border-radius: 5px;
}

.card p {
    font-size: 14px;
    font-weight: bold;
    margin-top: 5px;
    text-transform: lowercase; /* Comme dans le design */
}

/* ===== Gestion des pages cachées ===== */
.page {
    display: none; /* toutes les pages cachées par défaut */
    padding: 20px;
}

.page.active {
    display: block; /* page active affichée */
}

/* ===== Bouton Retour ===== */
.back-btn {
    background: black;
    color: white ;
    border-color: white;
    padding: 5px 10px;
    margin-bottom: 15px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 9999;
}

/*produits*/
.products-container {
    width: 90%;
    max-width: 1200px; /* Taille maximale pour simuler l'affichage mobile */
    margin-top: 20px;
    padding-bottom: 50px; 
}

.separator {
    border: 0;
    height: 1px;
    background-color: black; 
    margin: 20px 0;
    width: 100%;
}

.product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin: 30px 0;
}

/* Règle pour l'alternance : inverse l'ordre pour les éléments avec la classe 'reversed' */
.product-item.reversed {
    flex-direction: row-reverse;
}

.product-image {
    width: 130px; 
    height: 130px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.product-details {
    flex: 1; 
}

.product-description {
    font-size: 16px;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.4;
    text-transform: none; /* Ne force pas la minuscule */
}

.order-btn {
    background-color: #444; /* Un gris foncé pour simuler le bouton noir éclairci */
    color: #fff;
    border: none; /* Pas de bordure visible pour le bouton 'commander' */
    padding: 8px 20px;
    border-radius: 5px;
    text-transform: lowercase;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5); /* Petite ombre pour le faire ressortir */
    transition: background-color 0.3s;
}

.order-btn:hover {
    background-color: #555;
}






/* ===== Footer ===== */
.footer-bar {
    text-align: center;
    padding: 15px 0;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    color: #fff;
    width: 100%;
    /* Pour simuler la position en bas de l'écran */
    margin-top: auto;
    border-top: 1px solid #333;
}

/*contact*/

.contacts-container {
    width: 90%;
    max-width: 1200px;
    margin-top: 20px;
    padding-bottom: 50px;
    position: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}


.contact-logo-circle .icon-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 5px;
}

.contact-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-title {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.contact-title.email-address {
    font-size: 16px;
    font-weight: normal;
}

.contact-btn {
    background-color: #333;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-btn:hover {
    background-color: #555;
}

.contact-adresse{
    font-size: 10px;
    color: #9E9FAC;
}