/* ================================================
   THE FRENCH COMPANY — LONDON
   Feuille de style principale
   Couleur accent : #C8102E (Rouge britannique)
   Police : Montserrat (proche de CamptonBook)
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500&display=swap');

/* ——— VARIABLES ——— */
:root {
  --accent:       #C8102E;
  --accent-dark:  #9E0A22;
  --accent-light: rgba(200,16,46,0.08);
  --dark:         #222222;
  --dark-med:     #333333;
  --gray:         #6d6d6d;
  --light-gray:   #f0efeb;
  --off-white:    #FAF9F5;
  --white:        #FFFFFF;
  --font:         'Montserrat', sans-serif;
  --shadow:       0 4px 30px rgba(0,0,0,0.09);
  --shadow-lg:    0 12px 50px rgba(0,0,0,0.16);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.75;
}

img { max-width: 100%; display: block; }

a { transition: color 0.3s; }

/* ================================================
   TOP BAR
   ================================================ */
.top-bar {
  background-color: var(--off-white);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 8px 0;
  font-size: 13px;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar a {
  color: var(--gray);
  text-decoration: none;
  margin-right: 22px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.top-bar a:hover { color: var(--accent); }
.top-bar-social a { margin-right: 14px; font-size: 15px; }

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  background-color: var(--white) !important;
  box-shadow: 0 2px 22px rgba(0,0,0,0.07);
  padding: 12px 0;
}
.navbar-brand { padding: 0; }
.logo-svg { height: 58px; width: auto; }

.navbar-nav .nav-link {
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  transition: color 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--accent) !important; }

.nav-miami {
  color: #E9528B !important;
  border: 1.5px solid #E9528B;
  border-radius: 2px;
  padding: 6px 14px !important;
  margin-left: 6px;
}
.nav-miami:hover { background-color: #E9528B; color: white !important; }

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 45px rgba(0,0,0,0.13);
  border-radius: 0;
  border-top: 3px solid var(--accent);
  padding: 8px 0;
  min-width: 240px;
}
.dropdown-item {
  font-size: 13px;
  font-weight: 500;
  padding: 9px 22px;
  color: var(--dark-med);
  transition: all 0.2s;
  letter-spacing: 0.3px;
}
.dropdown-item:hover {
  background-color: var(--accent-light);
  color: var(--accent);
  padding-left: 28px;
}

/* ================================================
   HERO SLIDER
   ================================================ */
.hero-slider {
  position: relative;
  height: 88vh;
  min-height: 520px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.3s ease-in-out;
}
.slide.active { opacity: 1; }
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.32) 100%);
}
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 92%;
  max-width: 960px;
}
.slide-eyebrow {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  opacity: 0.85;
}
.slide-title {
  font-size: clamp(52px, 9vw, 100px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: white;
  margin-bottom: 14px;
}
.slide-sub {
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 38px;
  opacity: 0.88;
}
.btn-hero {
  display: inline-block;
  padding: 14px 44px;
  border: 2px solid white;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
}
.btn-hero:hover {
  background-color: var(--accent);
  border-color: var(--accent);
  color: white;
}
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.7);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
.dot.active {
  background-color: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

/* ================================================
   SHARED SECTION HEADERS
   ================================================ */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 18px;
}
.section-title span { color: var(--accent); }
.section-text {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.85;
  max-width: 680px;
}
.divider {
  width: 55px; height: 3px;
  background-color: var(--accent);
  margin: 18px auto;
}
.divider-left { margin-left: 0; }

/* ================================================
   INTRO SECTION
   ================================================ */
.intro-section { padding: 90px 0; background-color: var(--white); }
.intro-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* ================================================
   FEATURES BAR
   ================================================ */
