/* ------------------------- */
/* GLOBAL */
/* ------------------------- */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #fff;
  color: #000;
  scroll-behavior: smooth;
}

header {
  display: flex;
  align-items: center;
  justify-content: right;
  gap: 20px;
  padding: 20px;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 100;
}

nav {
  display: flex;
  gap: 15px;
  align-items: center;
}

.cart-icon {
  height: 22px;
  width: auto;
  cursor: pointer;
}

.hamburger {
  display: none;
}


a.disabled {
  color: #aaa;
  cursor: pointer;
  opacity: 0.7;
  pointer-events: auto; /* clic autorisé */
}


/* Bouton désactivé */

.btn.disabled {
  background-color: #777;       /* Couleur grisée */
  cursor: default;
  pointer-events: auto;
  opacity: 0.6;                 /* Effet "désactivé" */
}


/* MOBILE */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border: 1px solid #000;
    padding: 10px 20px;
    gap: 10px;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
    cursor: pointer;
  }
}

/* Menu header animation pour toutes les pages */
nav a {
  position: relative;
  text-decoration: none;
  color: #000; /* couleur par défaut */
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px; /* épaisseur du trait */
  background-color: #ff404a; /* rouge logo */
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%; /* le trait s'étend sous le lien */
}

nav a:hover {
  color: #ff404a; /* texte prend la couleur du logo au survol */
}

/* Logo miniature animé dans le menu */
.logo-link {
  display: flex;
  align-items: center;
  margin-right: 20px; /* espace entre le logo et le reste du menu */
}

/* Taille et animation continue du logo */
.logo-mini {
  height: 30px; /* taille du logo miniature */
  width: auto;
  transition: transform 0.5s ease; /* pour un effet smooth */
  animation: logo-bounce 2s ease-in-out infinite; /* rebond léger */
}

/* Animation au survol du logo (rotation + zoom) */
.logo-mini:hover {
  transform: rotate(-10deg) scale(1.1);
}

/* Keyframes pour le rebond continu du logo */
@keyframes logo-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}



/* ------------------------- */
/* HERO */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #000;
  color: #fff;
}

.hero-inner {
  max-width: 1200px;  /* largeur limitée pour le hero */
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Logo responsive */
.hero img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

/* Texte hero */
.hero p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero .btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border: 2px solid #fff;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.hero .btn:hover {
  background: #ff404a;
  color: #000;
  border-color: #ff404a;
  transform: scale(1.05);
}

/* ------------------------- */
/* HERO */
/* ------------------------- */
.hero {
  text-align: center;
  padding: 60px 20px;
  background: #000;
  color: #fff;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* Logo hero */
.hero img {
  max-width: 250px;
  width: 50%;
  height: auto;
  display: block;
  margin: 0 auto 20px auto;
}

/* Paragraphes et titres */
.hero h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 400;
}

.hero h3 {
  font-size: 24px;
  margin-top: 10px;
  margin-bottom: 5px;
  font-weight: 300;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* Boutons */
.hero .btn {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #000;
  text-decoration: none;
  border: 2px solid #fff;
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s;
}

.hero .btn:hover {
  background: #ff404a;
  color: #000;
  border-color: #ff404a;
  transform: scale(1.05);
}

.portfolio-wrapper {
  transform: translateX(-120px);
  display: inline-flex;
  align-items: center;
  gap: 60px;
  justify-content: center;
  margin-top: 20px;
}


/* Bouton centré */
.portfolio-btn {
  z-index: 2;
  position: relative;
  Margin-left: -100px;
}

/* Doigt animé */
.pointer {
  width: 120px; /* taille du doigt, ajuste selon ton image */
  height: auto;
  animation: point-and-bounce 1s infinite alternate;
  transform-origin: center;
}

/* Animation : bounce vertical + petit mouvement latéral vers le bouton */
@keyframes point-and-bounce {
  0% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
  25% {
    transform: translateX(3px) translateY(-5px) rotate(-5deg);
  }
  50% {
    transform: translateX(6px) translateY(-10px) rotate(0deg);
  }
  75% {
    transform: translateX(3px) translateY(-5px) rotate(5deg);
  }
  100% {
    transform: translateX(0) translateY(0) rotate(0deg);
  }
}

/* Boutique wrapper */
.boutique-wrapper {
  margin-top: 20px;
}

/* Promo */
.hero .promo {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-top: 0;
}

/* BOUTIQUE */
.products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px;
}

