:root {
  --black: #050505;
  --black-soft: #0b0b0b;
  --gold: #c9973f;
  --gold-light: #e3bb6c;
  --white: #ffffff;
  --gray: #b8b8b8;
  --line: rgba(255, 255, 255, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-symbol {
  width: 40px;
  height: 40px;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name strong {
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}

.brand-name small {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px 0;
  background: white;
}

/* HERO */

.hero {
  width: 100%;
  background: #000;
  overflow: hidden;
}

.hero-desktop {
  display: block;
  width: min(100%, 1600px);
  height: auto;
  margin: 0 auto;
}

.hero-mobile {
  display: none;
}

/* SECTIONS */

.section {
  padding: 88px 0;
  background: var(--black-soft);
}

.section-dark {
  background: var(--black);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p,
.eyebrow {
  margin-bottom: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
}

.section-heading h2,
.about-grid h2,
.contact-content h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 500;
}

/* CARTES */

.card-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.card,
.project-card {
  min-width: 0;
  padding: 30px;
  background: #0f0f0f;
  border: 1px solid var(--line);
}

.card-number {
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.card h3,
.project-card h3 {
  margin-bottom: 14px;
  font-size: 1.25rem;
  font-weight: 500;
}

.card h3::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin-top: 14px;
  background: var(--gold);
}

.card p,
.project-card p,
.about-text p {
  color: var(--gray);
}

.project-card span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
}

/* À PROPOS */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-text p + p {
  margin-top: 18px;
}

/* CONTACT */

.contact-section {
  background:
    radial-gradient(
      circle at right,
      rgba(201, 151, 63, 0.09),
      transparent 35%
    ),
    #080808;
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-button {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

/* FOOTER */

.site-footer {
  padding: 26px 0;
  background: #050505;
  border-top: 1px solid var(--line);
  color: #8f8f8f;
  font-size: 0.82rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

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

/* TABLETTE ET MOBILE */

@media (max-width: 850px) {

  .header-inner {
    min-height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 18px 18px;
    background: #080808;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  /* On cache la grande image sur iPhone */
  .hero-desktop {
    display: none;
  }

  /* Accueil spécial mobile */
  .hero-mobile {
    min-height: calc(100svh - 64px);
    padding: 60px 24px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
      radial-gradient(
        circle at center,
        rgba(201, 151, 63, 0.10),
        transparent 42%
      ),
      #000;
  }

  .mobile-logo {
    width: 88px;
    height: 88px;
    margin-bottom: 28px;
    border: 3px solid var(--gold);
    color: var(--gold);
    display: grid;
    place-items: center;
    font-size: 2.4rem;
    font-weight: 700;
    transform: rotate(-6deg);
  }

  .hero-mobile h1 {
    margin: 0;
    font-size: clamp(3rem, 16vw, 5rem);
    line-height: 0.95;
    letter-spacing: 0.12em;
    font-weight: 700;
  }

  .mobile-solution {
    margin-top: 12px;
    color: var(--gold);
    font-size: clamp(1.25rem, 7vw, 2rem);
    letter-spacing: 0.42em;
    padding-left: 0.42em;
  }

  .mobile-line {
    width: 60px;
    height: 2px;
    margin: 30px 0 22px;
    background: var(--gold);
  }

  .mobile-tagline {
    color: #d7d7d7;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .hero-button {
    display: inline-block;
    margin-top: 34px;
    padding: 14px 22px;
    border: 1px solid var(--gold);
    color: var(--gold-light);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
  }

  .card-grid,
  .project-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    gap: 28px;
  }

  .contact-content {
    flex-direction: column;
    align-items: flex-start;
  }

}

/* PETITS IPHONE */

@media (max-width: 560px) {

  .container,
  .header-inner {
    width: calc(100% - 24px);
  }

  .brand-symbol {
    width: 36px;
    height: 36px;
  }

  .brand-name strong {
    font-size: 0.82rem;
  }

  .brand-name small {
    font-size: 0.56rem;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .about-grid h2,
  .contact-content h2 {
    font-size: 2rem;
  }

  .card,
  .project-card {
    padding: 26px 22px;
  }

  .hero-mobile {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-logo {
    width: 76px;
    height: 76px;
    font-size: 2rem;
  }

  .hero-mobile h1 {
    font-size: 3.2rem;
  }

  .mobile-solution {
    font-size: 1.2rem;
  }

  .footer-content {
    flex-direction: column;
  }

}

/* TRÈS PETITS ÉCRANS */

@media (max-width: 390px) {

  .hero-mobile h1 {
    font-size: 2.8rem;
    letter-spacing: 0.1em;
  }

  .mobile-solution {
    font-size: 1rem;
    letter-spacing: 0.32em;
    padding-left: 0.32em;
  }

  .mobile-tagline {
    font-size: 0.65rem;
    letter-spacing: 0.13em;
  }

}

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

}
/* =========================================
   CORRECTION FINALE IPHONE
========================================= */

@media screen and (max-width: 850px) {

  .hero {
    min-height: calc(100svh - 64px) !important;
    height: calc(100svh - 64px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    background: #000 !important;
  }

  .hero-background,
  .hero-desktop {
    display: none !important;
  }

  .hero-mobile {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 30px 20px !important;
    text-align: center !important;

    background:
      radial-gradient(
        circle at center,
        rgba(201, 151, 63, 0.13),
        transparent 45%
      ),
      #000 !important;
  }

  .mobile-logo {
    width: 74px !important;
    height: 74px !important;
    margin: 0 0 26px !important;

    display: grid !important;
    place-items: center !important;

    border: 2px solid #c9973f !important;
    color: #c9973f !important;

    font-size: 2rem !important;
    font-weight: 700 !important;
  }

  .hero-mobile h1 {
    margin: 0 !important;
    color: #fff !important;

    font-size: 3.2rem !important;
    line-height: 1 !important;
    letter-spacing: 0.12em !important;

    padding-left: 0.12em !important;
  }

  .mobile-solution {
    margin-top: 10px !important;

    color: #c9973f !important;

    font-size: 1.15rem !important;
    letter-spacing: 0.35em !important;
    padding-left: 0.35em !important;
  }

  .mobile-line {
    width: 52px !important;
    height: 2px !important;

    margin: 28px 0 20px !important;

    background: #c9973f !important;
  }

  .mobile-tagline {
    margin: 0 !important;

    color: #d6d6d6 !important;

    font-size: 0.68rem !important;
    line-height: 1.7 !important;
    letter-spacing: 0.14em !important;
  }

  .hero-button {
    margin-top: 30px !important;

    display: inline-block !important;

    padding: 13px 18px !important;

    border: 1px solid #c9973f !important;
    color: #e3bb6c !important;

    font-size: 0.7rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
  }

  #expertises {
    scroll-margin-top: 64px;
  }

  .card-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .card {
    width: 100% !important;
    min-height: auto !important;
  }
}

/* LOGO RÉGIS — MONOGRAMME PREMIUM */

.mobile-logo {
  position: relative !important;

  width: 92px !important;
  height: 92px !important;

  margin: 0 0 28px !important;

  border: none !important;
  background: transparent !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  transform: none !important;
}

.mobile-logo::before,
.mobile-logo::after {
  content: "";
  position: absolute;

  width: 62px;
  height: 62px;

  border: 3px solid #c9973f;

  transform: rotate(45deg);
}

.mobile-logo::before {
  opacity: 0.95;
}

.mobile-logo::after {
  width: 46px;
  height: 46px;

  border-color: rgba(201, 151, 63, 0.55);
}

.logo-r {
  position: relative;
  z-index: 2;

  color: #e2b45e;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.3rem;
  font-weight: 700;
  font-style: italic;

  line-height: 1;

  transform: translateX(-2px);
}

.logo-slash {
  position: absolute;
  z-index: 3;

  width: 44px;
  height: 3px;

  background: #c9973f;

  transform: rotate(-35deg) translate(16px, 18px);
  transform-origin: center;
}

@media (max-width: 390px) {
  .mobile-logo {
    width: 82px !important;
    height: 82px !important;
  }

  .mobile-logo::before {
    width: 56px;
    height: 56px;
  }

  .mobile-logo::after {
    width: 42px;
    height: 42px;
  }

  .logo-r {
    font-size: 3rem;
  }

  .logo-slash {
    width: 40px;
  }
}
/* =====================================================
   IDENTITÉ RÉGIS SOLUTION
   Monogramme géométrique doré
===================================================== */

:root {
  --regis-gold: #c9973f;
  --regis-gold-light: #e2b45e;
}

/* Base du monogramme */

.rs-mark {
  position: relative;
  flex: 0 0 auto;
}

.rs-mark span {
  position: absolute;
  display: block;
  box-sizing: border-box;
}

/*
  Trois traits horizontaux créent la partie gauche
  du monogramme, inspirée du R géométrique.
*/

.rs-line {
  left: 4%;
  height: 10%;
  background: linear-gradient(
    90deg,
    var(--regis-gold),
    var(--regis-gold-light)
  );
  transform: skewX(42deg);
  transform-origin: left center;
}

.rs-line-1 {
  top: 15%;
  width: 55%;
}

.rs-line-2 {
  top: 38%;
  width: 47%;
}

.rs-line-3 {
  top: 61%;
  width: 39%;
}

/* Partie arrondie du R */

.rs-curve {
  top: 13%;
  right: 8%;

  width: 58%;
  height: 52%;

  border-top: 9px solid var(--regis-gold);
  border-right: 9px solid var(--regis-gold);
  border-bottom: 9px solid var(--regis-gold);

  border-radius: 0 50% 50% 0;
}

/* Jambe diagonale */

.rs-leg {
  left: 47%;
  top: 53%;

  width: 11%;
  height: 48%;

  background: linear-gradient(
    180deg,
    var(--regis-gold-light),
    var(--regis-gold)
  );

  transform: rotate(-42deg);
  transform-origin: top center;
}


/* =====================================================
   PETIT LOGO — HEADER
===================================================== */

.rs-mark-small {
  width: 52px;
  height: 52px;
}

.rs-mark-small .rs-curve {
  border-width: 5px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-name {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
}

.brand-name strong {
  color: #fff;

  font-size: 1rem;
  font-weight: 600;

  letter-spacing: 0.18em;
}

.brand-name small {
  margin: 0;

  color: var(--regis-gold);

  font-size: 0.78rem;
  font-weight: 400;

  letter-spacing: 0.22em;
}


/* =====================================================
   GRAND LOGO — CENTRE DE L'ACCUEIL
===================================================== */

.rs-mark-large {
  width: 125px;
  height: 125px;
  margin-bottom: 30px;
}

.rs-mark-large .rs-curve {
  border-width: 11px;
}

.hero-mobile h1 {
  margin: 0 !important;

  color: #fff !important;

  font-size: clamp(3.3rem, 14vw, 5.2rem) !important;
  font-weight: 600 !important;

  line-height: 0.95 !important;

  letter-spacing: 0.16em !important;
  padding-left: 0.16em !important;
}

.mobile-solution {
  margin-top: 13px !important;

  color: var(--regis-gold) !important;

  font-size: clamp(1.1rem, 5.5vw, 1.65rem) !important;

  font-weight: 400 !important;

  letter-spacing: 0.42em !important;
  padding-left: 0.42em !important;
}

.mobile-line {
  width: 55px !important;
  height: 2px !important;

  margin: 25px 0 20px !important;

  background: var(--regis-gold) !important;
}


/* =====================================================
   IPHONE
===================================================== */

@media screen and (max-width: 850px) {

  .rs-mark-small {
    width: 44px;
    height: 44px;
  }

  .rs-mark-small .rs-curve {
    border-width: 4px;
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    gap: 7px;
  }

  .brand-name strong {
    font-size: 0.88rem;
    letter-spacing: 0.15em;
  }

  .brand-name small {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .rs-mark-large {
    width: 105px;
    height: 105px;

    margin-bottom: 27px;
  }

  .rs-mark-large .rs-curve {
    border-width: 9px;
  }

}


/* =====================================================
   PETITS IPHONE
===================================================== */

@media screen and (max-width: 390px) {

  .rs-mark-small {
    width: 39px;
    height: 39px;
  }

  .brand-name strong {
    font-size: 0.8rem;
  }

  .brand-name small {
    font-size: 0.59rem;
  }

  .rs-mark-large {
    width: 92px;
    height: 92px;
  }

  .rs-mark-large .rs-curve {
    border-width: 8px;
  }

  .hero-mobile h1 {
    font-size: 3rem !important;
  }

  .mobile-solution {
    font-size: 1rem !important;
  }

}
/* =====================================================
   GALERIE ÉBÉNISTERIE
===================================================== */

.gallery-section {
  background: #080808;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.gallery-button {
  display: inline-block;
  margin-top: 24px;
  padding: 11px 18px;

  border: 1px solid #c9973f;
  color: #e2b45e;

  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  transition: 0.25s ease;
}

.gallery-button:hover {
  background: #c9973f;
  color: #050505;
}


/* GRILLE DES PHOTOS */

.photo-gallery {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-gallery img {
  width: 100%;
  height: 300px;

  display: block;

  object-fit: cover;

  border: 1px solid rgba(201, 151, 63, 0.20);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.photo-gallery img:hover {
  transform: scale(1.015);
  border-color: #c9973f;
}


/* TABLETTE */

@media screen and (max-width: 850px) {

  .photo-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .photo-gallery img {
    height: 230px;
  }

}


/* IPHONE */

@media screen and (max-width: 560px) {

  .gallery-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }

  .photo-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .photo-gallery img {
    width: 100%;
    height: auto;
    max-height: none;

    object-fit: contain;

    background: #050505;
  }

  .gallery-button {
    width: 100%;

    text-align: center;

    margin-top: 24px;
    padding: 14px 16px;
  }

}
/* =====================================================
   NOUVEAU LOGO RÉGIS SOLUTION — STYLE 2
===================================================== */

.rs2-logo {
  position: relative;
  flex: 0 0 auto;
}

/* Barre verticale du R */
.rs2-logo::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 10%;
  width: 13%;
  height: 68%;

  background: linear-gradient(
    180deg,
    #e6b85a,
    #c88f2f
  );
}

/* Partie supérieure arrondie du R */
.rs2-top {
  position: absolute;
  left: 10%;
  top: 8%;

  width: 72%;
  height: 48%;

  border-top: 10px solid #d9a13d;
  border-right: 10px solid #d9a13d;
  border-bottom: 10px solid #d9a13d;

  border-radius: 0 55% 55% 0;
}

/* Trait intérieur */
.rs2-middle {
  position: absolute;
  left: 20%;
  top: 40%;

  width: 45%;
  height: 10%;

  background: linear-gradient(
    90deg,
    #e6b85a,
    #c88f2f
  );
}

/* Jambe diagonale du R */
.rs2-leg {
  position: absolute;
  left: 52%;
  top: 52%;

  width: 13%;
  height: 50%;

  background: linear-gradient(
    180deg,
    #e6b85a,
    #c88f2f
  );

  transform: rotate(-43deg);
  transform-origin: top center;
}


/* =====================================================
   PETIT LOGO — EN HAUT À GAUCHE
===================================================== */

.rs2-small {
  width: 52px;
  height: 52px;
}

.rs2-small .rs2-top {
  border-width: 5px;
}


/* =====================================================
   GRAND LOGO — CENTRE DE LA PAGE D’ACCUEIL
===================================================== */

.rs2-large {
  width: 125px;
  height: 125px;
  margin-bottom: 30px;
}

.rs2-large .rs2-top {
  border-width: 10px;
}


/* =====================================================
   AJUSTEMENT IPHONE
===================================================== */

@media screen and (max-width: 850px) {

  .rs2-small {
    width: 44px;
    height: 44px;
  }

  .rs2-small .rs2-top {
    border-width: 4px;
  }

  .rs2-large {
    width: 112px;
    height: 112px;
    margin-bottom: 30px;
  }

  .rs2-large .rs2-top {
    border-width: 9px;
  }

}


/* =====================================================
   PETITS IPHONE
===================================================== */

@media screen and (max-width: 390px) {

  .rs2-small {
    width: 40px;
    height: 40px;
  }

  .rs2-large {
    width: 100px;
    height: 100px;
  }

  .rs2-large .rs2-top {
    border-width: 8px;
  }

}
/* =====================================================
   NOUVEAU LOGO RÉGIS SOLUTION — STYLE 2
===================================================== */

.rs2-logo {
  position: relative;
  flex: 0 0 auto;
}

/* Barre verticale du R */
.rs2-logo::before {
  content: "";
  position: absolute;
  left: 10%;
  top: 10%;
  width: 13%;
  height: 68%;

  background: linear-gradient(
    180deg,
    #e6b85a,
    #c88f2f
  );
}

/* Partie supérieure arrondie du R */
.rs2-top {
  position: absolute;
  left: 10%;
  top: 8%;

  width: 72%;
  height: 48%;

  border-top: 10px solid #d9a13d;
  border-right: 10px solid #d9a13d;
  border-bottom: 10px solid #d9a13d;

  border-radius: 0 55% 55% 0;
}

/* Trait intérieur */
.rs2-middle {
  position: absolute;
  left: 20%;
  top: 40%;

  width: 45%;
  height: 10%;

  background: linear-gradient(
    90deg,
    #e6b85a,
    #c88f2f
  );
}

/* Jambe diagonale du R */
.rs2-leg {
  position: absolute;
  left: 52%;
  top: 52%;

  width: 13%;
  height: 50%;

  background: linear-gradient(
    180deg,
    #e6b85a,
    #c88f2f
  );

  transform: rotate(-43deg);
  transform-origin: top center;
}


/* =====================================================
   PETIT LOGO — EN HAUT À GAUCHE
===================================================== */

.rs2-small {
  width: 52px;
  height: 52px;
}

.rs2-small .rs2-top {
  border-width: 5px;
}


/* =====================================================
   GRAND LOGO — CENTRE DE LA PAGE D’ACCUEIL
===================================================== */

.rs2-large {
  width: 125px;
  height: 125px;
  margin-bottom: 30px;
}

.rs2-large .rs2-top {
  border-width: 10px;
}


/* =====================================================
   AJUSTEMENT IPHONE
===================================================== */

@media screen and (max-width: 850px) {

  .rs2-small {
    width: 44px;
    height: 44px;
  }

  .rs2-small .rs2-top {
    border-width: 4px;
  }

  .rs2-large {
    width: 112px;
    height: 112px;
    margin-bottom: 30px;
  }

  .rs2-large .rs2-top {
    border-width: 9px;
  }

}


/* =====================================================
   PETITS IPHONE
===================================================== */

@media screen and (max-width: 390px) {

  .rs2-small {
    width: 40px;
    height: 40px;
  }

  .rs2-large {
    width: 100px;
    height: 100px;
  }

  .rs2-large .rs2-top {
    border-width: 8px;
  }

}
.logo-regis {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  text-decoration: none;
}

.logo-regis svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* iPhone */
@media (max-width: 768px) {
  .logo-regis {
    width: 48px;
    height: 48px;
  }
}
/* ===================================
   TEMPORAIRE - ENLEVER TOUS LES LOGOS R
   =================================== */

.logo-regis,
.hero-logo {
    display: none !important;
}

/* Logo texte dans le header */
.logo-regis-texte {
    display: flex !important;
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    text-decoration: none;
}

.logo-regis-texte .regis {
    color: #ffffff;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 5px;
}

.logo-regis-texte .solution {
    color: #d6a23d;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 4px;
}

/* iPhone */
@media (max-width: 768px) {

    .logo-regis,
    .hero-logo {
        display: none !important;
    }

    .logo-regis-texte .regis {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .logo-regis-texte .solution {
        font-size: 12px;
        letter-spacing: 3px;
    }
}
