/******************************************************************
Theme Name: Questions pour un champion 
Description: 
Authors: Hassan Achenkour
Author URI: 
Version: 2.0.0
******************************************************************/

*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  font-family: 'Poppins', sans-serif;
}
.bg-yellow {
  background: linear-gradient(135deg, #ffd54f 0%, #ffb300 100%);
  border: none;
  box-shadow: 0 8px 20px rgba(255, 213, 79, 0.4);
  transition: all 0.3s ease;
  font-weight: 600;
}
.bg-yellow:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 213, 79, 0.6);
}
.text-yellow {
  color: #ffd54f;
}

.logo-mt5 {
  margin-top: 50px;
  animation: fadeInDown 0.8s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-select, .form-control {
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  padding: 12px 16px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.form-select:focus, .form-control:focus {
  border-color: #ffd54f;
  box-shadow: 0 0 0 0.2rem rgba(255, 213, 79, 0.25);
  outline: none;
}

.btn {
  border-radius: 12px;
  padding: 12px 24px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.btn-lg {
  font-size: 18px;
}

.bg-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.bg-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.6);
}

.container {
  animation: fadeIn 1s ease;
}

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

.logo-height {
  max-height: 180px;
}

@media (max-width: 576px) {
  .logo-height {
    max-height: 100px;
  }

  .logo-mt5 {
    margin-top: 30px;
  }
}