* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.hero-bg {
  background-image: url('assets/image/hero.png');
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

body {
  font-family: 'Helvetica', 'Arial', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  backdrop-filter: blur(10px);
  animation: slideInDown 0.6s ease;
}

@keyframes slideInDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.logo-img {
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo small {
  font-size: 12px;
  display: block;
  letter-spacing: 1px;
  opacity: 0.8;
}

.nav {
  display: flex;
  gap: 40px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.nav a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  padding-bottom: 5px;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.nav-contact {
  display: none;
}

.nav-social {
  display: none;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 25px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 6px;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.social-icon {
  font-size: 18px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.15) rotate(5deg);
}

.btn-contact {
  border: 2px solid #fff;
  padding: 10px 20px;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-contact:hover::before {
  left: 0;
}

.btn-contact:hover {
  color: #000;
}

/* HERO SECTION */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  padding: 0 40px;
  margin-top: 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  animation: zoomIn 10s ease-out;
}

@keyframes zoomIn {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
  animation: fadeIn 1s ease 0.3s both;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 600px;
}

.hero-tag {
  font-size: 13px;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease 0.4s both;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 80px;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: -2px;
  animation: slideInLeft 1s ease 0.5s both;
}

.hero-divider {
  width: 50px;
  height: 2px;
  background: #fff;
  margin-bottom: 25px;
  animation: slideInLeft 0.8s ease 0.6s both;
}

.hero-description {
  font-size: 16px;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 40px;
  max-width: 450px;
  animation: fadeInUp 0.8s ease 0.7s both;
}

.btn-primary {
  display: inline-block;
  border: 2px solid #fff;
  padding: 15px 40px;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: fadeInUp 0.8s ease 0.8s both;
  position: relative;
  overflow: hidden;
  font-weight: bold;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  left: 0;
}

.btn-primary:hover {
  color: #000;
  transform: translateY(-2px);
}

/* DERNIERS ÉVÉNEMENTS */
.derniers-evenements {
  padding: 100px 40px;
  background: #000;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease;
}

.section-header h2 {
  font-size: 40px;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #fff, transparent);
}

.view-all {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.view-all::after {
  content: '→';
  transition: transform 0.3s ease;
}

.view-all:hover::after {
  transform: translateX(5px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  transition: all 0.3s ease;
  animation: scaleIn 0.6s ease;
}

.gallery-grid img:hover {
  transform: scale(1.08) rotate(1deg);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
}

/* AGENDA */
.agenda {
  padding: 100px 40px;
  background: #000;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.event-card {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.6s ease both;
}

.event-card:nth-child(1) { animation-delay: 0.1s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.3s; }
.event-card:nth-child(4) { animation-delay: 0.1s; }
.event-card:nth-child(5) { animation-delay: 0.2s; }
.event-card:nth-child(6) { animation-delay: 0.3s; }
.event-card:nth-child(7) { animation-delay: 0.1s; }
.event-card:nth-child(8) { animation-delay: 0.2s; }
.event-card:nth-child(9) { animation-delay: 0.3s; }

.event-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
  background: #1a1a1a;
}

.event-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}



.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.event-card:hover .event-image img {
  transform: scale(1.15) rotate(2deg);
}

.event-date-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.9);
  border: 2px solid #fff;
  padding: 12px 14px;
  text-align: center;
  border-radius: 8px;
  z-index: 2;
  transition: all 0.3s ease;
}

.event-card:hover .event-date-badge {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.1);
}

.event-date-badge .day {
  display: block;
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
}

.event-date-badge .month {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 3px;
}

.event-card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-card-content h3 {
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  font-weight: bold;
  transition: color 0.3s ease;
}

.event-card:hover .event-card-content h3 {
  color: #fff;
}

.event-time {
  font-size: 13px;
  color: #888;
  margin-bottom: 5px;
  transition: color 0.3s ease;
}

.event-location {
  font-size: 13px;
  color: #888;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.event-description {
  font-size: 13px;
  color: #aaa;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.btn-reserver {
  display: block;
  width: 100%;
  border: 2px solid #fff;
  padding: 15px 20px;
  text-decoration: none;
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  background: transparent;
  margin-top: auto;
  position: relative;
  overflow: hidden;
}

.btn-reserver::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-reserver:hover::before {
  left: 0;
}

.btn-reserver:hover {
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* TÉLÉCHARGEMENTS */
.telechargements {
  padding: 100px 40px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
  animation: fadeIn 0.8s ease;
}

.telechargements h2 {
  font-size: 40px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  animation: fadeInUp 0.8s ease;
  position: relative;
  display: inline-block;
}

.telechargements h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fff, transparent);
}

