:root {
  --rouge: #D32F2F; /* Inspiré du logo */
  --darkred: #7B1E1E;
  --bleu: rgb(0, 47, 95);  /* Inspiré du logo */
  --or: #FFC107;
  --blanc: #ffffff;
  --gris: #f4f4f4;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
  }
  
  body {
    color: #333;
    line-height: 1.6;
    font-family: Arial,Helvetica,sans-serif;
  }
  
  .container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
  }
  
  /* HEADER */
  .header {
    background: #fff;
    border-bottom: 1px solid #eee;
    position: sticky; top: 0; z-index: 100;
  }
  
  .header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
  }
  
  .logo-container { display: flex; align-items: center; }
  .header-logo { height: 60px; width: auto; margin-right: 15px; } /* Ajuste la taille de votre logo */
  .logo-text { font-weight: bold; font-size: .8rem; color: var(--primary-red); text-transform: uppercase; 
  }


  .nav a {
    margin-left: 15px;
    text-decoration: none;
    color: rgb(0, 47, 95);
    font-weight: medium;
    font-style: capitalize;
    font-size: .8rem;
  }
  
  .lang {
    margin-left: 15px;
    color: #555;
  }
  
  /* HERO */
  .hero {
    /*background: linear-gradient(rgba(123,30,30,0.85), rgba(123,30,30,0.85)),
                url("../images/hero.jpg") center/cover no-repeat; */
    color: #fff;
    padding: 80px 0;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .hero-buttons .btn {
    margin: 10px;
  }

  /* Slides Background */
/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
}

.slides {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  background: rgba(123, 30, 30, 0.15); /* overlay for readability */
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  text-shadow: #000 1px 1px 4px;
  text-align: center;
}

.hero-content p {
  max-width: 750px;
  margin: 0 auto 30px;
  text-shadow: #000 1px 1px 4px;
}
.hero-title {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  margin-bottom: 15px;
  text-align: center;
} 


  /* SECTIONS */
  .section {
    padding: 60px 0;
  }
  
  .section.gray {
    background: #f5f5f5;
  }
  
  .section h2 {
    margin-bottom: 20px;
    color: rgb(0, 47, 95);
    text-align: center;
    font-size: 2rem;
  }
  
  /* CARDS */
  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }
  
  .card {
    background: #fff;
    padding: 20px;
    border-left: 5px solid #1d71b8;
  }
  
  /* SERVICES */
  .services {
    list-style: none;
    margin-top: 20px;
  }
  
  .services li {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .note {
    margin-top: 15px;
    font-style: italic;
  }
  
  
  /* BUTTONS */
  .btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: medium;
  }
  
  .btn.primary {
    background: #f1c40f;
    color: #000;
  }
  :hover.btn.primary{
    background: #7b1e1e;
    color: #ccc;
  }
  
  .btn.secondary {
    border: Opx solid #fff;
    color: #fff;
    background: rgb(0, 47, 95, 0.75);
  }
  :hover.btn.secondary {
    border: Opx solid #fff;
    background: rgba(1, 39, 77, 0.623);
  }
  
  /* ACTIVITÉS - CARDS */
.activity-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.activity-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.activity-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.activity-content {
  padding: 20px;
}

.activity-content h3 {
  color: #7b1e1e;
  margin-bottom: 10px;
}

.activity-content p {
  font-size: 0.95rem;
  color: #555;
}

/* SECTEURS D'ACTIVITÉS */
.sectors {
  background: #faf7f2;
  padding: 90px 0;
  text-align: center;
}

.sectors-title {
  letter-spacing: 4px;
  font-size: 1.4rem;
  color: rgb(0, 47, 95);
  margin-bottom: 80px;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 80px;
}

.sector h3 {
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: #2365a7;
  margin-bottom: 20px;
}

