* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 18px;
}

body {
  min-height: 100vh;
  background: #ae0e2c;
  font-family: 'Cormorant Garamond';
}

html, body {
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: "Great Vibes", cursive;
  font-weight: 400;
}

main {
  width: 100%;
}





/* ===================== HOME / HERO ===================== */



.hero-container {
  position: relative;
  height: 100vh;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
  background: url(images/seonmudo-arche.jpeg) center / cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}





/* ===================== NAV CERCLE ===================== */



.circle-nav {
  position: relative;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  transform-origin: center;
}

.slice {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.4);
  text-decoration: none;
  color: #000000;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.15s ease;
}

.slice:active {
  transform: scale(0.98);
}

.slice:hover,
.slice:active,
.slice:focus,
.slice:focus-visible {
  box-shadow: inset 0 0 0 1px #000;
  outline: none;
}

.slice { border: none; }

.ne {
  clip-path: polygon(
    50% 50%,
    50% 0%,
    100% 0%,
    100% 50%
  );
}

.ne:hover,
.ne:active,
.ne:focus,
.ne:focus-visible {
  background-color: rgba(219, 146, 26, 1) !important;
}

.nw {
  clip-path: polygon(
    50% 50%,
    0% 50%,
    0% 0%,
    50% 0%
  );
}

.nw:hover,
.nw:active,
.nw:focus,
.nw:focus-visible {
  background-color: rgba(255, 255, 255, 1) !important;
}

.bottom {
  clip-path: polygon(
    50% 50%,
    100% 50%,
    100% 100%,
    0% 100%,
    0% 50%
  );
}

.bottom:hover,
.bottom:active,
.bottom:focus,
.bottom:focus-visible {
  background-color: rgba(174, 14, 44, 1) !important;
}

.slice span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-align: center;
  width: 140px;
  pointer-events: none;
  line-height: 1.2;
  z-index: 2;
}

.ne span {
  transform: translate(20px, -90px);
}

.nw span {
  transform: translate(-160px, -100px);
}

.bottom span {
  transform: translate(-50%, -50%) translateY(110px);
}

.center-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #fff;
  color: #ae0e2c;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  z-index: 10;

  cursor: pointer;
  text-decoration: none;
}

.center-logo:hover {
  transform: translate(-50%, -50%) scale(1.05);
}

.center-logo img {
  width: 90px;
  height: 90px;
  pointer-events: none;
}





/* ===================== INNER PAGES / VARIANTS ===================== */



.fond {
  background: #FFFFFF;
}

.inner-page .menu-pages {
  justify-content: flex-start;
  width: 70%;
}

.inner-page .circle-nav {
  margin-left: auto;
  margin-right: auto;
}

.inner-page .circle-nav::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  background: #ae0e2c;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.inner-page .circle-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 8;
  pointer-events: none;
  background:
    linear-gradient(#ae0e2c, #ae0e2c) center/100% 5px no-repeat,
    linear-gradient(#ae0e2c, #ae0e2c) center top / 5px 50% no-repeat;
}




/* ===================== FACEBOOK ===================== */


.fb {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 20;
  opacity: 0.7;
}

.fb:hover {
  opacity: 1;
}

.fb a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  transition: background 0.3s ease;
}

.fb a:hover {
  background: rgba(255,255,255,0.35);
}

.fb-icon {
  width: 40px;
  height: 40px;
  color: #0866FF;
  transition: transform 0.3s ease, color 0.3s ease;
}

.fb a:hover .fb-icon {
  transform: scale(1.15);
  fill: #ae0e2c;
  color: #ae0e2c;
}





/* ===================== DIVERS / LAYOUT ===================== */



.retour-accueil {
  display: inline-block;
  margin-left: 50%;
}

.retour-accueil a {
  display: inline-block;
  padding: 15px;
  border: 2px solid #fff;
  border-radius: 10px;
  color: #fff;
  font-size: 1.5rem;
}

.retour-accueil a:hover {
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
  margin-top: 100px;
}

.menu-pages {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 75px;
}

.sidebar {
  width: 250px;
  background-color: #111;
  color: #fff;
  padding: 50px;
  margin-top: -100px;
}

.sidebar a {
  color: #fff;
  text-decoration: none;
}

.sidebar a:hover {
  color: #ae0e2c;
}

.sidebar ul {
  list-style: none;
  padding: 0;
}

.sidebar li {
  margin-bottom: 15px;
  margin-top: 50px;
}

.content {
  flex: 1;
  padding: 40px;
}

.inner-page .origine-paragraphe-container,
.inner-page .seonmudo-paragraphe-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5%;
  margin-right: 35%;
}

.inner-page .left-column {
  width: 100%;
}





/* ===================== ORIGINE ===================== */



