/* Global Header */
.global-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #020817;
  padding: 10px 20px;
  color: white;
  height: 80px;
  transition: opacity 0.3s ease-in-out; /* Transition douce pour l'affichage du header */
}

.global-header .logo img {
  height: 90px;
  width: auto;
}

.global-header-actions {
  display: flex;
  gap: 20px;
}

.global-header-actions button {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.global-header-actions button:hover {
  background-color: #3498db;
}
/* =========================================================
   TOCSPEAK HERO — FINAL RESPONSIVE VERSION
   ========================================================= */

/* CARD */
.home-hero-card {
  position: relative;

  width: 100%;
  min-height: 100svh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  background:
    radial-gradient(circle at top, #081225 0%, #020817 70%);
}

/* IMAGE WRAP */
.home-hero-image-wrap {
  position: relative;

  width: 100%;
  height: 100svh;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* HERO IMAGE */
.home-hero-image-wrap img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center center;

  display: block;

  user-select: none;
  pointer-events: none;
}

/* OVERLAY */
.home-hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(2, 6, 23, 0.08),
      rgba(2, 6, 23, 0.22)
    );

  z-index: 1;
  pointer-events: none;
}

/* CONTENT */
.home-hero-content {
  position: absolute;

  left: 0;
  right: 0;
  bottom: max(18px, env(safe-area-inset-bottom));

  z-index: 3;

  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  padding: 0 18px;

  box-sizing: border-box;
}

/* OPTIONAL TEXT */
.hero-kicker,
.hero-title,
.hero-subtitle {
  display: none;
}

/* CTA */
.hero-start-btn {
  min-width: 190px;
  min-height: 54px;

  padding: 0 22px;

  border: none;
  border-radius: 999px;

  background:
    linear-gradient(135deg, #1f8fff, #005eff);

  color: white;

  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;

  cursor: pointer;

  box-shadow:
    0 10px 30px rgba(0, 132, 255, 0.35);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.hero-start-btn:hover {
  transform: translateY(-2px);

  box-shadow:
    0 14px 38px rgba(0, 132, 255, 0.45);
}

/* =========================================================
   DESKTOP
   ========================================================= */

@media (min-width: 1024px) {

  .home-hero-card {
    min-height: 100vh;
  }

  .home-hero-image-wrap {
    height: 100vh;
  }

  .home-hero-image-wrap img {
    width: auto;
    height: 100vh;
    max-width: 100%;
  }

  .home-hero-content {
    bottom: 36px;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

  .home-hero-card {
    min-height: calc(100svh - 80px);
}

.home-hero-image-wrap {
    height: calc(100svh - 80px);
}

  .home-hero-image-wrap img {
    width: 100%;
    height: 100svh;

    object-fit: contain;
  }

  .home-hero-content {
    bottom: max(14px, env(safe-area-inset-bottom));
    padding: 0 14px;
  }

  .hero-start-btn {
    min-width: 170px;
    min-height: 50px;

    font-size: 0.84rem;
  }
}
/* Assurez-vous que le body occupe toute la hauteur de la page */
html, body {
  height: 100%;
  margin: 0;
}

/* Utilisation de Flexbox pour faire en sorte que le footer soit en bas */
body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Maintient le contenu en haut */
}

/* Le contenu principal prend toute la hauteur disponible */
.main-content {
  flex: 1; /* Prend tout l'espace disponible, poussant le footer vers le bas */
  overflow-y: auto; /* Assure que le contenu défilable */
}

/* Le footer reste au bas de la page */
.app-footer {
  margin-top: auto; /* Cette règle pousse le footer en bas */
  display: block !important;
}

/* Styles généraux pour les sections */
.screen {
  display: none; /* Masque toutes les sections par défaut */
}

.screen.active {
  display: block; /* Affiche la section active */
}


/* Masquer le header global */
.hidden {
  display: none !important;
}
/* Exemple de style pour les sections */
#homeScreen {
  background-color: #1c2534; /* Fond spécifique */
}

#conversationScreen {
  background-color: #040816; /* Bleu foncé pour la conversation */
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;  /* Empêcher le défilement */
}

/* Global body */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  color: var(--text-main);
  background: linear-gradient(180deg, #030b18 0%, #020816 35%, #010611 100%);
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  cursor: pointer;
  transition: all .25s ease;
}

/* Effet glass */
.glass {
  background: linear-gradient(180deg, rgba(14,27,48,.96), rgba(9,18,35,.94));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-main);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Cards Section */