.sector p {
  max-width: 300px;
  margin: 0 auto 15px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.sector a,
.sector-bottom a {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #a97c50;
  text-decoration: none;
}

.sector a,
.sector-right a {
  font-size: 0.8rem;
  letter-spacing: 2px;
  color: #a97c50;
  text-decoration: none;
}
.sector a:hover,
.sector-bottom a:hover {
  text-decoration: underline;
  color: #002f5f;
}

.sector a:hover,
.sector-right a:hover {
  text-decoration: underline;
  color: #002f5f;
}

/** HOTELLERIE & RESTAURATION */
/* --- TYPOGRAPHIE ET BASES --- */
#hotellerie {
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  margin-bottom: 10px;
}
.title-serif {
  font-size: 2.8rem;
  color: #333;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.subtitle-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* --- GALERIE HOTELLERIE (GRID) --- */
.hotel-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.02);
}

/* Positionnement pour imiter l'image HOTREST.png */
.item-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
.item-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
.item-3 { grid-column: 3 / 5; grid-row: 1 / 3; } /* Grande image cloche */
.item-4 { grid-column: 1 / 2; grid-row: 2 / 3; }
.item-5 { grid-column: 2 / 3; grid-row: 2 / 3; }
.item-6 { grid-column: 3 / 5; grid-row: 3 / 4; } /* Salle rouge */
.item-7 { grid-column: 1 / 3; grid-row: 3 / 4; } /* Chambre bas */

/*ABOUT*/
#ftd-about-intro {
  padding: 80px 20px;

}

#ftd-about-intro .ftd-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

#ftd-about-intro h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
#ftd-about-intro h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
#ftd-about-intro .ftd-highlight {
  font-size: 1rem;
  color: #0b3c5d;
  margin-bottom: 20px;
}

#ftd-about-intro img {
  width: 100%;
  border-radius: 6px;
}

@media (max-width: 900px) {
  #ftd-about-intro .ftd-container {
    grid-template-columns: 1fr;
  }
}

/*OBJECTIFS*/
#ftd-about-objectives {
  padding: 80px 20px;
}

#ftd-about-objectives .ftd-container {
  max-width: 1200px;
  margin: auto;
}

#ftd-about-objectives h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 80px;
  color: rgb(0, 47, 95);
}

#ftd-about-objectives .ftd-objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Card base */
#ftd-about-objectives .ftd-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Image */
#ftd-about-objectives .ftd-card-image {
  overflow: hidden;
}

#ftd-about-objectives .ftd-card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* Content */
#ftd-about-objectives .ftd-card-content {
  padding: 25px;
}

#ftd-about-objectives .ftd-card-content h3 {
  margin-bottom: 12px;
  color: #0b3c5d;
  transition: color 0.3s ease;
}

/* Hover effects */
#ftd-about-objectives .ftd-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

#ftd-about-objectives .ftd-card:hover img {
  transform: scale(1.08);
}

#ftd-about-objectives .ftd-card:hover h3 {
  color: #0fb9b1;
}

/* Responsive */
@media (max-width: 900px) {
  #ftd-about-objectives .ftd-objectives-grid {
    grid-template-columns: 1fr;
  }
}


/*VISION IMPACT*/
#ftd-about-vision {
  background: #f2f6f8;
  padding: 80px 20px;
}

#ftd-about-vision .ftd-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

#ftd-about-vision img {
  width: 100%;
  border-radius: 6px;
}

@media (max-width: 900px) {
  #ftd-about-vision .ftd-container {
    grid-template-columns: 1fr;
  }
}


/* Bottom sector */
.sector-bottom {
  border-top: 1px solid #ddd;
  padding-top: 40px;
  max-width: 500px;
  margin: auto;
}

.sector-right {
  border-right: 1px solid #ddd;
  padding-top: 40px;
  max-width: 500px;
  margin: auto;
}
.sector-right {
  border-right: #ddd 1px solid;
  padding-right: 40px;
}

.sector-right h3 {
  font-size: 1.2rem;
  letter-spacing: 1px;
  color: #2365a7;
  margin-bottom: 20px;
}

.sector-right p {
  color: #555;
  margin-bottom: 10px;
}

.sector-bottom h3 {
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: #2365a7;
  margin-bottom: 20px;
}

