/* ============================================
   Voyages Étudiants — Travel agency style
   Unique CSS (anti-footprint)
   ============================================ */

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

body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background: #f4f7f8;
}

a { color: #00b8d4; text-decoration: none; }
a:hover { color: #00838f; }

img { max-width: 100%; height: auto; }

/* Layout */
.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Barre haute (agence style) ---- */
.agence-bar {
  background: #fff;
  border-bottom: 3px solid #00b8d4;
  padding: 14px 0;
}
.agence-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.agence-bar__logo {
  font-family: 'Poppins', 'Arial Black', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #00b8d4;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.agence-bar__logo span {
  color: #333;
  font-weight: 400;
}
.agence-bar__logo:hover { color: #00838f; text-decoration: none; }
.agence-bar__nav {
  display: flex;
  gap: 6px;
}
.agence-bar__nav a {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #00b8d4;
  padding: 6px 14px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background .2s;
}
.agence-bar__nav a:hover { background: #00838f; text-decoration: none; color: #fff; }

/* ---- Bandeau promo ---- */
.promo-strip {
  background: #00838f;
  color: #fff;
  text-align: center;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---- Zone principale ---- */
.agence-main {
  padding: 30px 0 50px;
}

/* ---- Grid cartes destinations (homepage) ---- */
.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.destinations-grid article {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow .2s, transform .15s;
  display: flex;
  flex-direction: column;
}
.destinations-grid article:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
  transform: translateY(-2px);
}
.destinations-grid article h2 {
  font-family: 'Poppins', 'Arial Black', sans-serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  padding: 16px 18px 4px;
}
.destinations-grid article h2 a { color: #333; }
.destinations-grid article h2 a:hover { color: #00b8d4; text-decoration: none; }
.destinations-grid article time {
  font-size: 11px;
  color: #999;
  padding: 0 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 8px;
}
.destinations-grid article p {
  font-size: 13px;
  color: #666;
  padding: 0 18px;
  flex: 1;
  line-height: 1.5;
}
.destinations-grid article a:last-child {
  display: block;
  text-align: center;
  background: #00b8d4;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 18px;
  margin: 14px 18px 18px;
  border-radius: 4px;
  transition: background .2s;
}
.destinations-grid article a:last-child:hover {
  background: #00838f;
  text-decoration: none;
  color: #fff;
}

/* ---- Page destination (article) ---- */
.destination {
  max-width: 740px;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 32px 36px 40px;
}
.destination__titre {
  font-family: 'Poppins', 'Arial Black', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #333;
  line-height: 1.25;
  margin-bottom: 8px;
}
.destination__meta {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid #00b8d4;
}
.destination__meta span { margin-right: 14px; }

.destination__corps {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
}
.destination__corps p { margin-bottom: 16px; }
.destination__corps h2 {
  font-family: 'Poppins', 'Arial Black', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #00838f;
  margin: 28px 0 12px;
}
.destination__corps h3 {
  font-size: 16px;
  font-weight: 700;
  color: #555;
  margin: 22px 0 8px;
}
.destination__corps ul, .destination__corps ol {
  margin: 0 0 16px 20px;
  color: #555;
}
.destination__corps li { margin-bottom: 5px; }
.destination__corps blockquote {
  margin: 20px 0;
  padding: 16px 20px;
  background: #e0f7fa;
  border-left: 4px solid #00b8d4;
  color: #555;
  font-style: italic;
  border-radius: 0 4px 4px 0;
}

/* CTA box dans les articles */
.destination__cta {
  margin-top: 30px;
  padding: 20px 24px;
  background: linear-gradient(135deg, #00b8d4 0%, #00838f 100%);
  border-radius: 6px;
  text-align: center;
  color: #fff;
}
.destination__cta strong {
  display: block;
  font-size: 17px;
  margin-bottom: 6px;
}
.destination__cta span {
  font-size: 13px;
  opacity: 0.9;
}

/* Pied article */
.destination__fin {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}
.destination__tags {
  font-size: 11px;
  color: #bbb;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

/* Voir aussi */
.destination__aussi { margin-top: 12px; }
.destination__aussi strong {
  font-size: 13px;
  font-weight: 700;
  color: #00838f;
}
.destination__aussi ul { list-style: none; padding: 0; margin-top: 6px; }
.destination__aussi li {
  padding: 4px 0;
  font-size: 14px;
}
.destination__aussi li::before {
  content: "✈ ";
  color: #00b8d4;
}

/* ---- Footer ---- */
.agence-footer {
  background: #263238;
  color: #90a4ae;
  padding: 24px 0;
  text-align: center;
  font-size: 12px;
}
.agence-footer a { color: #4dd0e1; }
.agence-footer__bio {
  margin-top: 4px;
  font-size: 11px;
  color: #607d8b;
}

/* ---- Responsive ---- */
@media (max-width: 640px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .agence-bar__inner { flex-direction: column; text-align: center; }
  .agence-bar__nav { flex-wrap: wrap; justify-content: center; }
  .destination { padding: 20px 18px 28px; }
  .destination__titre { font-size: 22px; }
  .container { padding: 0 14px; }
}