.section-card {
  background: linear-gradient(180deg, rgba(11,22,40,.96), rgba(8,18,35,.94));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-top: 20px;
  box-shadow: var(--shadow-main);
}

.section-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-main);
}

.launcher-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mini-card {
  background: linear-gradient(180deg, rgba(15,30,52,.95), rgba(10,22,42,.95));
  border: 1px solid rgba(82,157,255,.16);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: var(--text-main);
  transition: all .25s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  border-color: rgba(82,157,255,.38);
  box-shadow: 0 14px 28px rgba(18,97,209,.20);
}

.mini-card .t1 {
  font-size: 1.08rem;
  font-weight: 700;
}

.mini-card .t2 {
  font-size: .92rem;
  color: var(--text-soft);
}

.quick-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 20px;
}

/* Style global pour le texte */
body, .global-header, .screen, .section-label, .quick-tool, .mini-card .t1, .mini-card .t2 {
  color: white !important; /* Définit la couleur du texte en blanc pour tout le contenu */
}

/* Titre de section */
.section-label {
  color: white !important; /* Assure que les titres des sections sont en blanc */
}

/* Texte des éléments de la carte (mini-card) */
.mini-card .t1 {
  color: white !important; /* Titre des cartes en blanc */
}

/* Texte des sous-titres des éléments de la carte */
.mini-card .t2 {
  color: white !important; /* Sous-titres des cartes en blanc */
}

/* Liens de footer */
.footer-link {
  color: white !important; /* Liens dans le footer en blanc */
}

/* Texte du bouton dans le footer */
.footer-note {
  color: white !important; /* Texte dans le footer en blanc */
}

/* Texte dans la barre d'outils rapide */
.quick-tool {
  color: white !important; /* Assure que les boutons sont en blanc */
}

/* Texte dans les descriptions des sections */
.home-hero-content .hero-kicker,
.home-hero-content .hero-title,
.home-hero-content .hero-subtitle {
  color: white !important; /* Titre et sous-titres dans l'image héro en blanc */
}

#homeScreen .launcher-card {
  background-color: #3498db; /* Couleur bleue similaire au bouton Let's Talk Now */
  color: white; /* Texte en blanc pour les cards */
  border-radius: 15px; /* Bords arrondis pour un style moderne */
  padding: 20px;
  margin-top: 10px; /* Espacement entre les cards */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#homeScreen .launcher-card:hover {
  background-color: #2980b9; /* Couleur plus foncée au survol */
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.6); /* Ombre au survol */
}

#homeScreen .launcher-card .icon {
  font-size: 2rem; /* Taille de l'icône */
}

#homeScreen .launcher-card .title {
  font-size: 1.2rem; /* Taille du titre */
  font-weight: bold;
}

#homeScreen .launcher-card .subtitle {
  font-size: 0.9rem; /* Taille de la description */
}
/* =========================================================
   TOCSPEAK — CONVERSATION SCREEN FINAL CLEAN CSS
   ========================================================= */

#conversationScreen {
  width: 100%;
  padding: 24px 16px 40px;
  box-sizing: border-box;
}

#conversationScreen .conversation-shell {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* =========================================================
   TOPBAR
   ========================================================= */

#conversationScreen .conv-topbar {
  min-height: 78px;
  padding: 12px 18px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(19,35,58,.98), rgba(12,23,41,.98));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-main);
}

#conversationScreen .conv-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

#conversationScreen .conv-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

#conversationScreen .header-button {
  min-height: 46px;
  padding: 0 18px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #3eb0ff, #2e7dff);
  border: 1px solid rgba(135,206,255,.28);
  box-shadow: 0 10px 22px rgba(24,121,255,.22);
}

#conversationScreen .header-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

/* =========================================================
   LANGUAGES BAR
   ========================================================= */

#conversationScreen .conv-langbar {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

#conversationScreen .conv-lang-side {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(12,24,42,.97), rgba(8,18,33,.97));
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-main);
}

#conversationScreen .conv-flag {
  min-width: 36px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-main);
}

#conversationScreen .conv-lang-select {
  width: 100%;
  height: 44px;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 700;
}

#conversationScreen .conv-lang-select option {
  color: #111;
}

#conversationScreen .conv-swap-btn {
  grid-column: 2;
  justify-self: center;
  align-self: center;

  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg, #48b7ff, #2b7aff);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(20,119,255,.28);
}

/* =========================================================
   MODE BAR
   ========================================================= */

#conversationScreen .conv-modebar {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 122px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  overflow: visible;
}