.sector-bottom p {
  color: #555;
  margin-bottom: 15px;
}

/* Footer slide show */

#ftd-activities-slider {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  background-color: #002f5f;
  height: 400px;
  transition: background-color 0.6s ease;
}

#ftd-activities-slider .ftd-wrapper {
  max-width: 1200px;
  max-height: 450px;
  margin: auto;
  position: relative;
}

#ftd-activities-slider .ftd-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  opacity: 0;
  transform: translateX(40px);
  pointer-events: none;

  transition: opacity 0.6s ease, transform 0.6s ease;
}

#ftd-activities-slider .ftd-item.ftd-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}

#ftd-activities-slider .ftd-text h1 {
  color: #ffffff;
  font-size: 2.3rem;
  font-weight: 300;
}

#ftd-activities-slider .ftd-image img {
  max-width: 300px;
  border-radius: 4px;
}

/* Arrows */
#ftd-activities-slider .ftd-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

#ftd-activities-slider .ftd-left { left: 20px; }
#ftd-activities-slider .ftd-right { right: 20px; }

/* Dots */
#ftd-activities-slider .ftd-indicators {
  text-align: center;
  margin-top: 30px;
}

#ftd-activities-slider .ftd-dot {
  width: 8px;
  height: 8px;
  margin: 0 4px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  display: inline-block;
}

#ftd-activities-slider .ftd-dot.ftd-active {
  background: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  #ftd-activities-slider .ftd-item {
    flex-direction: column;
    text-align: center;
  }
}


  /* CTA */
  #ftd-cta {
    background-image: url("../images/hero12.jpg");
    min-height: 420px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #ftd-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(248, 243, 243, 0.15);
  }
  
  #ftd-cta .ftd-cta-overlay {
    position: relative;
    text-align: center;
    max-width: 900px;
    padding: 40px;
  }
  
  #ftd-cta h2 {
    font-size: 1.9rem;
    letter-spacing: 1px;
    color: #f1c40f;
    margin-bottom: 15px;
    text-shadow: #000 1px 1px 4px;
  }
  
  #ftd-cta p {
    color: #fcfcfc;
    margin-bottom: 25px;
  }
  
  #ftd-cta .ftd-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #0b3c5d;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background 0.3s ease;
  }
  
  #ftd-cta .ftd-cta-btn:hover {
    background: #092f49;
  }

/*PARTNER*/
/* --- Section Partenaires --- */
#partenaires {
  background-color: #ffffff;
  padding: 60px 0;
  text-align: center;
}
.partners-slider {
  overflow: hidden;
  padding: 20px 0;
  position: relative;
}

.partners-track {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap; /* Ou animation de défilement */
  gap: 30px;
}

.partner-logo {
  width: 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0px solid #eee; /* Style des boites dans PART.png */
  padding: 10px;
  transition: transform 0.3s;
}

.partner-logo img {
  max-width: 90%;
  filter: grayscale(10%); /* Optionnel : logos en gris qui s'allument au survol */
  opacity: 0.7;
  transition: 0.3s;
}

.partner-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}


/*MAIN CONTENT*/
.main-content {
  padding: 60px 0;
  background-color: #f9f9f9;
}
.fdt-intro {
  text-align: center;
  margin-bottom: 40px;
}
.fdt-intro h2 {
  font-size: 2rem;
  color: rgb(0, 47, 95);
  margin-bottom: 15px;
}
.fdt-intro p {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}
.section-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.section-content .content-card {
  background: #fff;
  padding: 20px;
  border-left: 5px solid #1d71b8;
  flex: 1 1 300px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.section-content .content-card h3 {
  color: #2365a7;
  margin-bottom: 10px;
}
.section-content .content-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}
.section-content .content-card ul {
  list-style: disc inside;
  margin-top: 10px;
}
.section-content .content-card ul li {
  margin-bottom: 8px;
  color: #555;
}
.section-content .content-card a {
  display: inline-block;
  margin-top: 15px;
  color: #a97c50;
  text-decoration: none;
  font-size: 0.9rem;
}
.section-content .content-card a:hover {
  text-decoration: underline;
  color: #002f5f;
}
.section-content .content-card.note {
  font-style: italic;
  color: #777;
}
.section-content .content-card.note a {
  color: #555;
}
.section-content .content-card.note a:hover {
  color: #002f5f;
}
.section-padding {
  padding: 0 20px;
}

