* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  list-style: none;
}

:root {
  --bg-color: #06141B;
  --text-color: #fff;
  --text-color-contrast: #1f1f1f;
  --main-color: #FBC24E;
  --main-color2: #11212D;
}

html {
    --scroll-behavior: smooth;
    scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--bg-color);
  color: var(--text-color);
  padding-top: 70px;
}

header {
  background: var(--main-color2);
  position: fixed;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 12%;
  transition: all .50s ease;
}

.logo span .axel {
  color: var(--main-color);
}

.logo {
  display: flex;
  align-items: center;
}

.logo i {
  color: var(--main-color);
  font-size: 28px;
  margin-right: 13px;
}

.logo span {
  color: var(--text-color);
  font-size: 1.7rem;
  font-weight: 600;
}

.navbar {
  display: flex;
}

.navbar a {
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 5px 0;
  margin: 0px 30px;
  transition: all .50s ease;
}

.navbar a:hover {
  color: var(--main-color);
}

.main {
  display: flex;
  align-items: center;
}

.main a {
  margin-right: 25px;
  margin-left: 10px;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 500;
  transition: all .50s ease;
}

.user {
  display: flex;
  align-items: center;
}

.user i {
  color: var(--main-color);
  font-size: 28px;
  margin-right: 7px;
}

.main a:hover {
  color: var(--main-color);
}

#menu-icon {
  font-size: 35px;
  color: var(--text-color);
  cursor: pointer;
  z-index: 10001;
  display: none;
}

.top-section {
  color: var(--text-color-contrast);
  background-color: var(--main-color);
  width: 100%;
}

.flex-container {
    display: flex;
    justify-content: space-around;
    flex-direction: row;
    background-color: #bbdefb;
    height: 100%;
    padding: 15px;
    gap: 5px;
  }

.flex-container > div{
    border-radius: 5px;
    padding: 0%;
}

.img-computer {
  width: 384px;

}


.hero {
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
  gap: 40px;
}

.left {
  flex: 1;
  min-width: 300px;
}

.left h1 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
}

.highlight {
  color: #ffd479;
}

.left p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ccc;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn.yellow {
  background-color: #fbc24e;
  color: black;
}

.btn.yellow:hover {
  background-color: #e0a92e;
}

.btn.dark {
  background-color: #1a1a1a;
  color: white;
}

.btn.dark:hover {
  background-color: #333;
}

