
.happy-monkey-regular {
  font-family: "Happy Monkey", system-ui;
  font-weight: 400;
  font-style: normal;
}



.quicksand {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

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

/* ================= BODY ================= */
body {
  font-family: 'Quicksand', sans-serif;
  background-color: #f5f2eb;
  color: #222;
  line-height: 1.5;
}

/* ================= LOGO ================= */
.logo-header {
  max-width: 200px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ================= HEADER ================= */
header {
  background-color: #0099cc;
  color: #fff;
}

header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 4px;
}

/* ================= BUTTONS ================= */
.btn {
  padding: 10px 16px;
  background: #0099cc;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0,153,204,0.25);
  transition: 0.2s ease;
}

.btn:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-1px);
}

.btn-orange { background: #ff6b35; }

.btn-orange:hover { 
  background: #e55a2b; 
  color: #fff;
}

.btn-small {
  padding: 8px 14px;
  font-size: 0.85rem;
}

/* ================= MAIN ================= */
main {
  max-width: 1100px;
  margin: 28px auto 40px;
  padding: 0 16px;
}

section {
  margin-bottom: 28px;
  background: #fff;
  padding: 18px;
  border-radius: 8px;
}

/* ================= HERO ================= */
.hero {
  background-color: #d2f0ff; /* light blue */
  padding: 10px 16px; /* slimmed padding */
  border-radius: 8px;
  margin-bottom: 20px;
  color: #004a80; /* deep blue for headings */
}

.hero h1, .hero h2, .hero h3 {
  font-family: 'Happy Monkey', sans-serif;
  color: #ff6b35; /* headings */
  margin-bottom: 6px;
}

.hero p {
  color: #006699; /* paragraphs */
  margin-bottom: 6px;
}

/* Highlight keywords in hero */
.hero .highlight {
  color: #ff6b35; /* orange accent */
  font-weight: 700;
}

/* ================= GRID & CARDS ================= */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}


.card {
  background: #fff;
  border-radius: 8px;
  padding: 14px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.07);
}

/* ================= IMAGES ================= */
.portrait {
  width: 100%;
  max-width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto 8px;
  display: block;
}

.logo-partenaire {
  max-width: 200px;
  display: block;
  margin: 0 auto 12px;
  transition: transform 0.2s;
}

.logo-partenaire:hover {
  transform: scale(1.03);
}

/* ================= TABLE STYLING ================= */
table {
    width: 100%;               /* Full width */
    border-collapse: collapse; /* Merge borders */
    margin-bottom: 30px;       /* Space below table */
    table-layout: fixed;       /* Equal column widths */
    background-color: #f0f8ff; /* Light blue background */
    border-radius: 5px;        /* Rounded corners */
    overflow: hidden;
}

table th,
table td {
    border: 1px solid #0077b6; /* Blue borders */
    padding: 10px;
    text-align: center;        /* Center text */
    vertical-align: middle;
}

table th {
    background-color: #0096c7; /* Darker blue for header */
    color: #fff;
    font-weight: bold;
}

table tbody tr:nth-child(odd) {
    background-color: #e0f7ff; /* Zebra striping */
}

table tbody tr:hover {
    background-color: #caf0f8; /* Hover effect */
}

/* Responsive tables for small screens */
@media (max-width: 768px) {
    table {
        display: block;
        overflow-x: auto;
    }
}


/* ================= CAROUSEL ================= */
.carousel-section {
  height: 400px;
  margin: 20px auto 32px;
  overflow: hidden;
  border-radius: 12px;
  max-width: 1100px;
}

.carousel {
  display: flex;
  width: 800%;
  animation: scroll 60s linear infinite;
}

.carousel img {
  width: 12.5%;
  height: 400px;
  object-fit: contain;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-87.5%); }
}

/* ================= HERO FLEX ================= */
.hero-container {
  display: flex;
  gap: 30px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-image img {
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

/* ================= GALLERY ================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-item {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  transition: 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ================= FOOTER ================= */
footer {
  background: #e0e0e0;
  padding: 8px;
  text-align: center;
  font-size: 0.85rem;
}

/* ================= MISC ================= */
html { scroll-behavior: smooth; }

@media (max-width: 768px) {
  .hero-container { flex-direction: column; }
}

/* ================= SCROLL-TO-TOP BUTTON ================= */
.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #ff6b35; /* orange accent */
    color: #fff;
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    z-index: 1000;
}

.scroll-top:hover {
    background: #ff6b35;
    color: #fff;
    transform: scale(1.1);
}

.billetterie-wrapper {
    text-align: center;
    margin: 20px 0;
}

/* ================= HYPERLINK TEXT ================= */
.hyperlink {
  color: #0096c7;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.hyperlink:hover {
  color: #ff6b35;
  text-decoration: underline;
}

