
/* ================================
   GLOBAL RESET
================================ */
* {
  box-sizing: border-box; /* évite le scroll horizontal */
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  overflow-x: hidden; /* empêche scroll horizontal */
  font-family: 'Poppins', sans-serif;
  background-color: #f8f5f0;
  color: #1b2a41;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ================================
   CONTAINERS GLOBAL
================================ */
.container,
.ville-section,
.best-places,
.circuits-section,
.activities-photos,
.inspirations,
#inspirations-section,
.contact-section,
footer {
  padding-left: 15px;
  padding-right: 15px;
}

/* ================================
   HERO SECTION
================================ */
.hero {
  height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 0 15px;
}

.hero::before {
  content: "";
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.hero .btn {
  margin: 5px;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 600;
  position: relative;
  z-index: 2;
}

/* Hero Search */
.hero .search-bar {
  margin-top: 15px;
  max-width: 300px;
  width: 100%;
  display: flex;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  background-color: #fff;
}

.hero .search-bar input {
  flex: 1;
  padding: 10px 20px;
  border: none;
  font-size: 0.95rem;
  outline: none;
  border-radius: 30px 0 0 30px;
}

.hero .search-bar button {
  background-color: #8B5E3C;
  color: #fff;
  border: none;
  padding: 0 20px;
  font-weight: 600;
  cursor: pointer;
}

.hero .search-bar button:hover {
  background-color: #a67850;
}

/* ================================
   CUSTOM BUTTON
================================ */
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 50px;
  border: 2px solid #C2A959;
  background: linear-gradient(135deg, #C2A959 0%, #8B5E3C 100%);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.btn-custom:hover {
  background: linear-gradient(135deg, #8B5E3C 0%, #C2A959 100%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(194,169,89,0.4);
}

/* ================================
   VILLE SECTION
================================ */
.ville-section {
  padding: 60px 0;
  background-color: #f8f5f0;
}

.ville-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}

.ville-intro img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ville-intro img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.ville-intro .text { flex: 1; padding: 20px; }

/* ================================
   BEST PLACES SECTION
================================ */
.best-places {
  margin-bottom: 50px;
}

.best-places .card {
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  margin-bottom: 25px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.best-places .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.best-places .card img {
  height: 300px;
  object-fit: cover;
}

.best-places .card-title {
  color: #8B5E3C;
  font-weight: 600;
  font-size: 1.1rem;
  margin: 10px 0 5px 0;
}

.best-places .card-text {
  font-size: 0.95rem;
  color: #4b3b2a;
  line-height: 1.5;
}

/* ================================
   CIRCUITS SECTION
================================ */
.circuits-section .card {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
  background: #fff;
  cursor: pointer;
}

.circuits-section .card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.circuits-section .card-body h5 {
  color: #8B5E3C;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.circuits-section .card-body p {
  font-size: 0.95rem;
  color: #4b3b2a;
  line-height: 1.5;
}

.circuit-img-container {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.circuit-img-container .circuit-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ================================
   ACTIVITIES SECTION
================================ */
.activities-photos {
  padding: 50px 0;
}

.activities-photos .row {
  margin-left: 0;
  margin-right: 0;
}

.activities-photos .activity-photo-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  margin-bottom: 25px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.activities-photos .activity-photo-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.activity-photo-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.activity-photo-card .content {
  padding: 22px 24px;
  text-align: center;
}

/* ================================
   PAGE TITLES
================================ */
.page-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #1b2a41;
}

.page-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #C79663, #8B5E3C);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .hero h1 { font-size: 2.5rem; }
  .hero .btn { padding: 8px 20px; font-size: 0.95rem; }
  .ville-intro { flex-direction: column; text-align: center; }
  .ville-intro .text { padding: 15px; }
}

@media (max-width: 768px) {
  .activities-photos .row { row-gap: 30px; }
}

@media (max-width: 576px) {
  body { font-size: 0.95rem; }
  .hero { height: 40vh; padding: 0 15px; }
  .hero h1 { font-size: 1.8rem; }
  .hero .btn, .btn-custom { width: 100%; padding: 10px 0; margin: 5px auto; }
  .activities-photos { padding: 40px 15px; }
  .activity-photo-card .content { padding: 15px; }
  .ville-intro img { max-width: 80%; margin: 0 auto; }
  .ville-intro{ max-width: 95%; margin: 0 auto; }
  .best-places, .circuits-section { padding: 0 15px; }
  .activity-photo-card img {  height: 300px;}
  .best-places .card img { height: 300px;}
}