.right {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.right img {
  max-width: 100%;
  height: auto;
}

.gradient-title {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 20px;
  font-family: 'PT Serif', sans-serif;
  font-weight: 800 !important; 

  background: linear-gradient(90deg, #ffffff, #ffd479);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text; /* Firefox */
  color: transparent;
}

.services-section {
  padding: 60px 20px;
  color: white;
  text-align: center;
  max-width: 1200px;
  margin: auto;
}

.services-header .tag {
  display: inline-block;
  background: var(--main-color);
  color: var(--text-color-contrast);
  padding: 4px 12px;
  font-size: 0.75rem;
  border-radius: 20px;
  margin-bottom: 10px;
}

.services-header h2 {
  margin: 10px 0;
}

.services-header p {
  color: #ccc;
  font-size: 1rem;
  max-width: 600px;
  margin: auto;
}

.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-card {
  background: linear-gradient(to bottom right, #1b1d20, #151618);
  border: 1px solid #2b2d30;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 10px;
}

.service-card ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 10px;
}

.service-card li {
  margin: 5px 0;
  color: #80ffb7;
}

.service-card a {
  font-size: 0.9rem;
  color: #59a9ff;
  text-decoration: none;
}

.service-card a:hover {
  color: var(--main-color);
  transition: all 0.5s;
}

.cta-box {
  background: var(--main-color);
  margin-top: 50px;
  border-radius: 12px;
  padding: 30px 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.cta-box strong {
  font-size: 1.2rem;
  color: var(--main-color2);
}

.cta-box p {
  font-size: 0.9rem;
  color: var(--main-color2);
  margin: 0;
}

.cta-button {
  background: var(--main-color2);
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
}

.cta-button:hover {
  background: var(--main-color2);
  color: var(--main-color);
  transition: all 0.5s ease;
}

.info {
  color: var(--main-color);
}

/* Même style que pour le tag "MES SERVICES" */
.section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.section-tag {
  display: inline-block;
  background: var(--main-color);
  color: var(--text-color-contrast);
  padding: 4px 12px;
  font-size: 0.75rem;
  border-radius: 20px;
  margin-bottom: 10px;
}

/* Le titre en dégradé comme dans la première section */

.about-section {
  padding: 2rem 2rem 2rem;
  background-color: var(--main-color2);
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1;
  min-width: 280px;
}

.about-text p {
  color: #cbd5e1;
  font-size: 1.1rem;
  line-height: 1.7;
}

.about-avatar {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.about-avatar img {
  width: 100%;
  max-width: 350px;
  border-radius: 1rem;
  drop-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--main-color);
}

.unit {
  font-size: 1rem;
  font-weight: 400;
  color: #ccc;
  margin-left: 2px;
}

/* Badge POPULAIRE */
.badge {
  background-color: #59a9ff;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}

.premium-badge {
  background-color: #a67efb !important;
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
}

/* Style spécial pour carte populaire */
.service-card.popular {
  border: 2px solid #59a9ff;
  background: linear-gradient(to bottom right, #1c1f22, #151618);
}

/* Style carte premium PC sur mesure */
.service-card.premium {
  background: linear-gradient(to bottom right, #2d1a40, #1a112b);
  border: 2px solid #a67efb;
}

.service-card a.info {
  display: inline-block;
  background-color: transparent; 
  color: var(--main-color);       
  border: 2px solid var(--main-color);
  font-weight: 600;
  text-align: center;
  padding: 12px 24px;
  border-radius: 8px;
  margin-top: auto;
  transition: all 0.3s ease;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  margin-top: auto;
}

.service-card a.info:hover {
  background-color: var(--main-color);
  color: var(--bg-color);
}

.tarifs-card {
  background-color: var(--main-color2);
  width: 100%;
}

#tarifs {
  max-width: 100% !important;
  margin: 0 !important;
  padding-left: 20px;  /* pour garder un peu de padding intérieur */
  padding-right: 20px;
  background-color: var(--main-color2);
  width: 100%;
}

.tarifs-content {
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-container {
  display: flex;
  gap: 5px; /* espace entre les boutons */
}

.btn-container a {
  white-space: nowrap;  /* ➜ Empêche le retour à la ligne */
  flex: 1;              /* ➜ Chaque bouton prend toute la place dispo */
  text-align: center;   /* ➜ Centre le texte à l’intérieur */
}

.info {
  /* Ton style bouton ici */
  display: inline-block; /* pour s'assurer qu'ils se comportent comme des boutons */
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}

.info2 {
  font-size: 1rem !important;
}

.devis {
  font-size: 0.8rem !important;
}


.faq-section {
  background-color: var(--main-color2);
  padding: 60px 20px;
  color: var(--text-color);
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.faq-block {
  display: flex;
  gap: 20px;
  background-color: #1c1f22;
  border: 1px solid #2b2d30;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.faq-icon {
  flex-shrink: 0;
}

.icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.icon-circle.blue {
  background-color: #2563eb;
}

.icon-circle.green {
  background-color: #10b981;
}

.faq-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.faq-content p {
  margin: 0 0 10px;
}

.faq-content ul,
.faq-content ol {
  padding-left: 20px;
  margin: 0;
}

.faq-content li {
  margin-bottom: 6px;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.contact-map {
  flex: 2;
  min-width: 300px;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  background: var(--main-color2);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

.contact-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.contact-info h3 {
  margin-bottom: 15px;
}

.contact-line {
  margin-bottom: 10px; /* Ajoute de l'espace entre chaque ligne */
}

.section-header-contact {
  padding-top: 40px; /* Ajoute un padding-top pour l'espacement haut */
}

.contact-content {
  padding-bottom: 80px; /* Pareil, ajuste si besoin */
}

.footer {
  background: var(--main-color2);
  color: var(--text-color);
  padding: 30px 20px;
  text-align: center;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-nav {
  margin: 15px 0;
}

.footer-nav a {
  color: var(--text-color);
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--main-color);
}

.footer-extra a:hover {
  color: var(--main-color);
}


.footer-extra a:hover {
  color: var(--main-color1);
}


























@media (max-width: 1280px) {
  header {
    padding: 14px 2%;
    transition: .2s;
  }
  .navbar a {
    padding: 5px 0;
    margin: 0px 20px;
  }

  .btn-container {
    display: flex;
    flex-direction: column;
    gap: 5px;
    transition: all .5s ease;
  }

  .btn-container a {
    flex: none;
    width: 100%;
    transition: all .5s ease;
  }
}

@media (max-width: 930px) {
  #menu-icon {
    display: block;
  }

  .navbar {
    position: absolute;
    margin-top: 15px;
    top: 100%;
    right: -100%;
    width: 230px;
    height: 200px;
    background: var(--main-color2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 10px;
    transition: all .50s ease;
    align-content: right;
    align-items: center;
  }

  .navbar a {
    display: block;
    margin: 12px 0;
    padding: 0px 25px;
    transition: all .50s ease;
  }

  .navbar a:hover {
    color: var(--text-color);
    transform: translateY(5px);
  }

  .navbar.open {
    right: 2%;
  }

  .flex-container {
    flex-direction: column;
    transition: all .50s ease;
  }

  .right {
    display: none;
  }
}