.inner-page-origine .origine-paragraphe-1,
.inner-page-origine .origine-paragraphe-2 {
  width: 75%;
}

.inner-page-origine .origine-paragraphe-1 h2 {
  margin-bottom: 100px;
  font-size: 4rem;
  color: #db921a;
}

.inner-page-origine .origine-paragraphe-1 h3,
.inner-page-origine .origine-paragraphe-2 h3 {
  margin-bottom: 50px;
  margin-left: 5%;
  font-size: 2rem;
  color: #db921a;
}

.inner-page-origine .origine-paragraphe-1 p {
  margin-left: 10%;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.6;
  padding: 30px;
  border: solid 3px #db921a;
  border-radius: 10px;
}

.inner-page-origine .origine-paragraphe-2 {
  margin-top: 200px;
}

.inner-page-origine .origine-paragraphe-2 p {
  margin-left: 10%;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.6;
  padding: 30px 20px 30px 150px;
  border-left: solid 3px #db921a;
}





/* ===================== IMAGE CORÉENNE FIXE ===================== */



.coreen-fixed {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 30%;
  z-index: 0;
  pointer-events: none;
}

.coreen-fixed img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  display: block;
}





/* ===================== SEONMUDO ===================== */



.seonmudo-paragraphe-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5%;
  margin-right: 35%;
}

.left-column {
  width: 100%;
}

.seonmudo-paragraphe-2 {
  width: 100%;
  margin-bottom: 200px;
}

.seonmudo-paragraphe-2 h1 {
  margin-bottom: 50px;
  font-size: 4rem;
  color: #ae0e2c;
}

.seonmudo-paragraphe-2 p {
  width: 80%;
  font-size: 1.5rem;
  color: black;
  line-height: 1.6;
  margin-left: 10%;
}

.seonmudo-container {
  margin-left: 5%;
  width: 55%;
  color: #ffffff;
  font-size: 1.3rem;
}

.seonmudo-container h2 {
  color: #ae0e2c;
  margin-top: 150px;
  margin-bottom: 50px;
}

.seonmudo-container p {
  margin-left: 5%;
  color: black;
}




/* ===================== BIENFAITS ===================== */


.fond-3 {
  background-color: #db921a;
}

.bienfaits-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.bienfaits-text {
  width: 55%;
  margin-left: 5%;
}

.bienfaits-text-2 {
  margin-left: 10%;
  max-width: 60%;
  color: black;
}

.bienfaits h2 {
  font-size: 2rem;
  color: white;
  margin-bottom: 50px;
}

.bienfaits p {
  color: black;
  margin-left: 10%;
  margin-bottom: 200px;
  font-size: 1.5rem;
  line-height: 1.6;
}

.bienfaits-2 {
  margin-bottom: 150px;
}

.bienfaits-2 h2 {
  margin-bottom: 50px;
  color: white;
}

.bienfaits-2 p {
  margin-left: 5%;
  font-size: 1.5rem;
  line-height: 1.6;
}

.bienfaits-3 {
  font-size: 1.5rem;
  margin-bottom: 150px;
}

.bienfaits-3 h2 {
  margin-bottom: 50px;
  color: white;
}

.bienfaits-3 p {
  margin-left: 5%;
}

.bienfaits-4 {
  font-size: 1.5rem;
  margin-bottom: 150px;
}

.bienfaits-4 h2 {
  margin-bottom: 50px;
  color: white;
}

.bienfaits-4 p {
  margin-left: 5%;
}

.inner-page-bienfaits .bienfaits-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5%;
  margin-right: 35%;
}

.inner-page-bienfaits .left-column {
  width: 100%;
}

.inner-page-bienfaits .bienfaits {
  width: 75%;
  margin-bottom: 200px;
}

.inner-page-bienfaits .bienfaits h1 {
  color: white;
  margin-bottom: 50px;
  font-size: 4rem;
}

.inner-page-bienfaits .bienfaits p {
  color: black;
  margin-left: 10%;
}

.inner-page-bienfaits .bienfaits-group {
  width: 75%;
  margin-left: 10%;
}

.inner-page-bienfaits .bienfaits-group > div {
  margin-bottom: 150px;
  color: black;
}

.inner-page-bienfaits .bienfaits-group h2 {
  margin-bottom: 50px;
  color: white;
  font-size: 3rem;
}

.inner-page-bienfaits .bienfaits-group p {
  margin-left: 5%;
}




/* ===================== COURS ===================== */


.fond-2 {
  background-color: #ae0e2c;
}

.inner-page-cours .cours-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5%;
  margin-right: 35%;
}

.inner-page-cours .left-column {
  width: 100%;
}

.inner-page-cours .cours-intro {
  width: 75%;
  margin-bottom: 200px;
}

.inner-page-cours .cours-intro h2 {
  margin-bottom: 50px;
  font-size: 4rem;
  color: white;
}