.features-bar { background-color: var(--dark); padding: 65px 0; }
.feature-item { text-align: center; padding: 15px 20px; }
.feature-icon-wrap {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 50%;
}
.feature-icon-wrap svg { width: 36px; height: 36px; }
.feature-title { color: white; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-text { color: rgba(255,255,255,0.6); font-size: 13px; font-style: italic; line-height: 1.6; }

/* ================================================
   TOURS SECTION
   ================================================ */
.tours-section { padding: 90px 0; background-color: var(--off-white); }
.tour-card {
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.35s, box-shadow 0.35s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.tour-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.tour-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.tour-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.tour-card:hover .tour-card-img img { transform: scale(1.07); }
.tour-tag {
  position: absolute;
  top: 14px; right: 14px;
  background-color: var(--accent);
  color: white;
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 5px 13px;
}
.tour-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tour-card-title {
  font-size: 18px; font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.tour-card-title a { color: inherit; text-decoration: none; }
.tour-card-title a:hover { color: var(--accent); }
.tour-card-text { color: var(--gray); font-size: 14px; line-height: 1.7; flex: 1; margin-bottom: 22px; }
.btn-card {
  display: inline-block;
  padding: 10px 26px;
  border: 2px solid var(--accent);
  color: var(--accent);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  align-self: flex-start;
}
.btn-card:hover { background-color: var(--accent); color: white; }

/* ================================================
   QUOTE SECTION
   ================================================ */
.quote-section { padding: 85px 0; background-color: var(--dark); text-align: center; }
.quote-text {
  font-size: clamp(19px, 3vw, 30px);
  color: white; font-weight: 300; font-style: italic;
  line-height: 1.6;
  max-width: 820px; margin: 0 auto;
}
.quote-text em { color: var(--accent); font-style: normal; font-weight: 600; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-section { padding: 90px 0; background-color: var(--white); }
.testimonial-card {
  background: var(--off-white);
  padding: 35px;
  border-left: 4px solid var(--accent);
  height: 100%;
}
.stars { color: var(--accent); font-size: 17px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text {
  font-style: italic; color: var(--dark-med);
  font-size: 14px; line-height: 1.75; margin-bottom: 20px;
}
.testimonial-author { font-weight: 700; font-size: 13px; color: var(--dark); letter-spacing: 1px; text-transform: uppercase; }

/* ================================================
   BLOG SECTION
   ================================================ */
.blog-section { padding: 90px 0; background-color: var(--off-white); }
.blog-card {
  background: white;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%; display: flex; flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card-img { height: 210px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-category {
  font-size: 10px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.blog-card-title { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 12px; line-height: 1.4; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--accent); }
.blog-excerpt { color: var(--gray); font-size: 14px; line-height: 1.65; flex: 1; }

/* ================================================
   FOOTER
   ================================================ */
footer { background-color: #1a1a1a; color: rgba(255,255,255,0.65); padding: 70px 0 0; }
.footer-logo-wrap { margin-bottom: 22px; }
.footer-contact a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 13px; display: flex; align-items: center; gap: 8px;
  margin-bottom: 9px; transition: color 0.3s;
}
.footer-contact a:hover { color: var(--accent); }
.footer-heading {
  color: white; font-size: 12px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  margin-bottom: 22px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.65); text-decoration: none;
  font-size: 13px; transition: color 0.3s;
}
.footer-links a:hover { color: var(--accent); }
.footer-social { display: flex; gap: 16px; margin-top: 20px; }
.footer-social a {
  color: rgba(255,255,255,0.55); font-size: 18px;
  transition: color 0.3s; text-decoration: none;
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.footer-social a:hover { color: var(--accent); border-color: var(--accent); }
.footer-bottom {
  background-color: rgba(0,0,0,0.3);
  padding: 20px 0; margin-top: 50px;
  text-align: center; font-size: 12px;
  letter-spacing: 0.5px;
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; margin: 0 12px; transition: color 0.3s; }
.footer-bottom a:hover { color: var(--accent); }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 130px 0 80px;
  color: white;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(170deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.38) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(36px, 6vw, 68px); font-weight: 800; color: white; margin-bottom: 12px; line-height: 1.05; }
.breadcrumb-nav { font-size: 13px; }
.breadcrumb-nav a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb-nav a:hover { color: white; }
.breadcrumb-nav span { color: var(--accent); }
.breadcrumb-sep { margin: 0 8px; opacity: 0.5; }

/* ================================================
   TOUR PAGE LAYOUT
   ================================================ */
.tour-main { padding: 70px 0; }
.tour-body h2 { font-size: 26px; font-weight: 700; color: var(--dark); margin: 35px 0 15px; }
.tour-body h3 { font-size: 20px; font-weight: 600; color: var(--dark-med); margin: 25px 0 10px; }
.tour-body p { color: var(--gray); font-size: 15px; line-height: 1.8; margin-bottom: 18px; }
.tour-highlights { list-style: none; margin: 0 0 25px; }
.tour-highlights li {
  padding: 9px 0 9px 28px; position: relative;
  color: var(--dark-med); font-size: 14px; font-weight: 500;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.tour-highlights li::before {
  content: '✦'; position: absolute; left: 0; top: 11px;
  color: var(--accent); font-size: 11px;
}

/* Sidebar */
.tour-sidebar {
  background: var(--off-white);
  border-top: 4px solid var(--accent);
  padding: 32px;
  position: sticky; top: 100px;
}
.sidebar-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--dark); margin-bottom: 24px; }
.info-row {
  display: flex; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  align-items: flex-start;
}
.info-row:last-of-type { border-bottom: none; margin-bottom: 4px; }
.info-icon { font-size: 20px; color: var(--accent); flex-shrink: 0; width: 28px; text-align: center; margin-top: 2px; }
.info-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 3px; }
.info-value { font-size: 14px; font-weight: 600; color: var(--dark); }
.btn-reserve {
  display: block; width: 100%;
  padding: 16px;
  background-color: var(--accent); color: white;
  text-align: center; font-size: 12px;
  font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; text-decoration: none;
  transition: background-color 0.3s; margin-top: 24px;
}
.btn-reserve:hover { background-color: var(--accent-dark); color: white; }
.btn-contact-sidebar {
  display: block; width: 100%;
  padding: 13px; margin-top: 10px;
  border: 2px solid var(--dark);
  color: var(--dark); text-align: center;
  font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
}
.btn-contact-sidebar:hover { background-color: var(--dark); color: white; }

/* Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px; margin-top: 50px;
}
.photo-gallery img { width: 100%; height: 185px; object-fit: cover; transition: opacity 0.3s; cursor: pointer; }
.photo-gallery img:hover { opacity: 0.88; }

/* ================================================
   CONTACT FORM
   ================================================ */
.contact-section { padding: 80px 0; }
.contact-info-box { background: var(--off-white); padding: 40px; border-top: 4px solid var(--accent); }
.contact-info-box h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 25px; }
.contact-info-item { display: flex; gap: 16px; margin-bottom: 22px; align-items: flex-start; }
.contact-info-icon { font-size: 22px; color: var(--accent); flex-shrink: 0; }
.contact-info-item a { color: var(--dark-med); text-decoration: none; font-size: 14px; }
.contact-info-item a:hover { color: var(--accent); }
.form-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--dark); margin-bottom: 6px; }
.form-control {
  border: 1.5px solid rgba(0,0,0,0.12); border-radius: 0;
  padding: 13px 16px; font-family: var(--font); font-size: 14px;
  color: var(--dark); width: 100%;
  transition: border-color 0.3s;
}
.form-control:focus { outline: none; border-color: var(--accent); box-shadow: none; }
.btn-submit {
  padding: 15px 45px;
  background-color: var(--accent); color: white;
  border: none; font-family: var(--font);
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  cursor: pointer; transition: background-color 0.3s;
}
.btn-submit:hover { background-color: var(--accent-dark); }

/* ================================================
   BLOG PAGE
   ================================================ */
.blog-page { padding: 80px 0; }
.blog-full-card { background: white; overflow: hidden; box-shadow: var(--shadow); margin-bottom: 40px; }
.blog-full-card-img { height: 300px; overflow: hidden; }
.blog-full-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-full-card:hover .blog-full-card-img img { transform: scale(1.04); }
.blog-full-card-body { padding: 35px 40px; }
.blog-date { font-size: 12px; color: var(--gray); letter-spacing: 1px; margin-bottom: 10px; }
.blog-full-title { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 14px; }
.blog-full-title a { color: inherit; text-decoration: none; }
.blog-full-title a:hover { color: var(--accent); }
.blog-full-excerpt { color: var(--gray); font-size: 15px; line-height: 1.75; margin-bottom: 22px; }
.btn-read-more {
  display: inline-block; padding: 10px 28px;
  border: 2px solid var(--accent); color: var(--accent);
  font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
}
.btn-read-more:hover { background: var(--accent); color: white; }

/* ================================================
   VUE D'ENSEMBLE
   ================================================ */
.overview-section { padding: 80px 0; }
.overview-card {
  display: flex; flex-direction: column;
  background: white; overflow: hidden;
  box-shadow: var(--shadow); height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.overview-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.overview-card-img { height: 260px; overflow: hidden; }
.overview-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.overview-card:hover .overview-card-img img { transform: scale(1.06); }
.overview-card-body { padding: 30px; flex: 1; display: flex; flex-direction: column; }
.overview-card-title { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.overview-card-text { color: var(--gray); font-size: 14px; line-height: 1.7; flex: 1; margin-bottom: 24px; }
.overview-card-meta { display: flex; gap: 20px; margin-bottom: 22px; }
.meta-item { font-size: 12px; color: var(--gray); }
.meta-item strong { color: var(--dark); display: block; font-size: 14px; }

/* ================================================
   CONSEILS PAGE
   ================================================ */
.conseils-section { padding: 80px 0; }
.conseil-block { margin-bottom: 60px; }
.conseil-block h2 { font-size: 24px; font-weight: 700; color: var(--dark); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--accent-light); }
.conseil-item { display: flex; gap: 16px; margin-bottom: 20px; align-items: flex-start; }
.conseil-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background-color: var(--accent); color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.conseil-text h4 { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 5px; }
.conseil-text p { color: var(--gray); font-size: 14px; line-height: 1.7; }
.tip-box {
  background: var(--off-white);
  border-left: 4px solid var(--accent);
  padding: 22px 26px; margin: 30px 0;
}
.tip-box p { font-style: italic; color: var(--dark-med); font-size: 15px; margin: 0; }

/* ================================================
   ACCUEIL PERSONNALISÉ
   ================================================ */
.accueil-section { padding: 80px 0; }
.service-card {
  text-align: center; padding: 45px 30px;
  background: var(--off-white);
  border-bottom: 3px solid var(--accent);
  transition: transform 0.3s;
  height: 100%;
}
.service-card:hover { transform: translateY(-4px); }
.service-icon { font-size: 48px; margin-bottom: 20px; }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.service-card p { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* ================================================
   QUI SOMMES-NOUS
   ================================================ */
.about-section { padding: 80px 0; }
.about-lead { font-size: 18px; font-weight: 300; color: var(--dark-med); line-height: 1.8; margin-bottom: 30px; }
.about-img { width: 100%; height: 400px; object-fit: cover; }
.value-card {
  padding: 30px; background: var(--off-white);
  border-top: 3px solid var(--accent);
  height: 100%;
}
.value-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.value-card p { color: var(--gray); font-size: 14px; line-height: 1.65; }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 991px) {
  .tour-sidebar { position: static; margin-top: 40px; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .hero-slider { height: 72vh; }
  .slide-title { font-size: 52px; }
  .top-bar { display: none !important; }
  .intro-image { height: 320px; }
  .photo-gallery { grid-template-columns: repeat(2, 1fr); }
  .blog-full-card-body { padding: 25px; }
  .footer-heading { margin-top: 30px; }
}
@media (max-width: 576px) {
  .photo-gallery { grid-template-columns: 1fr 1fr; }
  .slide-title { font-size: 40px; }
}
