/* 1. Base & Typographie */
html, body {
  font-family: 'Roboto', 'Helvetica', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5; 
}

/* 2. Header */
.mdl-layout__header {
  background-color: white !important;
  border-bottom: 1px solid #e0e0e0;
  box-shadow: none !important;
  animation: fadeIn 0.5s ease-in;
}

.mdl-layout__header-row {
}
.mdl-layout__header .mdl-layout__drawer-button {
	color: #8f1a18 !important; 	
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.header-center-content {
    display: flex;
    align-items: center;
}

.header-logo {
  height: 32px;
  margin-right:12px;
}

.mdl-layout-title {  
  color: #8f1a18 !important; 
}

/* 3. Contenu Principal */
.mdl-layout__content {
  padding-top: 40px;
  padding-bottom: 80px;
  animation: fadeInUp 0.8s ease-out forwards;
}

/* 4. Section & Card */
section.section--center {
  display: flex; 
  flex-direction: row;
  width: 100%; 
  max-width: 860px;
  margin: 0 auto 40px auto;
  background-color: white;
  border-radius: 4px; /* Un peu plus moderne */
}

/* Effet Hover Classe */
section.section--center:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15) !important;
}

.section__play-btn {
    width: 200px;
    min-width: 200px;
    height: auto;
    margin: 0;
    padding: 0;
    background-color: #eee;
    position: relative;
}

.section__play-btn img {
  transition: transform 0.3s ease;
}

/* 5. Détails de la Carte */
.mdl-card__supporting-text {
  padding: 32px !important;
  width: auto !important;
  color: #616161;
}

.mdl-card__supporting-text h4 {
  margin-top: 0;
  color: #212121;
  font-weight: 400;
}

.mdl-card__actions {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 32px !important;
}

.mdl-card__actions a {
  color: #00acc1; /* Cyan plus profond pour la lisibilité */
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

/* 6. Footer Minimaliste */
.mdl-mini-footer, 
.mdl-mini-footer .mdl-logo, 
.mdl-mini-footer__link-list li a {
  color: #616161 !important; /* Gris foncé lisible */
}

.mdl-mini-footer__link-list li a:hover {
  color: #00acc1 !important; /* Rappel du Cyan au survol */
}

.mdl-mini-footer {
  background-color: #eeeeee !important; /* Fond gris clair */
  border-top: 1px solid #e0e0e0;
}

/* Conteneur pour la superposition */
.image-container {
    width: 100%;
    height: 100%;
}

/* L'image doit couvrir toute la zone sans se déformer */
.image-container img {
    width: 100%;
    height: 100%;
    object-fit: scale-down; /* Remplit l'espace sans écraser l'image */
    position: absolute;
    top: 0;
    left: 0;
}

/* Animation d'apparition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 600px) {
    
	section.section--center {
        flex-direction: column;
        max-width: 95%;
    }

    .section__play-btn {
        width: 100%;       /* L'image prend toute la largeur */
        height: 180px;      /* Hauteur fixe sur mobile pour ne pas manger tout l'écran */
        min-width: unset;
    }

    .mdl-card__supporting-text {
        padding: 16px !important; /* Moins de vide sur petit écran */
    }
}