.inner-page-cours .cours-intro p {
  font-size: 1.5rem;
  color: black;
  margin-left: 10%;
  width: 80%;
  line-height: 1.6;
}

.inner-page-cours .cours-group {
  width: 75%;
  margin-left: 10%;
}

.inner-page-cours .cours-bloc {
  font-size: 1.5rem;
  color: black;
  margin-bottom: 150px;
}

.inner-page-cours .cours-bloc h2 {
  font-size: 3rem;
  color: white;
  margin-bottom: 100px;
}

.inner-page-cours .cours-bloc h3 {
  margin-bottom: 50px;
  color: #db921a;
  font-size: 2rem;
}

.inner-page-cours .cours-sous-bloc {
  margin-bottom: 60px;
}

.inner-page-cours .cours-sous-bloc h4 {
  margin-bottom: 20px;
  margin-left: 5%;
  font-size: 1.7rem;
  color: white;
}

.inner-page-cours .cours-sous-bloc p {
  margin-left: 10%;
  line-height: 1.6;
}

.inner-page-cours .cours-sous-bloc a {
  color: white;
}

.inner-page-cours .cours-sous-bloc a:hover {
  color: black;
  text-decoration: none;
}

.inner-page-cours .ville {
  color: white;
}

.inner-page-cours .offre {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #db921a;
}

.inner-page-cours .contact {
  font-size: 1.5rem;
  color: black;
  margin-bottom: 150px;
}

.inner-page-cours .contact h2 {
  margin-bottom: 100px;
  color: white;
  font-size: 3rem;
}

.inner-page-cours .contact p {
  margin-left: 10%;
  line-height: 1.6;
}

.inner-page-cours .contact p span {
  color: #db921a;
}

.prix {
  color: white;
}

.contact-links {
  margin-top: 40px;
  font-size: 1.4rem;
}

.contact-links p {
  margin-bottom: 15px;
}

.contact-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-links a:hover {
  color: #db921a;
}

.mindset {
  margin-top: 200px;
  font-size: 2.1rem;
  color: white;
}




/* ===================== PHILO ===================== */


.fond-4 {
  background-color: #005ea3;
}

.inner-page-philosophie .philosophie-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 5%;
  margin-right: 35%;
}

.inner-page-philosophie .left-column {
  width: 100%;
}

.inner-page-philosophie .philosophie-intro {
  width: 75%;
}

.inner-page-philosophie .philosophie-intro h2 {
  margin-bottom: 50px;
  font-size: 4rem;
  color: #db921a;
}

.inner-page-philosophie .philosophie-intro p {
  margin-left: 10%;
  font-size: 1.5rem;
  color: #ffffff;
  line-height: 1.6;
}




/* ===================== GALERIE ===================== */


.lien-video {
  margin: 20px auto 100px auto;
}

.lien-video a {
  display: flex;
  justify-content: center;
  color: #db921a;
  font-size: 1.5rem;
}

.lien-video a:hover {
  text-decoration: none;
  color: #ffffff;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 80px auto;
  overflow: hidden;
}

.carousel-track-container {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.slide {
  min-width: 100%;
}

.slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 2.5rem;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: 20%;
  z-index: 5;
  transition: background 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.9);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.bottom-bar {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 30;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  padding: 10px 25px;
  border-radius: 30px;
  font-size: 0.9rem;
  color: white;
  text-align: center;
  transition: background 0.3s ease;
}

.bottom-bar:hover {
  background: rgba(255,255,255,0.3);
}

.bottom-bar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.bottom-bar a:hover {
  color: #ae0e2c;
}




/* ===================== FOOTER ===================== */


.footer,
.footer-fond {
  margin-top: 200px;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 80%;
  padding: 20px 0;
  gap: 8px;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ae0e2c;
}

.separator {
  margin: 0 8px;
  opacity: 0.8;
}

.footer {
  background-color: rgba(255,255,255,0.3);
  color: white;
}

.footer-copyright a {
  color: black;
}

.footer-copyright a:hover {
  text-decoration: none;
  color: white;
}

.footer-fond {
  background-color: rgba(0,0,0,0.3);
  color: white;
}

.footer-copyright-fond a {
  color: white;
}

.footer-copyright-fond a:hover {
  text-decoration: none;
  color: black;
}




body.inner-page.fond .footer {
  background-color: rgba(0,0,0,0.35);
  color: #fff;
  padding: 20px 0;
}

body.inner-page.fond .footer .footer-contact a,
body.inner-page.fond .footer .footer-copyright a {
  color: #fff;
  transition: color 0.3s ease;
}

body.inner-page.fond .footer .footer-contact a:hover,
body.inner-page.fond .footer .footer-copyright a:hover {
  color: #ae0e2c;
}

