:root {
  --bg-dark: #0b1118;
  --text-main: #ffffff;
  --text-muted: #c8ced6;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-dark);
  color: var(--text-main);
}

/* HERO */
.hero {
  position: relative;
  /*min-height: 100vh;*/
  background: url('img/fond.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(11,17,24,0.35), rgba(11,17,24,0.9));
}

.hero-content {
  position: relative;
  max-width: 900px;
  text-align: center;
  padding: 4rem 2rem 1rem 2rem;
}

.logo {
  width: 260px;
  margin-bottom: 3rem;
}

.title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.separator {
  width: 60px;
  height: 2px;
  background: #ffffff;
  margin: 2rem auto;
}

.intro {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-muted);
}

/* CONTENT */
.content {
  padding: 2rem 2rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 4rem;
}

.trips {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}



.trip {
  max-width: 373px;
  background: #111822;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
  padding-bottom: 2rem;
}

.trip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.trip-info {
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
}

.trip-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.trip-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.trip-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Centrer le bloc si un seul voyage */
.trips > *:only-child {
  margin-left: auto;
  margin-right: auto;
  max-width: 480px; /* optionnel : limiter la largeur pour le centrer joliment */
}
.integrationForm {
  max-width: 1200px;
  margin: auto;
  background: #171b24;
  border-radius: 20px;
  padding: 2rem 0rem 2rem 2rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* FOOTER */
.footer {
  padding: 3rem 1rem 4rem;
  text-align: center;
}

.footer img {
  width: 120px;
  opacity: 0.9;
}

.button {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  color: #ffffff;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,0.6);
  background: transparent;

  transition: 
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
  
  margin: auto;
}

.center {text-align: center;}

.button:hover {
  background-color: #ffffff;
  color: #0b1118;
  border-color: #ffffff;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .logo { width: 200px; }
  .title { font-size: 2.6rem; }
  .intro { font-size: 0.9rem; }
  .content {padding : 1rem;}
  .section-title { margin-top: 2rem;margin-bottom: 2rem;}
  .integrationForm {
    padding: 0rem;
    
  }
}