.banner{
  text-align: center;
  padding: 40px;
  color: #D32F2F;
  text-shadow: #2f2f2f 1px 1px 1px;
}
/* --- DONATION --- */
/* ===== MAIN ===== */
.ftd-main {
  padding: 80px 20px;
  font-family: Arial, sans-serif;
}

/* ===== ACTION CARDS ===== */
.ftd-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  text-align: center;
  margin-bottom: 80px;
}

.ftd-action-card {
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ftd-action-card img {
  width: 50px;
  margin-bottom: 20px;
}

.ftd-action-card h3 {
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.ftd-action-card p {
  font-size: 14px;
  color: #555;
}

.ftd-action-card a {
  display: inline-block;
  margin-top: 15px;
  font-size: 13px;
  color: #0b3c5d;
  text-decoration: none;
}

.ftd-action-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* ===== HELP TEXT ===== */
.ftd-help-text {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.ftd-help-text h2 {
  letter-spacing: 3px;
  margin-bottom: 20px;
}

/* ===== IMAGE STRIP ===== */
.ftd-image-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin-bottom: 80px;
}

.ftd-image-strip img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* ===== CONTACT & DONATION ===== */
.ftd-dual-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 60px;
  width: 1200px;
  margin: 0 auto;
}

.ftd-contact h3,
.ftd-donation h3 {
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.ftd-contact form input,
.ftd-contact form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
}

.ftd-contact button {
  padding: 12px;
  border: none;
  background: #0b3c5d;
  color: #fff;
  cursor: pointer;
}

.ftd-contact button:hover {
  background: #092f4a;
}

.ftd-donation {
  background: #f4f4f4;
  padding: 40px;
  text-align: center;
}

.ftd-donate-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: #0b3c5d;
  color: #fff;
}

/* ===== DONATION SUCCESS ===== */
.ftd-donation-success {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f8fb;
  padding: 40px 20px;
}

.ftd-success-box {
  background: #ffffff;
  padding: 50px 30px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ftd-success-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

/* DONATION CANCELLED */
.ftd-donation-cancel {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7f9fc;
  padding: 40px 20px;
}

.ftd-cancel-box {
  background: #ffffff;
  padding: 50px 30px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ftd-cancel-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.ftd-cancel-actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* THANK YOU PAGE */
.ftd-thank-you {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f8fb;
  padding: 40px 20px;
}

.ftd-thank-box {
  background: #ffffff;
  padding: 50px 30px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.ftd-thank-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

/* ===== GALLERY PAGE ===== */
.ftd-gallery {
  padding: 60px 20px;
}

.ftd-gallery-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.ftd-gallery-event {
  margin-bottom: 70px;
}

.ftd-gallery-event h2 {
  margin-bottom: 15px;
  color: #0b3c5d;
}

/* ===== SLIDER ===== */
.ftd-event-slider {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.ftd-event-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.ftd-event-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
  height: 420px;
}

/* Buttons */
.ftd-slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  font-size: 28px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 50%;
}

.ftd-slide-btn.prev {
  left: 15px;
}

.ftd-slide-btn.next {
  right: 15px;
}

.ftd-slide-btn:hover {
  background: rgba(0,0,0,0.7);
}


/* CANADA */
/* ======================================
   FTD CANADA PAGE – NAMESPACED CSS
   Prefix used: ftdca-
   Prevents conflicts with existing site styles
   ====================================== */

/* Main wrapper */
.ftdca-wrapper {
  /*color: #1a1a1a;*/
  background-color: #ffffff;
}

/* ======================================
   HERO SECTION
   ====================================== */

.ftdca-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ftdca-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.65);
}

