/* VARIABLES COULEURS */
:root {
  --primary: #4a90e2;
  --accent: #ff6b6b;
  --text-dark: #333333;
  --text-light: #555555;
  --bg-light: #f5f7fa;
  --white: #ffffff;
}

/* GLOBAL */
body {
  font-family: "Roboto", sans-serif;
  color: var(--text-dark);
  margin: 0;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

section {
  padding-top: 0;
}

/* NAVBAR */
#myNavbar {
  background-color: var(--bg-light);
  padding: 12px 0;
}

.navbar-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

#myNavbar .navbar-collapse {
  background-color: var(--bg-light);
}

/* Logo */
.navbar-logo {
  height: 100px;
  width: auto;
  transition: transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.03);
  opacity: 0.95;
}

/* Liens */
.navbar-nav .nav-link {
  margin: 0 12px;
  font-weight: 400;
  color: var(--text-dark);
  position: relative;
  transition:
    color 0.3s ease,
    transform 0.2s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
}

/* animation */
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  border-radius: 2px;
  transition:
    width 0.3s ease,
    left 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
  left: 0;
}
.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

#hero {
  background-color: var(--bg-light);
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--text-dark);
}

.hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  max-width: 520px;
  color: var(--primary);
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 480px;
  color: var(--text-dark);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* BOUTONS */
.btn-devis,
.btn.devis {
  display: inline-block;
  background-color: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 50px;
  width: fit-content;
  transition: all 0.3s ease;
}

.btn-devis:hover,
.btn.devis:hover {
  background-color: var(--white);
  color: var(--accent);
  box-shadow: 0 8px 20px rgba(255, 107, 107, 0.25);
}
/*TITRES & TEXTES */
h1,
h2 {
  color: var(--primary);
}

p {
  font-size: 16px;
  color: var(--text-dark);
}

.divider {
  width: 120px;
  height: 3px;
  background-color: var(--primary);
  margin: 30px auto;
}

/* ABOUT PAGE */
.about-content {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

.about-intro {
  max-width: 820px;
  margin: 0 auto 70px;
}

.about-intro h2 {
  text-align: center;
  margin-bottom: 28px;
  font-weight: 600;
  color: var(--text-dark);
}

.about-intro p {
  margin: 0 auto 14px;
  line-height: 1.7;
  max-width: 720px;
}

/* Work section */
.about-work {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;

  max-width: 1000px;
  margin: 0 auto 80px;

  padding: 0 20px;
  box-sizing: border-box;
}

.about-work-text {
  padding: 0;
  margin: 0;
}
.about-work h3 {
  margin-bottom: 8px;
}

.about-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

.about-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}

/* CTA */
.about-cta > p:first-of-type {
  text-align: center;
}

.about-cta-button {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

/*COMPÉTENCES */
#competences {
  background-color: var(--bg-light);
}

.tech-logo {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s;
}

.tech-logo.visible {
  opacity: 1;
  transform: translateY(0);
}
/* PORTFOLIO */
#portfolio {
  background-color: var(--bg-light);
  padding: 80px 0;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease;
}

.portfolio-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.portfolio-item:hover {
  transform: translateY(-6px);
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 30, 30, 0.65);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: var(--white);
  text-align: center;
  padding: 20px;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

/* SERVICES */
.section-title-bg {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-light);
  margin-bottom: 0;
}

.section-title-bg h1 {
  margin: 0;
  padding-left: 11%;
  text-align: left;
}

#services-page .breadcrumb-custom {
  margin-top: 0;
  margin-bottom: 12px;
}

.services-page {
  padding-bottom: 50px;
}

.services-page h1 {
  text-align: center;
  font-weight: 700;
}
.services-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
  max-width: 770px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-intro strong {
  font-weight: 600;
}

.service-card .text-muted {
  font-size: 0.95rem;
  margin-top: 10px;
}

