@charset "UTF-8";
/* VARS */
.sirin-stencil-regular {
  font-family: "Sirin Stencil", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* LIBS */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* PARTIALS */
.header {
  /******************************************************************
  TABLETTE
  ******************************************************************/
  /******************************************************************
  DESKTOP
  ******************************************************************/
}
.header a {
  width: 30%;
}
.header a img {
  width: 100%;
  height: 100%;
}
.header #icons {
  display: block;
  cursor: pointer;
  font-size: 1.5em;
  padding: 0.5em;
  color: #000000;
  position: absolute;
  top: 0;
  right: 0;
}
.header #icons:before {
  content: attr(data-content);
}
.header nav ul {
  display: none;
  width: 100%;
  background-color: #000000;
  text-align: center;
  list-style: none;
  border-radius: 10px;
}
.header nav ul li {
  font-weight: bold;
  padding: 1em;
}
.header nav ul li a {
  color: #ffffff;
  text-decoration: none;
}
.header nav ul li a:hover {
  color: #000000;
}
.header nav ul li:hover {
  background-color: #4FA4FF;
  border-radius: 10px;
}
.header nav.on ul {
  display: block;
}
@media (max-width: 1100px) and (min-width: 768px) {
  .header {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .header nav {
    width: 100%;
  }
  .header nav ul {
    display: flex;
    justify-content: space-around;
  }
  .header nav ul li {
    padding: 0.5em;
    width: 100%;
  }
  .header nav ul li a {
    padding: 0.3em 0.6em;
  }
  .header nav ul li + li {
    border-left: 1px solid #ffffff;
  }
  .header #icons {
    display: none;
  }
  .header a {
    width: auto;
  }
  .header a img {
    height: auto;
    max-height: 50px;
  }
}
@media screen and (min-width: 1100px) {
  .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1em 2em;
  }
  .header h1 {
    width: auto;
    margin: 0;
  }
  .header a {
    padding: 0;
    width: auto;
  }
  .header a img {
    width: auto;
  }
  .header #icons {
    display: none;
  }
  .header #icons:before {
    display: none;
  }
  .header nav {
    width: auto;
  }
  .header nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  .header nav ul li + li {
    border-left: 1px solid #ffffff;
  }
}

.footer {
  background: #333;
  color: #ffffff;
  text-align: center;
  padding: 20px 0;
  /******************************************************************
  TABLETTE
  ******************************************************************/
  /* *****************************************************************
  DESKTOP
  ***************************************************************** */
}
.footer .links {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.footer .links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
}
.footer .links:hover {
  color: #ffffff;
}
.footer .icons {
  margin-bottom: 10px;
}
.footer .icons a {
  color: #ccc;
  font-size: 20px;
  margin: 0 10px;
}
.footer .icons:hover {
  color: #1da1f2; /* Bleu Twitter par défaut */
}
.footer .copyright {
  color: #ccc;
}
@media (min-width: 768px) and (max-width: 1100px) {
  .footer .links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 1100px) {
  .footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer .links,
  .footer .icons {
    flex-direction: row;
    justify-content: center;
  }
  .footer .links {
    margin-bottom: 1em;
  }
  .footer .icons {
    margin-bottom: 1em;
  }
}

/* LAYOUTS */
.about p {
  margin: 0.5em auto;
  line-height: 1.6;
}
.about .bloc-about {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
}
.about .bloc-about ul li::before {
  content: "\f219";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #007bff;
}
.about .btn-home {
  display: block;
  width: max-content;
  margin: 1.5em auto 0;
  background-color: #007bff;
  color: #ffffff;
  padding: 0.75em 1.5em;
  border-radius: 0.5em;
  text-decoration: none;
  font-weight: bold;
}
.about .btn-home:hover {
  background-color: #0056b3;
}

