/* Importation Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Cormorant+Garamond:wght@400;600&display=swap');

/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Corps de la page */
body {
  font-family: 'Playfair Display', serif;
  background: url('../img/background2.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Conteneur principal style iOS glass */
.container {
  text-align: center;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(15px) saturate(160%);
  -webkit-backdrop-filter: blur(15px) saturate(160%);
  padding: 40px;
  border-radius: 25px;
  max-width: 500px;
  width: 90%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

/* Titres */
h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(255,255,255,0.6), 0 2px 4px rgba(0,0,0,0.2);
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 25px;
  color: #2e2e2e;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(255,255,255,0.8), 0 2px 3px rgba(0,0,0,0.2);
  font-family: 'Cormorant Garamond', serif;
}

/* Carte */
.card {
  margin-top: 20px;
}

.coming-soon {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c6e49;
  text-shadow: 0 1px 3px rgba(255,255,255,0.7), 0 2px 4px rgba(0,0,0,0.3);
  font-family: 'Playfair Display', serif;
}

/* Sélecteur de langue */
.lang-select {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  padding: 10px 15px;
  border-radius: 15px;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  color: #111;
  font-family: 'Cormorant Garamond', serif;
}

.lang-select select {
  padding: 6px;
  border-radius: 8px;
  border: none;
  background: transparent;
  color: #111;
  font-weight: 600;
  font-size: 1rem;
  text-shadow: 0 1px 2px rgba(255,255,255,0.7);
  appearance: none;
}

.lang-select select option {
  background: #f5f5f5;
  color: #111;
}
