﻿.journal-or {
  text-align: center;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 2.5em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fdd496;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin: 20px 0;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}


.journal-or2 {
  text-align: center;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.5em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #fdd496;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  margin: 20px 0;
  border-bottom: 2px solid #000;
  padding-bottom: 10px;
}









    body { font-family: Arial, sans-serif;
    margin:20px;
  background: #222;
  color: #fff;

    }
   


/* ===========================
   HEADER
=========================== */
header {
  background: #222;
  color: #fff;
  padding: 15px 30px;
  display: grid;
  grid-template-columns: auto 1fr auto; /* logo | trad | menu */
  align-items: center;
  position: relative;
  z-index: 1002;
}

header .logo img {
  height: 50px;
}

.gtranslate_wrapper {
  text-align: center;
}

.menu-toggle {
  background: none;
  border: none;
  font-size: 36px;
  color: #FDD496;
  cursor: pointer;
  z-index: 1003;
}

/* Menu off-canvas */
header nav ul {
  list-style: none;
  margin: 0;
  padding: 20px;
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background: #333;
  flex-direction: column;
  gap: 15px;
  transform: scale(0.95);
  opacity: 0;
  transition: right 0.4s ease, transform 0.4s ease, opacity 0.4s ease;
  z-index: 1001;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px;
  display: block;
}

header nav ul li a:hover {
  background: #444;
  color: #FDD496;
}

header nav.open ul {
  right: 0;
  transform: scale(1);
  opacity: 1;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 999;
}

header nav.open ~ .menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* ===========================
   FOOTER
=========================== */
footer {
 background: #222;  color: #ddd;
  text-align: center;
  padding: 20px;
  margin-top: 10px;
  font-size: 0.9rem;
  
    width: 100%;
  height: 150;

  
  
}

footer a {
  color: #FDD496;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}


/* ===========================
   Pour Liste
=========================== */
 .list {
      display: flex;
      justify-content: center;   /* centrer horizontalement */
      align-items: center;       /* centrer verticalement */
    }

.styled-select {
      background-color: #565355;   /* fond */
      color: #f5f5f5;              /* texte lisible */
      border: 2px solid #a06406;   /* bordure dorée */
      padding: 8px 16px;
      font-size: 15px;
      font-family: Arial, sans-serif;
      border-radius: 6px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin: 10px;
      appearance: none;            /* supprime le style natif */
      text-align: center;          /* centre le texte */
      width: 250px;                /* largeur fixe identique */
    }

    .styled-select:hover {
      background-color: #6d6b69;   /* survol discret */
      box-shadow: 0 0 6px #a06406;
    }















/* ===========================
   Style du bouton vers haut
=========================== */



  #scrollTopBtn {
    cursor: pointer;
    position: fixed;
    right: 20px;
    bottom: 120px;
    z-index: 1000;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: rgb(253, 212, 150);
    opacity: 0;
    transition: opacity 0.4s ease; /* animation fade */
    box-shadow: rgba(128, 128, 128, 0.4) 5px 5px 20px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #scrollTopBtn img {
    width: 48px;
    height: 48px;
  }
  /* Visible */
  #scrollTopBtn.show {
    opacity: 0.8;
  }
  #scrollTopBtn:hover {
    opacity: 1;
  }




section {
  text-align: center;
  padding: 30px 20px;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url('https://cityworld.fr/images/photo-1586252999747-9c4393922b69.jpeg');
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  max-width: 940px;
}

.hero h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgb(253, 212, 150);
  text-shadow: rgba(0,0,0,0.3) 1px 1px 2px;
  border-bottom: 2px solid #000;
  margin: 20px;
}

.hero img {
  max-width: 300px;
  height: auto;
  margin: 20px;
  border-radius: 8px;
}

/* Responsive : sur mobile, on remet en colonne */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero h2 {
    margin-bottom: 15px;
  }
}

h2 {
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgb(253, 212, 150);
  text-shadow: rgba(0, 0, 0, 0.3) 1px 1px 2px;
  border-bottom: 2px solid #000;
  margin: 20px auto 10px;
  padding-bottom: 6px;
  line-height: 1.2;
}

h4 {
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: rgb(253, 212, 150);
  margin: 10px 0 6px;
}

p {
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 8px;
}

.container {
  width: 95%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 20px 0;
}

.card {
  border: 2px solid #666;
  border-radius: 10px;
  background-color: #404040;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.card svg {
  width: 64px;
  height: 64px;
  fill: rgb(253, 212, 150);
  margin: 10px 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* --- Responsive design --- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  header h2 { font-size: 2rem; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  h2 { font-size: 1.5rem; }
  h4 { font-size: 1.1rem; }
  p { font-size: 0.95rem; }
}