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




:root {
  --bg-dark: #222222;
  --bg-darker: #1a1a1a;
  --bg-card: #2a2a2a;
  --orange: #FF6A00;
  --orange-hover: #e55f00;
  --text-white: #ffffff;
  --text-gray: #9ca3af;
  --text-gray-light: #d1d5db;
  --border-gray: #374151;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Unbounded', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hidden {
  display: none !important;
}

.text-orange {
  color: var(--orange);
}

.text-white {
  color: var(--text-white);
  font-weight: 500;
}

/* Buttons */
.btn-primary {
  background-color: var(--orange);
  color: var(--text-white);
  border: none;
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--orange-hover);
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 106, 0, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--orange);
  border: 2px solid var(--orange);
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.btn-outline:hover {
  background-color: var(--orange);
  color: var(--text-white);
}

.btn-nav {
  padding: 0.5rem 1.5rem;
}

.btn-hero {
  padding: 0.5rem 2rem;
  margin-top: 1rem;
}

/* Section Badge */
.section-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: var(--orange);
  color: var(--text-white);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-top: 1.5rem;
}

.section-subtitle {
  color: var(--text-gray);
  font-size: 1.25rem;
  margin-top: 1rem;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: 100%;
  padding: 0 1rem;
}

.navbar-desktop {
  display: none;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  min-width: 60vw;
  max-width: 72rem;
  background: rgba(34, 34, 34, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 9999px;
  padding: 0.5rem 2rem;
  border: 1px solid rgba(55, 65, 81, 0.5);
}

.navbar-logo {
  height: auto;
  width: 70px;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  color: var(--text-gray-light);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar-links a:hover {
  color: var(--orange);
}

.navbar-mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(34, 34, 34, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(55, 65, 81, 0.5);
}

.navbar-logo-mobile {
  height: 2.25rem;
  width: auto;
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  margin-top: 0.5rem;
  background: rgba(34, 34, 34, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid rgba(55, 65, 81, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  color: var(--text-gray-light);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--orange);
}

@media (min-width: 768px) {
  .navbar-desktop {
    display: flex;
  }
  .navbar-mobile,
  .mobile-menu {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
}

.hero-bg-desktop {
  display: none;
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/hero-desktop2.png');
  background-size: cover;
  background-position: center right;
}

.hero-bg-mobile {
  position: absolute;
  inset: 0;
  background-image: url('../assets/img/hero-mobile.png');
  background-size: cover;
  background-position: center bottom;
}

.hero-overlay-desktop {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #222222, rgba(34, 34, 34, 0.7), transparent);
}

.hero-overlay-bottom {
  display: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, transparent, rgba(34, 34, 34, 0.5));
}

@media (min-width: 768px) {
  .hero {
    align-items: center;
  }
  .hero-bg-desktop {
    display: block;
  }
  .hero-bg-mobile {
    display: none;
  }
  .hero-overlay-desktop,
  .hero-overlay-bottom {
    display: block;
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  padding: 8rem 1.5rem 0;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    padding: 6rem 3rem;
    text-align: left;
    max-width: 36rem;
    margin: 0;
    margin-left: calc((100vw - 1280px) / 2 + 3rem);
  }
}

@media (min-width: 768px) and (max-width: 1280px) {
  .hero-content {
    margin-left: 3rem;
  }
}

.hero-subtitle {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

.hero-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.mobile-title {
  display: inline;
}

.desktop-title {
  display: none;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }
  .mobile-title {
    display: none;
  }
  .desktop-title {
    display: inline;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
}

.hero-paragraph {
  display: none;
  font-size: 0.875rem;
  color: var(--text-gray-light);
  max-width: 32rem;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

@media (min-width: 400px) {
  .hero-paragraph {
    display: block;
  }
}

@media (min-width: 768px) {
  .hero-paragraph {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.hero-reviews {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.25rem;
}

@media (min-width: 768px) {
  .hero-reviews {
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.review-avatars {
  display: flex;
}

.review-avatars img {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 2px solid rgba(107, 114, 128, 0.5);
  object-fit: cover;
  margin-left: -0.5rem;
}

.review-avatars img:first-child {
  margin-left: 0;
}

@media (min-width: 768px) {
  .review-avatars img {
    width: 2.25rem;
    height: 2.25rem;
  }
}

.review-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .review-info {
    gap: 0.75rem;
  }
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media (min-width: 768px) {
  .stars svg {
    width: 1rem;
    height: 1rem;
  }
}

.review-text {
  color: var(--text-gray);
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .review-text {
    font-size: 0.875rem;
  }
}

/* Services Section */
.services {
  padding: 6rem 0;
  background-image: url('../assets/img/services-bg.png');
  background-size: contain;
  background-position: center;
}


/* Fade haut */
.services::before,
.services::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 80px; /* ajuste la hauteur du fade si besoin */
  pointer-events: none;
}

/* haut */
.services::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    #232221 0%,
    rgba(35, 34, 33, 0) 100%
  );
}

/* bas */
.services::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    #232221 0%,
    rgba(35, 34, 33, 0) 100%
  );
}


/* Mobile uniquement */
@media (max-width: 767px) {
  .services {
    background-image: url('../assets/img/services-bg-mobile.png');
    /* si besoin, tu peux aussi changer le size/position */
    background-size: cover;
    background-position: top center;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
  }
}

.service-card {
  position: relative;
  padding: 1.5rem;
  background: rgba(42, 42, 42, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 106, 0, 0.2);
  border-radius: 1rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-card {
    padding: 2rem;
  }
}

.service-card:hover {
  border-color: rgba(255, 106, 0, 0.5);
}

.service-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover .service-card-accent {
  opacity: 1;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

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

@media (min-width: 768px) {
  .service-1 {
    grid-column: span 2;
    grid-row: span 1;
  }
  .service-2 {
    grid-column: span 2;
    grid-row: span 2;
  }
  .service-3,
  .service-4 {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* Subscriptions Section */
.subscriptions {
  padding: 6rem 0;
  background-color: var(--bg-dark);
}

.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .plans-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
  }
}

.plan-card {
  position: relative;
  padding: 2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-gray);
  border-radius: 1.5rem;
  transition: all 0.3s ease;
}

.plan-card:hover {
  border-color: rgba(255, 106, 0, 0.5);
}

.plan-popular {
  background: linear-gradient(to bottom, rgba(255, 106, 0, 0.2), var(--bg-card));
  border: 2px solid var(--orange);
  transform: scale(1.05);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--orange);
  color: var(--text-white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
}

.plan-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan-price {
  margin-bottom: 2rem;
}

.plan-price .price {
  font-size: 3rem;
  font-weight: 700;
}

.plan-price .period {
  color: var(--text-gray);
}

.plan-features {
  list-style: none;
  margin-bottom: 2rem;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-gray-light);
  margin-bottom: 1rem;
}

.plan-card button {
  width: 100%;
}

/* Locations Section */
.locations {
  padding: 6rem 0;
  background-color: var(--bg-darker);
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.location-card {
  position: relative;
  padding: 2rem;
  background-color: var(--bg-card);
  border: 1px solid var(--border-gray);
  border-radius: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.location-card:hover {
  border-color: rgba(255, 106, 0, 0.5);
}

.location-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  background: rgba(255, 106, 0, 0.1);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.location-card:hover .location-icon {
  background: rgba(255, 106, 0, 0.2);
}

.location-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.location-card p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.location-extra {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 106, 0, 0.1);
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}

/* Quote Section */
.quote-section {
  padding: 8rem 0;
  background-color: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.quote-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background-color: var(--orange);
  border-radius: 50%;
  filter: blur(200px);
  opacity: 0.05;
}

.quote-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.quote-mark {
  font-size: 4rem;
  color: var(--orange);
  line-height: 1;
}

.quote-mark-end {
  display: inline-block;
  transform: rotate(180deg);
}

blockquote {
  font-size: 1.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  line-height: 1.3;
  margin: 1rem 0;
}

@media (min-width: 768px) {
  blockquote {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  blockquote {
    font-size: 3rem;
  }
}

.quote-author {
  color: var(--text-gray);
  font-size: 1.25rem;
  margin-top: 2rem;
}

/* Coach Section */
.coach {
  padding: 6rem 0;
  background-color: var(--bg-darker);
}

.coach-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 768px) {
  .coach-content {
    grid-template-columns: 1fr 1fr;
  }
}

.coach-image {
  position: relative;
}

.coach-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 1.5rem;
}

.coach-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-dark), transparent);
  border-radius: 1.5rem;
  pointer-events: none;
}