body.inner-page .footer,
body.inner-page .footer-fond {
  width: auto;
  margin-left: 5%;
  margin-right: 35%;
}

.footer-copyright a,
.footer-copyright-fond a {
  display: inline-block;
  white-space: nowrap;
}




/* ===================== BANNER MAINTENANCE ===================== */


body.home .maintenance-banner {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  color: white;
  font-size: 0.95rem;
  letter-spacing: 0.8px;
  text-align: center;
}





/* ===================== Media Queries ===================== */


@media (hover: hover) and (pointer: fine) {
  .contact-links a {
    pointer-events: none;
    cursor: default;
  }

  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-wrap: nowrap;
  }

  .contact-item::after {
    content: "(" attr(data-num) ")";
    display: inline-block;
    margin-left: 6px;
    opacity: 0;
    font-size: 0.95em;
    white-space: nowrap;
    transition: opacity 0.2s ease;
  }

  .contact-item:hover::after {
    opacity: 0.75;
  }

  .contact-item:hover a {
    color: #ae0e2c;
  }
}

@media (hover: none) and (pointer: coarse) {
  .contact-links a {
    pointer-events: auto;
    cursor: pointer;
  }
}



@media (max-width: 1024px) {
  .circle-nav { transform: scale(0.9); }
}



@media (orientation: portrait) {
  .coreen-fixed {
    display: none;
  }
}



@media (max-width: 900px) {
  .circle-nav { transform: scale(0.8); }

  .center-logo:hover {
    transform: translate(-50%, -50%);
  }
}



@media (max-width: 900px) and (orientation: portrait) {
  body {
    overflow: hidden;
  }

  body > * {
    display: none !important;
  }

  body::before {
    content: "Pour une meilleure expérience, basculez votre téléphone en mode paysage.";
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.4;
    color: #fff;
    background: #000;
    z-index: 999999;
  }
}



@media (max-width: 900px) and (orientation: landscape) {
  html {
    font-size: 16px;
  }

  body {
    overflow-x: hidden;
  }

  .hero-container {
    width: 100%;
    min-height: 100vh;
  }

  .slice span {
    width: 130px;
    font-size: 0.9rem;
  }

  .ne span {
    transform: translate(10px, -75px);
  }

  .nw span {
    transform: translate(-140px, -80px);
  }

  .bottom span {
    transform: translate(-50%, -50%) translateY(95px);
  }

  .center-logo img {
    width: 78px;
    height: 78px;
  }

  .inner-page .circle-nav::after {
    width: 88px;
    height: 88px;
  }

  .footer,
  .footer-fond {
    width: auto;
    margin-top: 120px;
    font-size: 1rem;
  }

  .inner-page-bienfaits .bienfaits,
  .seonmudo-paragraphe-2,
  .inner-page-cours .cours-intro {
    margin-bottom: 120px;
  }

  .layout {
    margin-top: 0px;
  }

  .menu-pages {
    margin-bottom: 10px;
  }

  body.inner-page.fond .footer {
    width: auto;
    margin-left: 5%;
    margin-right: 35%;
    padding: 18px 12px;
    font-size: 1rem;
  }
}



@media (max-width: 767px) {
  .circle-nav {
    transform: scale(0.7);
  }

  .contact-links a {
    pointer-events: auto;
    cursor: pointer;
  }
}



@media (max-width: 1024px) {

  .footer-contact,
  .footer-copyright {
    width: 100%;
    margin-right: 0;
  }

  .layout {
    margin-top: 10px;
  }

  .menu-pages {
    margin-bottom: 20px;
  }
}



@media (max-width: 767px) {
  .footer,
  .footer-fond,
  body.inner-page.fond .footer {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    padding: 18px 12px;
  }

  .footer-contact,
  .footer-copyright {
    line-height: 1.4;
  }
}

@media (max-width: 900px) and (orientation: landscape) {
  body.inner-page .footer,
  body.inner-page .footer-fond {
    width: auto;
    margin-left: 5%;
    margin-right: 35%;
  }
}




@media (hover: hover) and (pointer: fine) {
  .slice {
    background-color: rgba(255,255,255,0.4);
  }
}

@media (hover: none) and (pointer: coarse) {
 
  .slice {
    background-color: rgba(255,255,255,0.4);
  }
  
  .ne:hover,
  .ne:active,
  .ne:focus,
  .ne:focus-visible {
    background-color: #db921a !important;
  }

  .nw:hover,
  .nw:active,
  .nw:focus,
  .nw:focus-visible {
    background-color: #ffffff !important;
  }

  .bottom:hover,
  .bottom:active,
  .bottom:focus,
  .bottom:focus-visible {
    background-color: #ae0e2c !important;
  }

  .slice:active {
    transform: none;
  }
}