.ftdca-hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

.ftdca-hero-title {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 15px;
}

.ftdca-hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
}

/* ======================================
   SECTION BASE
   ====================================== */

.ftdca-section {
  padding: 70px 20px;
}

.ftdca-section-alt {
  background-color: #f4f8fb;
}

.ftdca-container {
  max-width: 1200px;
  margin: 0 auto;
}

.ftdca-section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
  color: #003366;
}

/* ======================================
   TWO COLUMN LAYOUT
   ====================================== */

.ftdca-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ftdca-two-col-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.ftdca-two-col-text {
  line-height: 1.7;
}

/* ======================================
   IMPACT CARDS
   ====================================== */

.ftdca-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.ftdca-impact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ftdca-impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.ftdca-impact-number {
  font-size: 36px;
  font-weight: bold;
  color: #1D71B8;
  margin-bottom: 10px;
}

.ftdca-impact-text {
  font-size: 16px;
}

/* ======================================
   PROGRAM CARDS
   ====================================== */

.ftdca-program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.ftdca-program-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ftdca-program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.ftdca-program-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.ftdca-program-content {
  padding: 20px;
}

.ftdca-program-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #003366;
}

.ftdca-program-text {
  font-size: 16px;
  line-height: 1.6;
}

/* ======================================
   CTA SECTION
   ====================================== */

.ftdca-cta {
  background: linear-gradient(135deg, #003366, #1D71B8);
  color: #ffffff;
  text-align: center;
  padding: 70px 20px;
}

.ftdca-cta-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.ftdca-cta-text {
  font-size: 18px;
  margin-bottom: 30px;
}

.ftdca-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.ftdca-btn-primary {
  background: #ffffff;
  color: #003366;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.ftdca-btn-primary:hover {
  background: #f0f0f0;
}

.ftdca-btn-secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.ftdca-btn-secondary:hover {
  background: #ffffff;
  color: #003366;
}

/* ======================================
   RESPONSIVE
   ====================================== */

@media (max-width: 992px) {
  .ftdca-two-col {
    grid-template-columns: 1fr;
  }

  .ftdca-hero-title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .ftdca-hero {
    height: 400px;
  }

  .ftdca-hero-title {
    font-size: 26px;
  }

  .ftdca-hero-subtitle {
    font-size: 16px;
  }
}


/* Mobile */
@media (max-width: 768px) {
  .ftd-event-track img {
    height: 260px;
  }
}


/* ==========================================
   FTD CANADA – GOVERNMENT CREDIBILITY CSS
   PREFIX: ftdcagov-
   ========================================== */

.ftdcagov-wrapper {
  background: #ffffff;
}


/* HERO */

.ftdcagov-hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.ftdcagov-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,51,102,0.7);
}

.ftdcagov-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 20px;
  max-width: 800px;
}

.ftdcagov-title {
  font-size: 42px;
  margin-bottom: 15px;
}

.ftdcagov-subtitle {
  font-size: 20px;
  line-height: 1.6;
}


/* SECTIONS */

.ftdcagov-section {
  padding: 70px 20px;
}

.ftdcagov-alt {
  background: #f4f8fb;
}

.ftdcagov-container {
  max-width: 1200px;
  margin: auto;
}

.ftdcagov-section-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 50px;
  color: #003366;
}


/* INFO GRID */

.ftdcagov-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 25px;
}

