:root{
  --blue:#fc1e17;
  --green:#0dde72;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: radial-gradient(circle at top, #1a1a1a, #000);
  color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  padding: 2rem;
}

.container {
  max-width: 700px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 700px) {
  .container {
    padding: 0rem 0rem;
  }
}

.event-image {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 1.5rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 700px) {
  h1 {
    font-size: 1.5rem;
  }
}

a{
  color: var(--blue);
}

.subtitle {
  font-weight: 400;
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
}

section {
  margin-bottom: 2rem;
}

h2 {
  font-size: 1.3rem;
  color: var(--blue);
  margin-bottom: 0.8rem;
}

@media screen and (max-width: 700px) {
  h2 {
    font-size: 1.1rem;
  }
}

ul {
  list-style: none;
  line-height: 1.8;
}

.buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}

.btn {
  background: var(--green);
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn:hover {
  background: #00ff7b;
  transform: scale(1.05);
}

.btn.secondary {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
}

.btn.secondary:hover {
  background: var(--green);
  color: #000;
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  color: #ccc;
}

.socials {
  margin: 1rem 0 1rem;
}

.socials a {
  margin: 0 0.5rem;
  font-size: 1.5rem;
  color: var(--green);
  text-decoration: none;
  transition: transform 0.2s;
}

.socials a:hover {
  transform: scale(1.2);
  color: #fff;
}

.credits {
  font-size: 0.8rem;
  opacity: 0.7;
}

.mention {
  font-size: 0.8rem;
  opacity: 0.7;
  font-style: italic;
}

.presentation{
  text-align: justify;
}
@media screen and (max-width: 700px) {
  .presentation{
    text-align: justify;
  }
}

.presentation p{
  text-indent: 1em;
}

.presentation p:not(:last-child){
  margin-bottom: 1em;
}

.en-savoir-plus{
  color: inherit;
}

p.center{
  text-align: center;
}

.programme > p:not(:first-child, .mention){
  margin-top:  1em;
}

.monologues{
  margin-bottom:  2em;
}