.telechargements-subtitle {
  color: #888;
  font-size: 14px;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.download-card {
  border: 2px solid rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  animation: scaleIn 0.6s ease both;
  position: relative;
  overflow: hidden;
}

.download-card:nth-child(1) { animation-delay: 0.1s; }
.download-card:nth-child(2) { animation-delay: 0.2s; }

.download-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  transition: all 0.3s ease;
}

.download-card:hover::before {
  top: -20%;
  right: -20%;
}

.download-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.pdf-icon {
  font-size: 50px;
  transition: transform 0.3s ease;
  z-index: 1;
}

.download-card:hover .pdf-icon {
  transform: scale(1.2) rotate(10deg);
}

.download-card h3 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
  z-index: 1;
  margin-bottom: 10px;
}

.download-card p {
  color: #888;
  font-size: 12px;
  z-index: 1;
  margin-bottom: 10px;
}

.download-btn {
  font-size: 20px;
  transition: all 0.3s ease;
  z-index: 1;
  display: inline-block;
}

.download-btn:hover {
  transform: scale(1.3) rotate(10deg);
}

.download-card h3 {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.5;
}

.download-card p {
  font-size: 12px;
  color: #888;
}

.download-btn {
  font-size: 20px;
  text-decoration: none;
  transition: opacity 0.3s;
}

.download-btn:hover {
  opacity: 0.7;
}

/* MODAL CONTACT */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #111;
  padding: 40px;
  border: 1px solid #333;
  border-radius: 10px;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideIn 0.3s;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.close {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
  transition: color 0.3s;
}

.close:hover {
  color: #fff;
}

.modal-content h2 {
  font-size: 32px;
  letter-spacing: 2px;
  margin-bottom: 40px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  text-align: center;
  padding: 20px;
  border: 1px solid #333;
  border-radius: 5px;
  transition: all 0.3s;
}

.contact-item:hover {
  border-color: #666;
  background: #1a1a1a;
}