.product-card {
  border: 1px solid #ccc;
  padding: 20px;
  width: 220px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  background: #fff;
}

/* Boutique désactivée : griser les produits */
.products.disabled .product-card {
  filter: grayscale(100%);
  opacity: 0.6;
  pointer-events: none; /* désactive le clic sur la carte */
  position: relative;   /* nécessaire pour le tooltip */
}

/* Boutons désactivés */
.products.disabled .product-card button {
  background-color: #777;
  cursor: default;
  pointer-events: none;
  opacity: 0.6;
}

/* Tooltip “Bientôt disponible” */
.products.disabled .product-card::after {
  content: "Bientôt disponible";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.8);
  color: #fff;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 14px;
  pointer-events: none;
  text-align: center;
}


.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.product-card img {
  width: 100%;
  height: auto;
}

.product-card button {
  margin-top: 10px;
  padding: 8px 12px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
}

.product-card button:hover {
  background: #ff404a;
  color: #000;
}

/* PANIER */
.cart {
  position: fixed;
  right: 20px;
  top: 70px;
  width: 300px;
  max-height: 80%;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #000;
  padding: 15px;
  display: none;
  z-index: 1000;
}

.cart h3 {
  margin-top: 0;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.cart-item button {
  margin-left: 5px;
  padding: 2px 6px;
  cursor: pointer;
}

.cart-total {
  font-weight: bold;
  margin-top: 10px;
  text-align: right;
}

.cart button.checkout {
  margin-top: 10px;
  width: 100%;
  background: #000;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  border: none;
  transition: background 0.3s;
}

.cart button.checkout:hover {
  background: #ffcc00;
  color: #000;
}

.section1 {
  background-image: url('images/fond1.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh; /* ou la hauteur que tu souhaites */
}

.section2 {
  background-image: url('images/fond2.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
}

.section3 {
  background-image: url('images/fond3.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
}




/* ------------------------- */
/* Responsive */
@media (max-width: 768px) {
  .pointer {
    width: 70px;
  }

}

/* SECTIONS DU BAS */
.section {
  position: relative;
  color: #fff;
  padding: 80px 40px;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-content {
  position: relative;
  z-index: 2;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 15px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.section p {
  font-size: 18px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.section.posters {
  background: url('MontCameroun.png') no-repeat;
  background-size: cover;
  background-position: 30% 65%;
}

.section.tshirts {
  background: url('T-Shirt.png') no-repeat;
  background-size: cover;
  background-position: 30% 30%;
}

.section.accessories {
  background: url('ToteBag.png') no-repeat;
  background-size: cover;
  background-position: 30% 60%;
}

/* Section À propos */
/* Section À propos */
.about-me {
  padding: 60px 20px;
  background-color: #f8f8f8;
}

/* TITRE : tu as la main ici */
.about-title {
  text-align: center;      /* change ici si tu veux left/right */
  font-size: 2.5rem;       /* taille du h2 */
  margin-bottom: 30px;     /* espace sous le titre */
  color: #111;
  font-weight: normal;
}

/* Conteneur principal */
.about-me-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Texte */
.bio {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
}

/* Images */
.portrait {
  display: flex;
  justify-content: center;
  flex: 0 0 220px; /* largeur maîtrisée */
}

.portrait img {
  width:400px;
  height: auto;
  border-radius: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .about-me-container {
    flex-direction: column;
  }

  .portrait {
    flex: none;
  }

  .portrait img {
    width: 150px;
  }

  .bio {
    text-align: left;
  }
}







/* ------------------------- */
/* PORTFOLIO / WORKS */
/* ------------------------- */
.works {
  padding: 100px 20px;
  background: #fff;
}

.works-container {
  max-width: 1300px;
  margin: 0 auto;
}

.works-header {
  display: flex;
  align-items: flex-end;   /* aligne le menu et le H2 par le bas */
  justify-content: space-between; /* H2 à gauche, menu à droite */
  margin-bottom: 50px;     /* espace sous le header */
}

.works-header h2 {
  margin: 0; /* supprime le margin par défaut */
  font-size: 60px;
  font-weight: 200;
}

.works-menu {
  display: flex;
  gap: 20px;       /* espace entre les liens */
}

.works-menu a {
  text-decoration: none;
  color: #000;
  font-weight: 200;
  position: relative;    /* pour le trait animé */
  padding-bottom: 3px;
}

.works-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #ff404a;
  transition: width 0.3s ease;
}

.works-menu a:hover::after {
  width: 100%;
}


.works-menu a:hover {
  color: #ff404a;
}

/* TRAIT ANIMÉ POUR LE MENU DU PORTFOLIO */
.works-menu a {
  position: relative;
  display: inline-block;
  padding-bottom: 3px; /* espace pour le trait */
}

.works-menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;           /* épaisseur du trait */
  background-color: #ff404a; /* rouge logo */
  transition: width 0.3s ease;
}

.works-menu a:hover::after {
  width: 100%;
}

/* ------------------------- */
/* RESPONSIVE PORTFOLIO / MENU */
/* ------------------------- */
@media (max-width: 768px) {
  .works-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .works-header h2 {
    text-align: center;
    font-size: 40px;
  }

  .works-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
}

.work-card {
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s ease;
}

.work-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.work-image img {
  width: 100%;
  display: block;
  border-radius: 8px;
  transition: transform 0.4s;
}

.work-info {
  padding: 20px 10px;
}

.work-info h3 {
  font-size: 18px;
  margin-bottom: 2px;
  font-weight: 200;
}

.work-info p {
  font-size: 16px;
  color: #888;
}

/* ------------------------- */
/* MOCKUP AU SURVOL */
/* ------------------------- */
.work-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9; /* ou 1/1 si tu veux carré */
}


/* Vidéo miniature visible par défaut */
.mini-video {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  display: block;
}

/* Mockup au hover */
.work-image .mockup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.work-image .mockup img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Au survol du work-card, afficher le mockup */
.work-card:hover .mockup {
  opacity: 1;
}

/* Effet de hover sur image ET vidéo */
.work-card:hover .work-image img,
.work-card:hover .work-image video {
  transform: scale(1.05);
  filter: brightness(0.5);
  transition: transform 0.3s, filter 0.3s;
}


/* ------------------------- */
/* CONTACT PAGE */
/* ------------------------- */
.contact-section {
  padding: 90px 20px;
}

.contact-container {
  display: flex;
  gap: 90px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: flex-start;
}

.contact-left {
  flex: 2;
  min-width: 320px;
}

.contact-left h3 {
  font-size: 60px;
  margin-top: 39px;
  margin-bottom: 55px;
  font-weight: 200;
  color: #adadad;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form .form-group label {
  font-size: 16px;
  margin-bottom: 2px;
  color: #adadad; 
}

.contact-form .form-group input,
.contact-form .form-group textarea {
  width: 100%;
  padding: 8px 0;
  font-size: 16px;
  border: none;
  border-bottom: 2px solid #ccc;
  border-radius: 0;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  outline: none;
  border-bottom-color: #ff404a;
}

.contact-form textarea {
  background-color: #e8e8e8;
  border-bottom: 2px solid #ccc;
  padding: 12px 8px;
  border-radius: 8px;
  resize: vertical;
  width: 100%;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-form .btn-icon {
  border: none;
  padding: 8px;
  border-radius: 12px;
  width: 120px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}

.contact-form .btn-icon img {
  width: 80px !important;
  height: 80px !important;
}

.contact-form .btn-icon:hover {
  transform: scale(1.07);
}

.contact-right p light {
  display: block;          /* force le titre à passer à la ligne */
  font-size: 14px;         /* plus petit pour le titre */
  color: #888;             /* gris clair */
  margin-bottom: 3px;
 
}

.contact-right {
  margin-top: 72px; /* ajuste la hauteur du bloc par rapport au bloc de gauche */
  text-align: left; /* si tu veux aligner le texte à gauche */
}

.contact-right p span,
.contact-right p .email {
  display: block;          /* valeur sur sa propre ligne */
  font-size: 36px;         /* plus grand pour la valeur */
  font-weight: light;
  color: #ff404a;          /* couleur différente pour ressortir */
  text-align: left;
}

/* ------------------------- */
/* STYLES LIGNES SPECIFIQUES */
/* ------------------------- */
.contact-right .contact-phone span,
.contact-right .contact-phone .email {
  font-size: 36px;
  font-weight: light;
  color: #000;
}

.contact-right .contact-location span,
.contact-right .contact-location .email {
  font-size: 48px;       /* taille différente pour la ligne du bas */
  color: #000;        /* couleur différente */
  font-weight: light;
}

@media (max-width: 768px) {
  .contact-right p span,
  .contact-right p .email {
    font-size: 20px;       /* légèrement plus petit sur mobile */
  }

  .contact-right p light {
    font-size: 12px;
  }
}


/* ------------------------- */
/* FOOTER */
/* ------------------------- */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 20px 30px;
  text-align: center;
  margin-top: 80px;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

/* LOGO / TITRE */
.footer-logo {
  text-align: left;
}

.footer-logo h2 {
  font-size: 36px;
  font-weight: 300;
  margin: 0;
  color: #fff;
}

.footer-logo p {
  font-size: 16px;
  color: #8b8b8e;
  margin-top: 5px;
}

/* FOOTER LINKS */
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px; /* espace entre les liens et le titre */
}

/* Titre au-dessus des liens */
.footer-links h3 {
  font-size: 1rem;       /* taille du titre */
  font-weight: 200;      
  color: #fff;           /* couleur texte du footer */
  margin-bottom: 8px;    /* espace entre le titre et les liens */
  text-align: left;
}

/* Liens */
.footer-links a {
  text-decoration: none;
  color: #8b8b8e;        /* couleur des liens */
  transition: 0.3s;
  position: relative;
  cursor: pointer;
  text-align: left;
}

/* Hover sur les liens */
.footer-links a:hover {
  color: #ff404a;
}

/* Soulignement animé au hover */
.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 1px;
  background: #ff404a;
  transition: 0.3s;
}

.footer-links a:hover::after {
  width: 100%;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 15px;
}

.footer-socials img {
  width: 80px;
  height: auto;
  transition: 0.3s;
  filter: brightness(0) invert(1);
}

.footer-socials img:hover {
  transform: scale(1.15);
  filter: brightness(1) invert(0) sepia(1) saturate(10000%) hue-rotate(-10deg);
}

/* BOTTOM */
.footer-bottom {
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 20px;
}

.footer-bottom p {
  font-size: 14px;
  color: #777;
}

/* ------------------------- */
/* FOOTER RESPONSIVE - ÉCRAN ≤768px (corrigé) */
/* ------------------------- */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;      /* empile les colonnes */
    align-items: center;         /* centre horizontalement */
    text-align: center;          /* centre le texte à l’intérieur */
    gap: 20px;                   /* espace entre sections */
  }

  .footer-logo {
    text-align: center;          /* centre le logo et le texte */
  }

  .footer-links {
    align-items: center;         /* centre les liens verticalement */
    gap: 10px;                   /* espace entre titre et liens */
    margin-bottom: 20px;         /* espace sous les liens */
  }

  /* FORCER le centrage des titres et liens */
  .footer-links h3,
  .footer-links a {
    text-align: center !important;
    display: block;              /* assure que chaque lien est sur sa ligne */
    margin: 0 auto;              /* centre les liens block */
  }

  .footer-links a {
    width: auto;                 /* liens prennent leur largeur naturelle */
  }

  .footer-socials {
    justify-content: center;     /* centre les icônes */
    margin-top: 10px;
  }

  .footer-bottom {
    text-align: center;          /* centre le texte en bas */
  }
}





