* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  background: linear-gradient(135deg, #fdf6ed 0%, #f5e6d3 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Cormorant Garamond', serif;
  position: relative;
}

a {
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
}

.container {
  max-width: 800px;
  width: 100%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  padding: 30px 20px;
  border-radius: 35px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.banniere-marron,
.banniere-verte,
.banniere-bleue {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 30px;
  padding: 30px 25px;
  text-align: center;
  cursor: pointer;
  min-height: 160px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.banniere-marron {
  background: #8B2E00;
}

.banniere-verte {
  background: linear-gradient(135deg, #2d6a4f, #1b4332);
}

.banniere-bleue {
  background: linear-gradient(135deg, #2C4A6E, #1a2f45);
}

.banniere-marron:active,
.banniere-verte:active,
.banniere-bleue:active {
  transform: scale(0.99);
}

.titre1 {
  font-size: 34px;
  font-weight: 700;
  color: #FFF3DC;
}

.titre2 {
  font-size: 20px;
  color: #F5C842;
  letter-spacing: 3px;
  margin-top: 12px;
}

.titre3 {
  font-size: 30px;
  font-weight: 700;
  color: #F5C842;
  margin-top: 12px;
}

.sous-titre {
  font-size: 16px;
  color: #FFE4B0;
  margin-top: 12px;
}

.vert1 {
  font-size: 34px;
  font-weight: 700;
  color: #d8f3dc;
}

.vert2 {
  font-size: 20px;
  color: #b7e4c7;
  margin-top: 12px;
  font-style: italic;
}

.vert3 {
  font-size: 18px;
  color: #f9c74f;
  margin-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 14px;
}

.bleu-accueil {
  font-size: 24px;
  font-weight: 600;
  color: #F5C842;
  margin-bottom: 10px;
  font-style: italic;
}

.bleu-titre {
  font-size: 32px;
  font-weight: 700;
  color: #FFF3DC;
  margin-bottom: 12px;
}

.bleu-slogan {
  font-size: 22px;
  font-style: italic;
  color: #fde68a;
  margin-bottom: 16px;
}

.bleu-tags {
  font-size: 20px;
  color: #e0f2fe;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}

@media (max-width: 768px) {
  body { padding: 15px; }
  .container { padding: 25px 18px; }

  .banniere-marron,
  .banniere-verte,
  .banniere-bleue {
    padding: 28px 20px;
    min-height: 150px;
  }

  .titre1,
  .vert1 {
    font-size: 30px;
  }

  .titre2 { font-size: 18px; }
  .titre3 { font-size: 26px; }
  .sous-titre { font-size: 15px; }
  .vert2 { font-size: 18px; }
  .vert3 { font-size: 16px; }

  .bleu-accueil { font-size: 22px; }
  .bleu-titre { font-size: 28px; }
  .bleu-slogan { font-size: 20px; }
  .bleu-tags { font-size: 18px; }
}

@media (max-width: 480px) {
  .container { padding: 20px 15px; }

  .banniere-marron,
  .banniere-verte,
  .banniere-bleue {
    padding: 25px 15px;
    border-radius: 25px;
    margin-bottom: 20px;
  }

  .titre1,
  .vert1 { font-size: 26px; }
  .titre2 { font-size: 16px; }
  .titre3 { font-size: 24px; }
  .sous-titre { font-size: 14px; }
  .vert2 { font-size: 16px; }
  .vert3 { font-size: 15px; }

  .bleu-accueil { font-size: 20px; }
  .bleu-titre { font-size: 24px; }
  .bleu-slogan { font-size: 18px; }
  .bleu-tags { font-size: 16px; }
}

@media (min-width: 1200px) {
  .container { max-width: 900px; }
  .titre1,
  .vert1,
  .bleu-titre { font-size: 40px; }
  .titre3 { font-size: 34px; }
  .bleu-slogan { font-size: 26px; }
  .bleu-tags { font-size: 24px; }
}