/* PAGE SERVICE */
.service-card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;

  display: flex;
  flex-direction: column;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  margin-bottom: 16px;
}
.service-icon {
  font-size: 2.6rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* Titre */
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

/* Texte */
.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 20px;
}

/* Bouton */
.service-card .btn-card {
  margin-top: auto;
  align-self: flex-start;
}

/* showcase */
#service-vitrine .service-header {
  display: block;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

#service-vitrine .service-header p {
  display: block;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.15rem;
}
#service-vitrine {
  padding-top: 60px;
  padding-bottom: 80px;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.8;
}
h3 {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

/* Titres */
#service-vitrine h1 {
  font-weight: 700;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 20px;
}

#service-vitrine h5 {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* Cartes features : même hauteur */
.service-features .col-md-6 {
  display: flex;
}

/* Features (icônes + texte) */
.service-features .feature {
  height: 100%;
  width: 100%;
  background-color: var(--bg-light);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-features .feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.feature h3 {
  margin-bottom: 0.75rem;
}

.feature p {
  margin-top: 0;
}

.service-features .feature i {
  color: var(--accent);
  margin-right: 15px;
  flex-shrink: 0;
}

/* LISTES */
.service-page ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.service-page ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
}

.service-page ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: bold;
}

/* Listes numérotées */
.service-page ol {
  padding-left: 20px;
  margin-top: 15px;
}

.service-page ol li {
  margin-bottom: 12px;
}

#service-vitrine ol li {
  margin-bottom: 12px;
}
/* Bouton secondaire – cards services */
.btn-card {
  background: none;
  border: none;
  color: var(--primary);
  font-weight: 500;
  padding: 0;
}

.btn-card::after {
  content: " →";
  transition: transform 0.2s ease;
}

.btn-card:hover::after {
  transform: translateX(4px);
}

/* BLOG */
.btn-category.active {
  background-color: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
/* Blog articles hover effet comme page services */
.article-card .card {
  background-color: var(--white);
  border-radius: 12px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.article-card .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.15);
}

.article-card h2 a {
  color: var(--text-dark);
  transition: color 0.3s ease;
}

.article-card h2 a:hover {
  color: var(--primary);
}

.article-card p {
  color: var(--text-dark);
  line-height: 1.6;
}

.article-card .btn-card {
  margin-top: auto;
  color: var(--primary);
  font-weight: 500;
}

.article-card .btn-card::after {
  content: " →";
  transition: transform 0.2s ease;
}

.article-card .btn-card:hover::after {
  transform: translateX(4px);
}
.flower-dot {
  position: relative;
  display: inline-block;
}

/* On masque le point naturel du i */
.flower-dot::after {
  content: "";
  position: absolute;
  top: 3px; /* ajuste la hauteur */
  left: 910%;
  transform: translateX(-50%);

  width: 13px;
  height: 13px;

  background-image: url("images/bloomblue.png");
  background-size: contain;
  background-repeat: no-repeat;
}
/* Page creer un site internet */
.flower-list {
  list-style: none;
  padding-left: 0;
}

.flower-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.flower-bullet {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  display: inline-block;
  background-image: url("images/bloomblue.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* CONTACT PAGE */
.contact-container {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}

.contact-top {
  max-width: 700px;
  margin: 0 auto 4rem auto;
  text-align: center;
}

.contact-top h2 {
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}

.contact-top p {
  font-size: 20px;
  color: var(--text-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form {
  width: 100%;
}
.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info i {
  margin-right: 10px;
  color: var(--accent);
}

.contact-info a {
  text-decoration: none;
  color: inherit;
}

.contact-form {
  animation: fadeUp 0.6s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#contact-page .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.15rem rgba(255, 107, 107, 0.25);
}
/*Wave*/
.wave-wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  line-height: 0;
}

.wave-wrapper svg {
  display: block;
  width: 200%;
  height: 160px;
}
#projects-page {
  padding-left: 0;
  padding-right: 0;
}

.wave {
  fill: var(--bg-light);
}

.wave1 {
  fill: #ecf1f9;
  animation: waveMove1 14s linear infinite;
  opacity: 1;
}

.wave2 {
  fill: var(--bg-light);
  animation: waveMove2 20s linear infinite;
  opacity: 0.9;
}

@keyframes waveMove1 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes waveMove2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-30%);
  }
}
#recommandations {
  background-color: var(--bg-light);
}