.contact-item h3 {
  font-size: 16px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.contact-item a {
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
  display: inline-block;
}

.contact-item a:hover {
  opacity: 0.7;
}

/* FOOTER */
.footer {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 80px 40px 30px;
  margin-top: 80px;
  font-family: 'Helvetica', 'Arial', sans-serif;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  margin-bottom: 50px;
}

.footer-section {
  animation: fadeInUp 0.6s ease both;
}

.footer-section:nth-child(1) { animation-delay: 0.1s; }
.footer-section:nth-child(2) { animation-delay: 0.2s; }
.footer-section:nth-child(3) { animation-delay: 0.3s; }
.footer-section:nth-child(4) { animation-delay: 0.4s; }

.footer-section h4 {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #fff, transparent);
  transition: width 0.3s ease;
}

.footer-section:hover h4::after {
  width: 100%;
}

.footer-tagline {
  font-size: 12px;
  letter-spacing: 1px;
  color: #aaa;
  margin-bottom: 15px;
  font-style: italic;
}

.footer-description {
  font-size: 12px;
  color: #777;
  line-height: 1.8;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.footer-section ul li:hover {
  transform: translateX(5px);
}

.footer-section a {
  text-decoration: none;
  color: #888;
  font-size: 12px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-section a:hover::before {
  opacity: 1;
}

.footer-section a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  transition: all 0.3s ease;
  
}

.social-link:hover {
  transform: translateY(-5px) scale(1.1);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  color: #666;
  font-size: 11px;
  letter-spacing: 0.5px;
  animation: fadeIn 0.8s ease 0.5s both;
}

/* RESPONSIVE - TABLETTE (768px - 1024px) */
@media (max-width: 1024px) {
  .header-container {
    padding: 0 20px;
  }

  .logo {
    gap: 10px;
  }

  .logo-img {
    height: 40px;
  }

  .logo span {
    font-size: 14px;
  }

  .nav {
    gap: 20px;
  }

  .nav a {
    font-size: 12px;
  }

  .hero {
    padding: 0 20px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero-content {
    max-width: 100%;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid img {
    height: 250px;
  }

  .events-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .derniers-evenements,
  .agenda,
  .telechargements {
    padding: 60px 20px;
  }

  .download-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    margin-left: 0;
  }
}

/* RESPONSIVE - MOBILE (< 768px) */
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }

  /* HEADER MOBILE */
  .header {
    padding: 12px 0;
  }

  .header-container {
    padding: 0 15px;
    flex-wrap: nowrap;
    position: relative;
  }

  .logo {
    width: auto;
    gap: 10px;
  }

  .logo-img {
    height: 35px;
  }

  .logo span {
    font-size: 12px;
  }

  .logo small {
    font-size: 10px;
  }

  .hamburger {
    display: flex;
    margin-left: auto;
    order: 2;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    border-bottom: 1px solid #333;
    display: none;
    z-index: 999;
    width: 100%;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #333;
  }

  .nav a:last-child {
    border-bottom: none;
  }

  .nav-contact {
    display: block !important;
    padding: 12px 0 !important;
    margin-top: 0 !important;
    text-align: left;
    border: none !important;
    border-radius: 0;
    transition: opacity 0.3s;
  }

  .nav-contact:hover {
    background: transparent !important;
    color: #fff;
    opacity: 0.7;
  }

  .nav-social {
    display: block !important;
    padding: 12px 0 !important;
    text-align: left;
    border-bottom: 1px solid #333;
  }

  .header-right .btn-contact {
    display: none;
  }

  .header-right {
    gap: 15px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-right .social-icon {
    display: none;
  }

  .social-icon {
    font-size: 16px;
  }

  .btn-contact {
    padding: 8px 15px;
    font-size: 11px;
  }

  /* HERO MOBILE */
  .hero {
    min-height: 70vh;
    padding: 0 15px;
    margin-top: 120px;
    align-items: flex-end;
    justify-content: flex-start;
  }

  .hero-tag {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1;
    margin-bottom: 15px;
  }

  .hero-divider {
    width: 30px;
    margin-bottom: 15px;
  }

  .hero-description {
    font-size: 13px;
    margin-bottom: 25px;
  }

  .btn-primary {
    padding: 12px 20px;
    font-size: 12px;
  }

  /* SECTIONS MOBILE */
  .derniers-evenements,
  .agenda,
  .telechargements {
    padding: 50px 15px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .view-all {
    font-size: 12px;
  }

  /* GALLERY MOBILE */
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .gallery-grid img {
    height: 250px;
  }

  /* EVENTS MOBILE */
  .events-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
  }

  .event-card {
    border-radius: 3px;
  }

  .event-image {
    height: 200px;
  }

  .event-card-content {
    padding: 15px;
  }

  .event-card-content h3 {
    font-size: 16px;
  }

  .event-time,
  .event-location {
    font-size: 12px;
  }

  .event-description {
    font-size: 12px;
    margin-bottom: 15px;
  }

  .btn-reserver {
    padding: 10px 15px;
    font-size: 11px;
  }

  /* DOWNLOADS MOBILE */
  .telechargements h2 {
    font-size: 24px;
  }

  .telechargements-subtitle {
    font-size: 12px;
    margin-bottom: 40px;
  }

  .download-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 100%;
  }

  .download-card {
    padding: 25px 15px;
    gap: 15px;
  }

  .pdf-icon {
    font-size: 30px;
  }

  .download-card h3 {
    font-size: 14px;
  }

  .download-card p {
    font-size: 11px;
  }

  .download-btn {
    font-size: 18px;
  }

  /* MODAL MOBILE */
  .modal-content {
    padding: 30px 20px;
    max-width: 90%;
    width: 100%;
  }

  .modal-content h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .contact-info {
    gap: 20px;
  }

  .contact-item {
    padding: 15px;
  }

  .contact-item h3 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .contact-item a {
    font-size: 16px;
  }

  .close {
    font-size: 24px;
    right: 15px;
    top: 15px;
  }

  /* FOOTER MOBILE */
  .footer {
    padding: 50px 20px 25px;
    margin-top: 60px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 30px;
  }

  .footer-section h4 {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }

  .footer-tagline {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .footer-description {
    font-size: 11px;
    line-height: 1.6;
  }

  .footer-section ul li {
    margin-bottom: 12px;
  }

  .footer-section a {
    font-size: 11px;
    letter-spacing: 0.3px;
  }

  .social-links {
    gap: 15px;
  }

  .social-link {
    width: 36px;
    height: 36px;
  }

  .footer-bottom {
    font-size: 10px;
    letter-spacing: 0.3px;
    padding-top: 15px;
  }
}

/* RESPONSIVE - TÉLÉPHONES TRÈS PETITS (< 480px) */
@media (max-width: 480px) {
  .hero {
    margin-top: 140px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-tag {
    font-size: 10px;
  }

  .hero-description {
    font-size: 12px;
  }

  .btn-primary {
    padding: 10px 15px;
    font-size: 11px;
  }

  .section-header h2 {
    font-size: 20px;
  }

  .event-card-content h3 {
    font-size: 14px;
  }

  .modal-content {
    padding: 25px 15px;
  }

  .modal-content h2 {
    font-size: 20px;
  }
}