﻿/* Base Styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Bebas Neue', 'Manrope', 'Work Sans', sans-serif;
  background-color: #0D1B2A; /* Bleu nuit */
  color: #F4F4F4; /* Blanc pur */
}
a {
  text-decoration: none;
  color: inherit;
}
header, nav, main, footer {
  margin: 0;
  padding: 0;
}

/* Header & Navigation */
.top-banner {
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.top-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
nav {
  background-color: #0D1B2A;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
nav ul li {
  margin: 0 1rem;
}
nav ul li a {
  color: #F4F4F4;
  font-weight: bold;
  transition: color 0.3s;
}
nav ul li a:hover {
  color: #FFD700; /* Doré chaud */
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.hero-content {
  max-height: 60vh;
  overflow-y: auto;
  padding: 20px;
  text-align: center;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.cta {
  padding: 1rem 2rem;
  background-color: #FF6F00; /* Orange vif */
  color: #F4F4F4;
  border-radius: 4px;
  font-size: 1.2rem;
  transition: background-color 0.3s;
  margin-top: 40px;
}
.cta:hover {
  background-color: #cc5c00;
}

/* Sections */
section {
  padding: 2rem;
}
.event-card, .artist-card {
  background-color: #0D1B2A;
  margin: 1rem 0;
  padding: 1rem;
  border: 1px solid #2E7D32; /* Vert profond */
  border-radius: 4px;
}
.event-card img, .artist-card img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

/* Formulaires */
form label {
  display: block;
  margin-top: 1rem;
}
form input, form textarea {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  border: 1px solid #2E7D32;
  border-radius: 4px;
  background-color: #F4F4F4;
  color: #0D1B2A;
}
form button {
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background-color: #FFD700;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

/* Footer */
footer {
  background-color: #0D1B2A;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}
.social-footer {
  margin-top: 1rem;
}
.social-footer a {
  margin: 0 0.5rem;
}

/* Social links in Community Page */
.social-links ul {
  list-style: none;
  padding: 0;
}
.social-links ul li {
  display: inline-block;
  margin-right: 1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}