#recommandations .card {
  border-radius: 16px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

#recommandations .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}
/* FAQ */
#faq {
  background-color: var(--white);
  padding: 110px 0;
}

#faq .accordion {
  max-width: 760px;
  margin: 0 auto;
}

/* Item */
#faq .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  padding: 0;
}

/* Bouton question */
#faq .accordion-button {
  background: transparent;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 1.05rem;
  padding: 1.6rem 0;
  border: none;
  box-shadow: none;
  transition: all 0.3s ease;
}

/* Supprime fond Bootstrap */
#faq .accordion-button:focus {
  box-shadow: none;
}

/* Hover très subtil */
#faq .accordion-button:hover {
  color: var(--primary);
}

/* Question active */
#faq .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--primary);
}

/* Icône plus fine et élégante */
#faq .accordion-button::after {
  transform: scale(0.8);
  opacity: 0.6;
  transition: all 0.3s ease;
}

#faq .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg) scale(0.8);
  opacity: 1;
}

/* Réponse */
#faq .accordion-body {
  padding: 0 0 1.6rem 0;
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.98rem;
  max-width: 95%;
}

/* FOOTER */
.footer {
  background-color: var(--bg-light);
  color: var(--text-dark);
}
.footer-inner {
  width: 100%;
  max-width: 260px;
}

.footer-title {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
}

.footer-link {
  color: var(--text-dark);
  text-decoration: none;
}

.footer-link:hover {
  color: var(--accent);
}

.footer-text {
  line-height: 1.6;
}

.footer ul li {
  margin-bottom: 8px;
}
.footer-bottom {
  margin-top: -5px;
}
/* Réseaux sociaux footer */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: var(--white);
  color: var(--primary);
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.social-icon:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-4px);
}

/* PAGE PROJET – STEAMER */
.page-hero {
  background: var(--bg-light);
  padding: 60px 0 30px;
}

.page-hero h1 {
  font-weight: 700;
  margin: 0;
}

.page-intro {
  padding: 25px 0 20px;
}

.page-intro .breadcrumb-custom {
  margin-bottom: 12px;
}

.project-hero h1 {
  font-weight: 700;
  margin: 0;
}

/* BREADCRUMB */
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: var(--text-light);
}

.breadcrumb-custom a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-custom a:hover {
  color: var(--primary);
}

.breadcrumb-custom .current {
  color: var(--accent);
}

.project-meta {
  display: flex;
  gap: 19px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 25px;
}

.project-meta span {
  background: var(--bg-light);
  padding: 6px 14px;
  border-radius: 20px;
}

.project-content {
  padding: 60px 0;
}

.project-content h2 {
  margin-top: 10px;
  margin-bottom: 14px;
  font-weight: 600;
}

.project-content ul {
  padding-left: 18px;
}

.project-content li {
  margin-bottom: 8px;
}

.project-inline {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 50px 0;
}

.project-inline.reverse {
  flex-direction: row-reverse;
}

.inline-text {
  flex: 1.4;
}

.inline-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.inline-image img {
  width: 160px;
  border-radius: 24px;
  background: var(--white);
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  max-width: 100%;
}

/* TECH */
.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.tech-list li {
  background: var(--bg-light);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
}

/* NOTE */
.project-note {
  margin-top: 30px;
  font-size: 0.9rem;
  color: var(--text-light);
}

/* OVERLAY */
.cookie-overlay {
  position: fixed;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 24px;
  z-index: 9999;
}

/* POPUP */
.cookie-box {
  background: var(--white);
  max-width: 460px;
  width: 100%;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  position: relative;
}
.cookie-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.cookie-close:hover {
  color: var(--accent);
}