#conversationScreen #modeGuidedBtn {
  grid-column: 1;
}

#conversationScreen #modeAutoBtn {
  grid-column: 3;
}

#conversationScreen .conv-mode-side {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;

  background: rgba(7, 18, 38, 0.72);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(90, 160, 255, 0.16);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: var(--shadow-main);
  transition: 0.22s ease;
}

#conversationScreen .conv-mode-side:hover {
  border-color: rgba(80, 180, 255, 0.55);
  transform: translateY(-1px);
}

#conversationScreen .conv-mode-side.active,
#conversationScreen #modeGuidedBtn.active,
#conversationScreen #modeAutoBtn.active {
  background: linear-gradient(135deg, #38a7ff, #2f83ff);
  color: #ffffff;
  border-color: rgba(80, 180, 255, 0.95);
  box-shadow:
    0 14px 32px rgba(47, 131, 255, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

#conversationScreen .conv-mode-side.active *,
#conversationScreen #modeGuidedBtn.active *,
#conversationScreen #modeAutoBtn.active * {
  color: #ffffff;
}

/* =========================================================
   CENTER AI LOGO / MICRO ORB
   ========================================================= */

#conversationScreen #convMicCore,
#conversationScreen .conv-center-logo {
  grid-column: 2;
  justify-self: center;
  align-self: center;

  width: 122px;
  height: 122px;
  min-width: 122px;
  min-height: 122px;
  max-width: 122px;
  max-height: 122px;

  margin: 0 auto;
  margin-left: -3px !important;

  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  translate: none !important;

  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;

  background:
    radial-gradient(circle at center,
      rgba(56, 167, 255, 0.22) 0%,
      rgba(18, 74, 150, 0.12) 38%,
      rgba(5, 18, 45, 0.25) 72%,
      rgba(5, 18, 45, 0.05) 100%
    );

  border: 1px solid rgba(70, 165, 255, 0.25);

  box-shadow:
    0 0 20px rgba(47, 131, 255, 0.18),
    inset 0 0 26px rgba(56, 167, 255, 0.12);

  animation: convOrbBreath 3.2s ease-in-out infinite;
}

#conversationScreen .conv-center-logo img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  position: relative;
  z-index: 5;

  filter:
    drop-shadow(0 0 10px rgba(56, 167, 255, 0.8))
    drop-shadow(0 0 24px rgba(47, 131, 255, 0.35));

  animation: convLogoFloat 3.2s ease-in-out infinite;
}

#conversationScreen .conv-logo-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

#conversationScreen .conv-logo-ring.ring-1 {
  inset: -8px;
  border: 1px solid rgba(56, 167, 255, 0.32);
  box-shadow:
    0 0 18px rgba(56, 167, 255, 0.28),
    inset 0 0 16px rgba(56, 167, 255, 0.12);
  animation: convRingPulse 2.2s ease-out infinite;
}

#conversationScreen .conv-logo-ring.ring-2 {
  inset: -20px;
  border: 1px solid rgba(90, 190, 255, 0.14);
  box-shadow: 0 0 24px rgba(47, 131, 255, 0.18);
  animation: convRingPulseSoft 3.4s ease-out infinite;
}

#conversationScreen .conv-center-logo::before {
  content: "";
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(56, 167, 255, 0.40),
    rgba(56, 167, 255, 0.08) 58%,
    transparent 72%
  );
  z-index: 1;
  animation: convInnerGlow 2.6s ease-in-out infinite;
}

#conversationScreen .conv-center-logo::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  z-index: 2;
  background:
    conic-gradient(
      from 0deg,
      transparent 0deg,
      rgba(56, 167, 255, 0.22) 42deg,
      transparent 90deg,
      transparent 360deg
    );
  mask: radial-gradient(circle, transparent 48%, #000 50%, #000 54%, transparent 57%);
  -webkit-mask: radial-gradient(circle, transparent 48%, #000 50%, #000 54%, transparent 57%);
  animation: convAiScan 4.5s linear infinite;
}

/* =========================================================
   STATUS MESSAGE
   ========================================================= */

#conversationScreen .status-message {
  font-size: 1rem;
  padding: 8px 16px;
  background: linear-gradient(180deg, rgba(15,28,47,.98), rgba(10,20,37,.98));
  border-radius: 14px;
  color: var(--text-soft);
  font-weight: 600;
}

/* =========================================================
   TRANSLATION BOX
   ========================================================= */

#conversationScreen .conv-translation-wrap {
  width: 100%;
}

#conversationScreen .conv-translation-box {
  min-height: 36px;
  padding: 8px 0;
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.35;
}