.admin {
  width: 100%;
  display: flex;
  /* Section des services */
  /* Grille de portfolio */
  /* Style général de la modale */
  /* Section des medias */
  /******************************************************************
  TABLETTE
  ******************************************************************/
  /* *****************************************************************
  DESKTOP
  ***************************************************************** */
}
.admin .services {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.admin .services h2 {
  grid-column: 1/-1;
  text-align: center;
}
.admin .services .service-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.admin .services .service-item .service-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.admin .services .service-item .service-description {
  margin-bottom: 1.5rem;
  color: #555;
}
.admin .services .service-item .service-price {
  font-weight: bold;
  color: #007bff;
}
.admin .services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
.admin .portfolio {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.admin .portfolio h2 {
  grid-column: 1/-1;
  text-align: center;
}
.admin .portfolio .page-description {
  grid-column: 1/-1;
  text-align: center;
  margin-bottom: 1rem;
}
.admin .portfolio .portfolio-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.admin .portfolio .portfolio-item .portfolio-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.admin .portfolio .portfolio-item .portfolio-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.admin .portfolio .portfolio-item .portfolio-description {
  color: #555;
  margin-bottom: 1.5rem;
}
.admin .portfolio .portfolio-item .btn {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.admin .portfolio .portfolio-item .btn:hover {
  background-color: #0056b3;
}
.admin .portfolio .portfolio-item:hover {
  transform: translateY(-5px);
}
.admin .cat {
  width: 10%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.admin .cat li {
  padding: 10px;
  cursor: pointer;
  border: 1px solid #000000;
  border-radius: 10px;
  margin-top: 5px;
  text-align: center;
}
.admin .cat li.active {
  background-color: #ff0000;
}
.admin .cat li:hover {
  background-color: #555;
}
.admin .onglet {
  margin-left: 20px;
  border: 1px solid #000000;
  border-radius: 10px;
  flex: 1;
  display: none;
}
.admin .onglet.active {
  display: block;
}
.admin .erreur {
  margin-left: 20px;
  border: 1px solid #000000;
  border-radius: 10px;
  display: flex;
  flex: 1;
  text-align: center;
  color: #ff0000;
  align-items: center; /* centre verticalement */
  justify-content: center;
}
.admin .erreur.inactive {
  display: none;
}
.admin .modal {
  display: none; /* Cachée par défaut */
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}
.admin .modal .modal-content {
  background: #ffffff;
  padding: 20px;
  width: 400px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.admin .modal .close {
  padding: 8px 10px;
  border: none;
  border-radius: 5px;
  float: right;
  font-size: 18px;
  cursor: pointer;
  color: #ff0000;
}
.admin .modal input, .admin .modal textarea {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.admin .modal .btn {
  background-color: #007bff;
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
}
.admin .modal .btn:hover {
  background-color: #0056b3;
}
.admin .medias-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.admin .medias-list .media-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.admin .medias-list .media-item .media-alt {
  font-weight: bold;
  margin-bottom: 10px;
}
.admin .medias-list .media-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1100px) and (min-width: 768px) {
  .admin .services {
    grid-template-columns: repeat(2, 1fr);
  }
  .admin .portfolio {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .admin .services {
    grid-template-columns: repeat(3, 1fr);
  }
  .admin .portfolio {
    grid-template-columns: repeat(3, 1fr);
  }
}

.home {
  /******************************************************************
  TABLETTE
  ******************************************************************/
  /* *****************************************************************
  DESKTOP
  ***************************************************************** */
}
.home .article-intro {
  text-align: center;
  background: #ffffff;
  border-radius: 1em;
  margin-bottom: 3em;
  padding: 2em 1em;
}
.home .article-intro h3 {
  margin-bottom: 1.5em;
}
.home .article-intro p {
  margin: 0.5em auto;
  line-height: 1.6;
}
.home .article-intro p i.fa-bullseye {
  color: #007bff;
  margin-right: 0.4em;
}
.home .btn-home {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 0.75em 1.5em;
  border-radius: 0.5em;
  margin-top: 1.5em;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.home .btn-home:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.home .article-services {
  width: 100%;
  text-align: center;
}
.home .article-services h3 {
  margin-bottom: 1.5em;
  text-align: center;
}
.home .article-services .cards {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  width: 100%;
}
.home .article-services .cards .card {
  background: #ffffff;
  padding: 1.5em;
  border-radius: 0.75em;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}
.home .article-services .cards .card:nth-child(1) {
  animation-delay: 0.2s;
}
.home .article-services .cards .card:nth-child(2) {
  animation-delay: 0.4s;
}
.home .article-services .cards .card:nth-child(3) {
  animation-delay: 0.6s;
}
.home .article-services .cards .card:nth-child(4) {
  animation-delay: 0.8s;
}
.home .article-services .cards .card:nth-child(5) {
  animation-delay: 1s;
}
.home .article-services .cards .card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}
.home .article-services .cards .card .vitrine::before {
  content: "\f390";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #007bff;
}
.home .article-services .cards .card .commerce::before {
  content: "\f07a";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #007bff;
}
.home .article-services .cards .card .wordpress::before {
  content: "\f411";
  font-family: "Font Awesome 5 Brands";
  font-weight: 900;
  color: #007bff;
}
.home .article-services .cards .card .symfony::before {
  content: "\f1b2";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #007bff;
}
.home .article-services .cards .card .maintenance::before {
  content: "\f590";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #007bff;
}
.home .article-services .cards .card h4 {
  margin-bottom: 0.5em;
}
@media (max-width: 1100px) and (min-width: 768px) {
  .home .article-services .cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .home .article-services .cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  /******************************************************************
  TABLETTE
  ******************************************************************/
  /* *****************************************************************
  DESKTOP
  ***************************************************************** */
}
.services h2 {
  grid-column: 1/-1;
}
.services .techno-explainer {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  margin-bottom: 2rem;
  grid-column: 1/-1;
}
.services .techno-explainer h3 {
  margin-bottom: 1rem;
  text-align: center;
}
.services .techno-explainer p {
  margin-bottom: 1rem;
  color: #333;
  line-height: 1.6;
}
.services .techno-explainer strong {
  color: #4FA4FF;
}
.services .techno-explainer .frais {
  text-decoration: underline;
  font-weight: bold;
}
.services .modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  align-items: flex-start;
  padding: 1em;
}
.services .modal .modal-content {
  text-align: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 10px;
  max-width: 600px;
  width: 80%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.services .modal .close {
  padding: 8px 10px;
  border: none;
  border-radius: 5px;
  float: right;
  font-size: 18px;
  cursor: pointer;
  color: #ff0000;
}
.services .modal-section {
  margin-bottom: 20px;
}
.services .modal-section .title_wordpress::before {
  content: "\f12e";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #007bff;
}
.services .modal-section .title_symfony::before {
  content: "\f013";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #007bff;
}
.services .modal-section .title_sur_mesure::before {
  content: "\f7d9";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #007bff;
}
.services .modal-section h4 {
  font-weight: bold;
  margin-bottom: 10px;
}
.services .modal-section h5 {
  font-weight: bold;
  margin-top: 10px;
}
.services .modal-section ul {
  list-style: none;
  padding-left: 0;
  margin: 10px 0;
}
.services .modal-section ul li {
  margin-bottom: 8px;
}
.services .link-en-savoir-plus {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}
.services .link-en-savoir-plus:hover {
  text-decoration: underline;
}
.services .service-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.services .service-item .service-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.services .service-item .service-description {
  margin-bottom: 1.5rem;
  color: #555;
}
.services .service-item .service-price {
  font-weight: bold;
  color: #007bff;
}
.services .service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1100px) and (min-width: 768px) {
  .services {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .services {
    grid-template-columns: repeat(3, 1fr);
  }
}

.politique {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.politique .politique-category {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.politique .politique-category .category-content {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.politique .politique-category .category-title {
  color: #333;
  border-left: 4px solid #4FA4FF;
  padding-left: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.mention {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.mention .mention-category {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.mention .mention-category .category-content {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}
.mention .mention-category .category-title {
  color: #333;
  border-left: 4px solid #4FA4FF;
  padding-left: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
}

.contact {
  /******************************************************************
  TABLETTE
  ******************************************************************/
  /* *****************************************************************
  DESKTOP
  ***************************************************************** */
}
.contact .contact-info {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact .contact-info h3 {
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact .contact-details {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-top: 2rem;
}
.contact .contact-item {
  width: 30%;
  margin-bottom: 1rem;
}
.contact .contact-item h3 {
  font-weight: bold;
}
.contact .contact-item p {
  color: #555;
}
.contact .contact-form {
  margin-top: 3rem;
  padding: 2rem;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact .contact-form h3 {
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}
.contact .contact-form .form-group {
  margin-bottom: 1.5rem;
}
.contact .contact-form label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.contact .contact-form .form-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-top: 0.5rem;
}
.contact .contact-form button.btn-primary {
  display: block;
  margin: 0 auto;
  background-color: #007bff;
  color: #ffffff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.contact .contact-form button.btn-primary:hover {
  background-color: #0056b3;
}
@media (max-width: 1100px) and (min-width: 768px) {
  .contact .contact-details {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .contact .contact-details {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio {
  /******************************************************************
  TABLETTE
  ******************************************************************/
  /* *****************************************************************
  DESKTOP
  ***************************************************************** */
}
.portfolio .examples, .portfolio .realisations {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.portfolio .examples h2, .portfolio .realisations h2 {
  grid-column: 1/-1;
  text-align: center;
}
.portfolio .examples .page-description, .portfolio .realisations .page-description {
  grid-column: 1/-1;
  text-align: center;
  margin-bottom: 1rem;
}
.portfolio .examples .portfolio-item, .portfolio .realisations .portfolio-item {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.portfolio .examples .portfolio-item .portfolio-image, .portfolio .realisations .portfolio-item .portfolio-image {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.portfolio .examples .portfolio-item .portfolio-title, .portfolio .realisations .portfolio-item .portfolio-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.portfolio .examples .portfolio-item .portfolio-description, .portfolio .realisations .portfolio-item .portfolio-description {
  color: #555;
  margin-bottom: 1.5rem;
}
.portfolio .examples .portfolio-item .btn, .portfolio .realisations .portfolio-item .btn {
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.portfolio .examples .portfolio-item .btn:hover, .portfolio .realisations .portfolio-item .btn:hover {
  background-color: #0056b3;
}
.portfolio .examples .portfolio-item:hover, .portfolio .realisations .portfolio-item:hover {
  transform: translateY(-5px);
}
@media screen and (min-width: 1100px) {
  .portfolio .examples, .portfolio .realisations {
    grid-template-columns: repeat(3, 1fr);
  }
}

.website-detail {
  /******************************************************************
  TABLETTE
  ******************************************************************/
  /* *****************************************************************
  DESKTOP
  ***************************************************************** */
}
.website-detail .subtitle {
  text-align: center;
  margin-bottom: 1rem;
}
.website-detail .website-intro {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}
.website-detail .website-intro .website-image {
  max-width: 50vw;
  max-height: 40vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.website-detail .website-intro .website-description {
  text-align: center;
  margin-bottom: 1rem;
}
.website-detail .website-details {
  text-align: center;
}
.website-detail .website-details h3 {
  margin-bottom: 2rem;
}
.website-detail .website-gallery h3 {
  text-align: center;
  margin-bottom: 2rem;
}
.website-detail .website-gallery .pictures {
  display: none;
}
.website-detail .website-gallery .gallerie-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.website-detail .website-gallery .gallerie-wrapper .hidden {
  visibility: hidden;
}
.website-detail .website-gallery .gallerie-wrapper img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  cursor: pointer;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s;
}
.website-detail .website-gallery .gallerie-wrapper img:hover {
  transform: scale(1.03);
}
.website-detail .website-gallery .gallerie-wrapper button {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.website-detail .website-gallery .gallerie-wrapper button .hidden {
  visibility: hidden;
}
.website-detail .website-link {
  text-align: center;
}
.website-detail .website-link .btn {
  margin-top: 2rem;
  display: inline-block;
  background-color: #007bff;
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.website-detail .website-link .btn:hover {
  background-color: #0056b3;
}
@media screen and (min-width: 1100px) {
  .website-detail .examples, .website-detail .realisations {
    grid-template-columns: repeat(3, 1fr);
  }
}

.faq {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.faq .faq-category {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.faq .faq-category .category-title {
  color: #333;
  border-left: 4px solid #4FA4FF;
  padding-left: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
}
.faq .faq-category dl {
  margin-left: 15px;
}
.faq .faq-category dl dt {
  font-weight: bold;
  cursor: pointer;
  position: relative;
  padding-left: 1.5rem;
  outline: none;
}
.faq .faq-category dl dt::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #4FA4FF;
  font-weight: bold;
  transition: transform 0.3s ease;
}
.faq .faq-category dl dt[aria-expanded=true]::before {
  content: "-";
}
.faq .faq-category dl dt:focus-visible {
  outline: 2px solid #4FA4FF;
  outline-offset: 2px;
}
.faq .faq-category dl dd {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
  line-height: 1.5;
  color: #4FA4FF;
}
.faq .faq-category dl dd[hidden] {
  display: none;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

#container {
  flex: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Athiti", sans-serif;
  font-size: 1.6em;
  line-height: 1.5;
  background-color: #f2f2f2;
  color: #000000;
}
body.dark_mode {
  background-color: #000000;
  color: #ffffff;
}
body h2 {
  font-family: "Sirin Stencil";
  font-size: 2.2rem;
  text-transform: uppercase;
  color: #4FA4FF;
  text-align: center;
  margin-bottom: 2rem;
}
body h3 {
  font-family: "Sirin Stencil";
  font-size: 1.8rem;
}
body h4 {
  font-size: 1.6rem;
  font-style: italic;
  background-color: #e6f2ff;
  padding: 0.3em 0.6em;
  border-radius: 0.5em;
  display: inline-block;
  color: #007bff;
}
body h5 {
  font-size: 1.2rem;
}
body a {
  font-weight: bold;
}

/* *****************************************************************
DESKTOP
***************************************************************** */
@media screen and (min-width: 1100px) {
  body {
    font-size: 1.8em;
  }
  body h2 {
    font-size: 2.8rem;
  }
  body h3 {
    font-size: 2.2rem;
  }
  body h4 {
    font-size: 1.8rem;
  }
  body h5 {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=style.css.map */