/* VUES */
.cookie-view {
  display: none;
}

.cookie-view.active {
  display: block;
}

.cookie-box h3 {
  font-weight: 600;
  margin-bottom: 14px;
}

.cookie-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* OPTIONS */
.cookie-option {
  margin-bottom: 18px;
}

.cookie-option label {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cookie-option p {
  font-size: 0.85rem;
  margin-left: 26px;
  margin-top: 4px;
}

/* ACTIONS */
.cookie-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 26px;
}

/* BOUTONS */
.btn-cookie {
  border-radius: 30px;
  padding: 8px 18px;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
}
/* Boutons PARAMÈTRES (Retour / Enregistrer) */
.cookie-actions.two-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 26px;
}

/* Assure la pleine largeur des boutons */
.cookie-actions.two-buttons .btn-cookie {
  width: 100%;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-light {
  background: #eaeaea;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
/* Liens légaux sous la popup cookies */
.cookie-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

/* Style des liens */
.cookie-links a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: underline;
  padding: 6px 4px;
  transition: color 0.2s ease;
}

.cookie-links a:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 992px) {
  #myNavbar {
    padding: 10px 30px;
  }

  .navbar-logo {
    height: 80px;
  }

  .navbar-nav {
    padding: 15px 0;
    gap: 10px;
  }

  .navbar-nav .nav-link {
    margin: 6px 0;
  }
  /*realisations*/
  #projets-page .subtitle {
    font-size: 1rem;
  }
  .about-work {
    grid-template-columns: 1fr;
  }
  .project-content {
    padding: 50px 0;
  }

  .project-inline {
    gap: 30px;
    margin: 40px 0;
  }

  .inline-image img {
    width: 200px;
  }
}
@media (max-width: 991.98px) {
  .navbar-collapse {
    background-color: var(--bg-light);
    padding: 20px 0;
  }

  .navbar-nav .nav-link {
    margin: 8px 0;
    font-size: 1.05rem;
  }

  .navbar-nav .nav-link::after {
    display: none;
  }
}

@media (max-width: 768px) {
  /*realisations*/
  #projets-page .subtitle {
    font-size: 0.95rem;
    padding-bottom: 30px;
  }

  #projets-page .service-card {
    padding: 24px;
  }

  #projets-page .service-card h3 {
    font-size: 1.05rem;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .about {
    font-size: 1.05rem;
  }
  .project-inline,
  .project-inline.reverse {
    flex-direction: column;
    text-align: center;
  }

  .inline-image img {
    width: 220px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .navbar-logo {
    height: 60px;
  }
  /*réalisations*/
  #projets-page .subtitle {
    padding-bottom: 25px;
  }
  .service-card {
    text-align: center;
  }

  .service-header {
    justify-content: center;
  }

  .service-card .btn-card {
    align-self: center;
  }

  #projets-page .service-card {
    text-align: center;
  }

  #projets-page .btn-devis {
    text-align: center;
  }
  .project-hero {
    padding: 40px 0 20px;
  }

  .project-hero h1 {
    font-size: 1.6rem;
  }

  .breadcrumb-custom {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }

  .project-meta {
    gap: 10px;
    font-size: 0.75rem;
  }

  .project-meta span {
    padding: 5px 12px;
  }

  .project-inline {
    text-align: center;
    margin: 35px 0;
  }

  .project-content h2 {
    font-size: 1.25rem;
  }

  .inline-image {
    margin-top: 20px;
  }

  .inline-image img {
    width: 220px;
  }

  .tech-list {
    justify-content: center;
  }
  .btn.devis,
  .btn-card,
  .about-cta-button a {
    display: block;
    margin: 0 auto;
    text-align: center;
  }

  .text-start.mt-4 {
    text-align: center !important;
  }

  .text-center.mt-5 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar-nav .nav-link {
    font-size: 1rem;
  }
  .cookie-actions {
    grid-template-columns: 1fr;
  }
}