#conversationScreen .conv-translation-box.empty {
  color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   BOTTOM ACTIONS
   ========================================================= */

#conversationScreen .conv-bottom-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

#conversationScreen .conv-main-btn,
#conversationScreen .ask-tocspeak-btn {
  min-width: 120px;
  min-height: 50px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 16px;
  box-shadow: var(--shadow-blue);
}

#conversationScreen .conv-main-btn {
  background: linear-gradient(135deg, #45b6ff, #2a7cff);
  color: #fff;
}

#conversationScreen .ask-tocspeak-btn {
  background: linear-gradient(135deg, #48b8ff, #3186ff);
  color: #fff;
}

#conversationScreen .ask-tocspeak-btn:hover,
#conversationScreen .conv-main-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes convOrbBreath {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 0 20px rgba(47, 131, 255, 0.18),
      inset 0 0 26px rgba(56, 167, 255, 0.12);
  }

  50% {
    transform: scale(1.025);
    box-shadow:
      0 0 34px rgba(56, 167, 255, 0.34),
      inset 0 0 34px rgba(56, 167, 255, 0.18);
  }
}

@keyframes convLogoFloat {
  0%, 100% {
    transform: translateY(0) scale(1.08);
  }

  50% {
    transform: translateY(-2px) scale(1.16);
  }
}

@keyframes convRingPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.88);
  }

  70% {
    opacity: 0.18;
    transform: scale(1.18);
  }

  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes convRingPulseSoft {
  0% {
    opacity: 0.45;
    transform: scale(0.82);
  }

  75% {
    opacity: 0.12;
    transform: scale(1.22);
  }

  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}

@keyframes convInnerGlow {
  0%, 100% {
    opacity: 0.58;
    transform: scale(0.92);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.12);
  }
}

@keyframes convAiScan {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}
/* ================================
   Ask Screen Styles - Modern Design
=============================== */
#askScreen {
  display: flex;
  flex-direction: column;
  background-color: #040816;
  color: white;
  height: 100vh;
  font-family: 'Arial', sans-serif;
}



.home-btn:hover {
  background-color: #3498db;
}

/* HERO SECTION STYLES */
.ask-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background: linear-gradient(180deg, #04112b, #020817);
  text-align: center;
  color: white;
}

.ask-hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.ask-hero-subtitle {
  font-size: 1.2rem;
  color: #aaa;
}

/* ASK PANEL STYLES */
.ask-panel {
  padding: 20px;
  background-color: #1a2538;
  border-radius: 8px;
  margin-top: 20px;
  flex-grow: 1;
}

.ask-input-wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}

.ask-input {
  width: 80%;
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  background-color: #2c3e50;
  color: white;
  transition: background-color 0.3s ease;
}

.ask-input:focus {
  background-color: #34495e;
  outline: none;
}

