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

body {
  font-family: "Filson Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", sans-serif;
  line-height: 1.6;
  color: #285260;
  background-color: #f3eeea;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.language-selector {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  padding: 12px 0;
}
.language-selector .container {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.lang-btn {
  padding: 8px 16px;
  border: 2px solid #285260;
  background: #ffffff;
  color: #285260;
  border-radius: 20px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.lang-btn:hover {
  background: #f3eeea;
  transform: translateY(-1px);
}
.lang-btn.active {
  background: #285260;
  color: #ffffff;
  border-color: #285260;
}

.hero {
  margin-top: 60px;
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, #285260 0%, #E0D7CF 100%);
  color: #ffffff;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}

.hero-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.hero-location {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 2px;
  opacity: 0.95;
}

.nav-cards {
  padding: 40px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.nav-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.nav-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.nav-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #285260;
  margin-top: 15px;
}

.nav-card-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.content-section {
  min-height: 100vh;
  padding: 80px 0 40px;
  background: #f3eeea;
}

.consignes-block {
  margin-bottom: 50px;
}

.equipements-block {
  margin-top: 50px;
}

.back-btn, .back-to-equipment-btn {
  display: inline-block;
  padding: 10px 20px;
  margin-bottom: 30px;
  background: #ffffff;
  border: 2px solid #285260;
  color: #285260;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.back-btn:hover, .back-to-equipment-btn:hover {
  background: #285260;
  color: #ffffff;
}

.section-content {
  background: #ffffff;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #285260;
  margin-bottom: 20px;
  text-align: center;
}

.section-title-large {
  font-size: 2.5rem;
  font-weight: 700;
  color: #285260;
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.2;
}

.section-title-medium {
  font-size: 1.5rem;
  font-weight: 500;
  color: #285260;
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.2;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.informations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.informations-card {
  background: #f3eeea;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
}
.informations-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #285260;
  margin: 15px 0 10px;
}

.informations-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.informations-time {
  font-size: 1.3rem;
  font-weight: 700;
  color: #285260;
}

.informations-subtitle {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-top: 5px;
}

.info-box {
  background: #f3eeea;
  padding: 20px;
  border-radius: 15px;
  margin-top: 30px;
  border-left: 4px solid #285260;
}
.info-box p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.info-box-icon {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
}

.rules-grid,
.tips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 30px 0 50px;
}

.rule-card,
.tip-card {
  background: #f3eeea;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}
.rule-card h3,
.tip-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #285260;
  margin: 15px 0 10px;
}
.rule-card p,
.tip-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.rule-icon,
.tip-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.equipment-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.equipment-menu-card {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.equipment-menu-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.equipment-menu-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #285260;
  margin-top: 15px;
}

.equipment-menu-icon {
  font-size: 4rem;
  margin-bottom: 15px;
}

.equipment-section {
  margin: 50px 0;
  padding: 30px;
  background: #f3eeea;
  border-radius: 15px;
}

.equipment-header {
  text-align: center;
  margin-bottom: 30px;
}
.equipment-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #285260;
  margin-bottom: 10px;
}

.equipment-subtitle {
  font-size: 1.1rem;
  color: #666;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.steps-grid img {
  width: 100%;
}

.step-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.step-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #285260;
  margin: 15px 0 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  background: #285260;
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.activity-card {
  background: #f3eeea;
  padding: 25px;
  border-radius: 15px;
  transition: all 0.3s ease;
}
.activity-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}
.activity-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #285260;
  margin-bottom: 10px;
}
.activity-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
}

.activity-distance {
  font-size: 0.85rem;
  color: #285260;
  font-weight: 600;
  margin-bottom: 10px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.checkout-card {
  background: #f3eeea;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
}
.checkout-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #285260;
  margin-top: 15px;
}
.checkout-card p {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

.checkout-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.thankyou-section {
  margin-top: 60px;
  padding: 40px;
  background: linear-gradient(135deg, #f3eeea 0%, #e8f4ff 100%);
  border-radius: 15px;
  text-align: center;
}
.thankyou-section p {
  font-size: 1.05rem;
  color: #666;
  line-height: 1.8;
  margin: 15px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.thankyou-final {
  font-size: 1.2rem;
  font-weight: 700;
  color: #285260;
  margin-top: 30px;
}

.review-box {
  margin-top: 40px;
  padding: 30px;
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.review-box h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #285260;
  margin-bottom: 20px;
}
.review-box p {
  font-size: 1rem;
  color: #666;
  margin: 10px 0;
}

footer {
  background: #285260;
  color: #ffffff;
  padding: 30px 0;
  text-align: center;
  margin-top: 60px;
}
footer p {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 1.5rem;
  }
  .hero-circle {
    width: 150px;
    height: 150px;
  }
  .section-title-large {
    font-size: 1.8rem;
  }
  .section-content {
    padding: 25px;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .informations-grid,
  .rules-grid,
  .tips-grid,
  .steps-grid,
  .activities-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 40px 15px 30px;
  }
  .section-content {
    padding: 20px;
  }
  .lang-btn {
    padding: 6px 12px;
    font-size: 12px;
  }
}

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