@import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Montserrat&display=swap');

:root {
  --gws-blue: #00e5ff;
  --gws-pink: #ff00aa;
  --gws-gold: #ffd700;
  --gws-orange: #ff8c00;
  --gws-text: #ffffff;
}

body {
  margin: 0;
  padding: 0;
  background: linear-gradient(
    to bottom,
    #000000 0%,
    #452513 15%,
    #000000 35%,
    #000000 65%,
    #452513 90%,
    #000000 100%
  );
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.globe-icon {
  height: 120px;
  width: auto;
  margin-right: 10px;
  vertical-align: middle;
  object-fit: contain;
  max-height: 130px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  height: 60px;
  background-color: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid #333;
  box-sizing: border-box;
}

.nav-left {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
}

.nav-center a,
.nav-right a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.3s ease, color 0.3s ease;
}

nav a:hover,
nav a.active {
  color: var(--gws-text);
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff;
}

.nav-right a.selected {
  text-shadow: 0 0 5px #ff80df, 0 0 10px var(--gws-pink), 0 0 20px #ff00aa, 0 0 40px #ff0077;
  color: var(--gws-text);
}

main {
  padding-top: 0;
  text-align: center;
  flex: 1;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 3.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero .slogan {
  font-size: 1.5rem;
  color: #ddd;
  font-weight: 300;
  margin-bottom: 6rem;
}

.separator {
  width: 60%;
  height: 2px;
  margin: 0 auto;
  background-color: #fff;
}

.services {
  min-height: 100vh;
  max-width: 800px;
  margin: 0 auto;
  padding: 10rem 2rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services h2 {
  color: #f0f0f0;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.services ul {
  list-style: none;
  padding: 0;
}

.services ul li {
  margin: 3.5rem 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #333;
  font-size: 1.3rem;
  font-weight: 300;
}

.cta {
  display: inline-block;
  position: relative;
  background-color: transparent;
  color: #fff;
  padding: 1rem 2rem;
  margin-top: 5rem;
  font-weight: bold;
  font-size: 1rem;
  border: 2px solid #fff;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  transition: color 0.4s ease;
}

.cta::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #fff;
  z-index: 0;
  transition: width 0.4s ease;
}

.cta:hover::before {
  width: 100%;
}

.cta:hover {
  color: #000;
}

.cta span {
  position: relative;
  z-index: 1;
}

footer {
  padding: 2rem;
  background-color: transparent;
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  border-top: 1px solid #333;
}

.fade-in {
  opacity: 0;
  transition: opacity 1.6s ease;
}

.fade-in.show {
  opacity: 1;
}

.neon-gold {
  color: var(--gws-text);
  text-shadow: 0 0 5px var(--gws-gold), 0 0 10px var(--gws-gold), 0 0 20px var(--gws-gold), 0 0 40px var(--gws-orange);
  font-weight: bold;
}

.neon-blue {
  color: var(--gws-text);
  text-shadow: 0 0 5px #00e5ff, 0 0 10px #00e5ff, 0 0 20px var(--gws-blue), 0 0 40px #0088ff;
  font-weight: bold;
}

.neon-white {
  color: var(--gws-text);
  text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff;
  font-weight: bold;
}

.neon-pink {
  color: var(--gws-text);
  text-shadow: 0 0 5px #ff80df, 0 0 10px var(--gws-pink), 0 0 20px #ff00aa, 0 0 40px #ff0077;
  font-weight: bold;
}

.cta.neon-blue {
  border: 2px solid var(--gws-blue);
  padding: 0.75em 1.5em;
  color: var(--gws-text);
  background-color: transparent;
  text-shadow: 0 0 5px #00e5ff, 0 0 10px #00e5ff, 0 0 20px var(--gws-blue), 0 0 40px #0088ff;
  box-shadow: 0 0 10px #00e5ff;
  transition: all 0.3s ease;
  font-weight: bold;
}

.cta.neon-blue:hover {
  background-color: var(--gws-blue);
  color: #000;
  box-shadow: 0 0 20px var(--gws-blue), 0 0 30px var(--gws-blue), 0 0 40px var(--gws-blue);
  border-color: #00e5ff;
}

.mockups-section {
  margin: 4rem auto;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mockups-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 33vw;
  padding: 2rem 0 2rem 33vw;
  box-sizing: content-box;
  scrollbar-width: none;
}

.mockups-container::-webkit-scrollbar {
  display: none;
}

.mockup-card {
  flex: 0 0 auto;
  min-width: 300px;
  height: auto;
  background-color: transparent;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mockup-card img {
  width: 400px;
  height: 600px;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.4s ease;
}


.mockup-info {
  margin-top: 0.7rem;
  padding: 0 0.5rem;
  color: white;
  text-align: left;
  width: 100%;
}

.mockup-info h3 {
  margin: 0;
  font-size: 1.1rem;
}

.mockup-info p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  color: #ccc;
}

.mockup-card:last-child {
  margin-right: 33vw;
}

.mockup-nav {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 15px;
  z-index: 5;
}

.mockup-nav button {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid white;
  border-radius: 50%;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.mockup-nav button:hover {
  background-color: white;
  color: black;
}

.mockup-button {
  margin-top: 3rem;
}

.mockup-button a {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.why-choose-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 8rem 2rem;
}

.why-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  column-gap: 2rem;
  align-items: start;
  position: relative;
}

.why-left {
  display: flex;
  flex-direction: column;
  gap: 20rem;
  padding-bottom: 15.5rem; /* ← espace en bas */
}

/* pour forcer la colonne sticky à suivre la hauteur du bloc gauche */
.why-side {
  position: relative;
  height: 100%;
}

.why-sticky-wrapper {
  position: sticky;
  padding-top: 15rem; /* Même que le padding-top */
  top: 40%;
  transform: translateY(-50%);
}

.sticky-box {
  display: flex;
  flex-direction: column;
  align-items: center;

}

.why-row {
  display: block;
}

.why-block {
  text-align: right;
  padding-right: 2rem;
  max-width: 500px;
  margin-left: auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.why-block.visible {
  opacity: 1;
  transform: translateY(0);
}

.why-divider {
  width: 1px;
  background-color: white;
  opacity: 0.3;
  height: auto;
  justify-self: center;
}

.sticky-box .cta {
  margin-top: 1rem; /* Supprime l'espacement supplémentaire */
}

.why-divider-line {
  position: absolute;
  left: 50%;
  width: 1px;
  background-color: white;
  opacity: 0.2;
  height: 100px; /* hauteur visuelle de la ligne */
  transform: translateX(-50%);
  top: calc(2rem + var(--line-index) * 30rem); /* ← nouveau spacing vertical */
}

.site-footer {
  background-color: #000;
  color: #ccc;
  padding: 4rem 2rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 2rem;
}

.footer-column {
  flex: 1 1 250px;
}

.footer-column h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #ccc;
  text-decoration: none;
}

.footer-column a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  font-size: 0.85rem;
  color: #777;
}