.ask-send {
  padding: 12px 20px;
  font-size: 1rem;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.ask-send:hover {
  background-color: #2980b9;
}

/* ANSWER TEXT AREA */
.ask-answer-text {
  padding: 20px;
  background-color: #34495e;
  border-radius: 8px;
  color: white;
  font-size: 1.2rem;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.ask-answer-text p {
  font-size: 1rem;
  color: #ccc;
}

/* ================================
   Mobile Version Styling
=============================== */
@media (max-width: 768px) {
  .screen-title {
    font-size: 1.5rem;
  }

  .screen-sub {
    font-size: 1rem;
  }

  .ask-hero-title {
    font-size: 2rem;
  }

  .ask-hero-subtitle {
    font-size: 1rem;
  }

  .ask-input {
    width: 70%;
  }

  .ask-send {
    width: 100%;
    padding: 12px 0;
  }

  .ask-answer-text {
    height: 120px;
    font-size: 1rem;
  }
}

/* ================================
   TRAVEL HUB STYLES - Modern Design
=============================== */

/* General Layout */
#travelHubScreen {
  display: flex;
  flex-direction: column;
  background-color: #040816;
  color: white;
  height: 100vh;
  overflow-y: auto;
}

/* Screen Header */
.screen-header {
  padding: 20px;
  background-color: #1a2538;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #3498db;
}

.screen-title {
  font-size: 2rem;
  font-weight: bold;
}

.screen-sub {
  font-size: 1rem;
  color: #aaa;
}

/* Home Button Style */
.home-btn {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.home-btn:hover {
  background-color: #3498db;
}

/* Travel Hub Header */
.travel-hub-header {
  padding: 30px 20px;
  background: linear-gradient(180deg, #04112b, #020817);
  text-align: center;
}

.travel-hub-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.travel-hub-subtitle {
  font-size: 1.2rem;
  color: #aaa;
}

/* Categories Section */
.travel-hub-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  margin-top: 20px;
}

.travel-hub-card {
  background-color: #2c3e50;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.travel-hub-card:hover {
  background-color: #3498db;
}

.travel-hub-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.travel-hub-title {
  font-size: 1.4rem;
  font-weight: bold;
}

.travel-hub-subtitle {
  font-size: 1rem;
  color: #95a5a6;
}

/* Tools Section */
.travel-hub-tools {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.travel-hub-tool {
  background-color: #2c3e50;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.travel-hub-tool:hover {
  background-color: #3498db;
}

.tool-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

.tool-title {
  font-size: 1.4rem;
  font-weight: bold;
}

.tool-subtitle {
  font-size: 1rem;
  color: #95a5a6;
}

/* Mobile version adjustments */
@media (max-width: 768px) {
  .travel-hub-categories {
    grid-template-columns: 1fr;
  }

  .travel-hub-card {
    padding: 15px;
  }

  .travel-hub-title {
    font-size: 1.2rem;
  }

  .travel-hub-subtitle {
    font-size: 0.9rem;
  }

  .travel-hub-tools {
    grid-template-columns: 1fr;
  }

  .tool-icon {
    font-size: 2rem;
  }

  .tool-title {
    font-size: 1.2rem;
  }

  .tool-subtitle {
    font-size: 0.9rem;
  }
}
/* ================================
   MAP SECTION STYLES - Modern Design
=============================== */

/* General Layout */
#mapScreen {
  display: flex;
  flex-direction: column;
  background-color: #040816;
  color: white;
  height: 100vh;
  overflow-y: auto;
}

/* Screen Header */
.screen-header {
  padding: 20px;
  background-color: #1a2538;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #3498db;
}

.screen-title {
  font-size: 2rem;
  font-weight: bold;
}

.screen-sub {
  font-size: 1rem;
  color: #aaa;
}

/* Home Button Style */
.home-btn {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.home-btn:hover {
  background-color: #3498db;
}

/* Map Header */
.map-header {
  padding: 30px 20px;
  background: linear-gradient(180deg, #04112b, #020817);
  text-align: center;
}

.map-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

.map-subtitle {
  font-size: 1.2rem;
  color: #aaa;
}

/* Map Canvas */
.map-canvas {
  width: 100%;
  height: 400px;
  background-color: #2c3e50;
  margin-top: 20px;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#map {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

/* Map Search Bar */
.map-search-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px;
  padding: 10px;
  background-color: #2c3e50;
  border-radius: 10px;
}

.map-search-input {
  width: 80%;
  padding: 8px 16px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  background-color: #34495e;
  color: white;
}

.map-search-btn {
  background-color: #3498db;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}

.map-search-btn:hover {
  background-color: #2980b9;
}

/* Suggestions Section */
.map-suggestions {
  margin: 20px;
  padding: 20px;
  background-color: #34495e;
  border-radius: 10px;
}

.map-suggestions h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
  margin-bottom: 15px;
}

.suggestion-list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.suggestion-item {
  background-color: #2c3e50;
  color: white;
  border-radius: 10px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.suggestion-item:hover {
  background-color: #3498db;
}

.suggestion-item i {
  margin-right: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .screen-header {
    padding: 10px;
  }

  .map-header {
    padding: 20px 10px;
  }

  .map-title {
    font-size: 2rem;
  }

  .map-subtitle {
    font-size: 1rem;
  }

  .map-canvas {
    height: 300px;
  }

  .map-search-bar {
    flex-direction: column;
  }

  .map-search-input {
    width: 100%;
    margin-bottom: 10px;
  }

  .map-search-btn {
    width: 100%;
  }

  .suggestion-list {
    flex-direction: column;
    gap: 10px;
  }
}
/* ================================
   Footer Section - Modern Design
=============================== */

.app-footer {
    background-color: #020817; /* Fond bleu/noir moderne */
    color: white;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 10px;
}

.footer-link {
    color: white;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    text-decoration: underline;
    color: #3498db; /* Ajout d'un effet coloré au survol */
}

.footer-note {
    font-size: 0.9rem;
    color: #aaa;
    margin-top: 10px;
}

.footer-note a {
    color: #3498db;
    text-decoration: none;
}

.footer-note a:hover {
    text-decoration: underline;
}