.ftdcagov-info-box {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.ftdcagov-info-box:hover {
  transform: translateY(-5px);
}


/* GOVERNANCE */

.ftdcagov-governance {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.ftdcagov-gov-image img {
  width: 100%;
  border-radius: 10px;
}

.ftdcagov-list {
  margin-top: 20px;
  padding-left: 20px;
}

.ftdcagov-list li {
  margin-bottom: 10px;
}


/* IMPACT */

.ftdcagov-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
  gap: 20px;
}

.ftdcagov-impact-box {
  background: white;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.ftdcagov-impact-number {
  font-size: 36px;
  color: #1D71B8;
  font-weight: bold;
}


/* DOCUMENTS */

.ftdcagov-docs {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.ftdcagov-doc {
  background: white;
  padding: 15px 25px;
  border-radius: 6px;
  text-decoration: none;
  color: #003366;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.ftdcagov-doc:hover {
  background: #003366;
  color: white;
}


/* PARTNERS */

.ftdcagov-partners {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.ftdcagov-partners img {
  height: 60px;
  opacity: 0.8;
  transition: 0.3s;
}

.ftdcagov-partners img:hover {
  opacity: 1;
  transform: scale(1.05);
}


/* CTA */

.ftdcagov-cta {
  background: linear-gradient(135deg,#003366,#1D71B8);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.ftdcagov-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background: white;
  color: #003366;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
}

.ftdcagov-btn:hover {
  background: #f0f0f0;
}


/* RESPONSIVE */

@media(max-width: 900px)
{

.ftdcagov-governance {
grid-template-columns: 1fr;
}

.ftdcagov-title {
font-size: 32px;
}

}

@media(max-width:600px)
{

.ftdcagov-hero {
height: 400px;
}

.ftdcagov-title {
font-size: 26px;
}

.ftdcagov-subtitle {
font-size: 16px;
}

}



  /* FOOTER */
  .footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
  }
  
  /*Footre ftd*/
  #ftd-footer {
    background: #2f2f2f;
    color: #bbb;
    padding: 60px 20px;
  }
  
  #ftd-footer .ftd-footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  #ftd-footer h4 {
    color: #d6c7a1;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  #ftd-footer p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  #ftd-footer .ftd-footer-form input {
    width: 100%;
    padding: 10px;
    background: #3b3b3b;
    border: none;
    color: #fff;
    margin-bottom: 10px;
  }
  
  #ftd-footer .ftd-footer-form button {
    width: 100%;
    padding: 10px;
    background: #9c9c9c;
    border: none;
    cursor: pointer;
  }
  
  #ftd-footer .ftd-socials {
    margin-top: 15px;
  }
  
  #ftd-footer .ftd-socials span {
    margin-right: 10px;
    cursor: pointer;
  }
  
  /* LANGUAGE TOGGLE*/
  .ftd-lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: #0b3c5d;
  }
  
  .ftd-lang-btn:hover {
    text-decoration: underline;
  }
  [data-i18n],
[data-i18n-placeholder] {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.lang-fade-out {
  opacity: 0;
  transform: translateY(4px);
}

.lang-fade-in {
  opacity: 1;
  transform: translateY(0);
}

  
  /* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .hotel-gallery {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
  }
  .item-1, .item-2, .item-3, .item-4, .item-5, .item-6, .item-7 {
      grid-column: span 1;
      grid-row: span 1;
      height: 250px;
  }
}
  @media (max-width: 900px) {
    #ftd-footer .ftd-footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  }
  /* =========================
   MOBILE NAV TOGGLE
========================= */

.ftd-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
}

.ftd-menu-toggle span {
  height: 3px;
  width: 100%;
  background: #0b3c5d;
  border-radius: 2px;
}

/* MOBILE BEHAVIOR */
@media (max-width: 1028px) {

  .header-flex {
    position: relative;
  }
  #hotellerie h2 {
    font-size: 1.5rem;
  }

  .ftd-menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;

    display: flex;
    flex-direction: column;
    align-items: center;

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    z-index: 1000;
  }

  .nav a,
  .nav .lang {
    padding: 15px 0;
  }
  .btn.primary {
    display: inline-block;
    padding: 12px 100%;
    border-radius: 4px;
    text-decoration: none;
    font-weight: medium;
  }
  .header.ftd-menu-open .nav {
    max-height: 1028px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
}
@media(max-width: 600px) {
  .header-logo { 
    height: 50px; 
  }
  .hero-content p {
    display: none;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  /* OPEN STATE */
  .header.ftd-menu-open .nav {
    max-height: 600px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
}