.coach-image-accent {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 12rem;
  height: 12rem;
  border: 4px solid var(--orange);
  border-radius: 1.5rem;
  z-index: -1;
}

.coach-info h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.coach-info p {
  color: var(--text-gray);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.coach-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--orange);
}

.stat-label {
  color: var(--text-gray);
  margin-top: 0.5rem;
  display: block;
}

/* Calendar Section */
.calendar {
  padding: 6rem 0;
  background-color: var(--bg-dark);
}

.calendar-card {
  max-width: 56rem;
  margin: 0 auto;
  background-color: var(--bg-card);
  border: 1px solid var(--border-gray);
  border-radius: 1.5rem;
  padding: 2rem;
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.calendar-placeholder {
  aspect-ratio: 16/9;
  background-color: var(--bg-darker);
  border: 2px dashed var(--border-gray);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.calendar-placeholder p {
  color: var(--text-gray);
  font-size: 1.125rem;
}

.calendar-placeholder span {
  color: #6b7280;
  font-size: 0.875rem;
}

.calendar-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .calendar-info {
    grid-template-columns: repeat(3, 1fr);
  }
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background-color: var(--bg-darker);
  border-radius: 0.75rem;
}

.info-item div {
  display: flex;
  flex-direction: column;
}

.info-title {
  color: var(--text-white);
  font-weight: 500;
}

.info-text {
  color: var(--text-gray);
  font-size: 0.875rem;
}

/* Footer */
.footer {
  padding: 3rem 0;
  background-color: var(--bg-darker);
  border-top: 1px solid rgba(55, 65, 81, 0.5);
  text-align: center;
}

.footer-logo {
  height: 3.5rem;
  width: auto;
  margin: 0 auto 1rem;
}

.footer-tagline {
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(55, 65, 81, 0.5);
  color: #6b7280;
  font-size: 0.875rem;
}

/* Animations */
.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
