@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500&family=Jost:wght@300;400;500&display=swap');


.header-container {
  position: fixed;
  width: 90%;
  max-width: 1400px;
  margin: auto;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 1000;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}


.header-visible { opacity: 1; transform: translateY(0); }


.glass-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 36px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: background 0.4s ease;
}


.logo { display: flex; align-items: center; min-width: 80px; opacity: 0; animation: fadeSlideIn 0.6s ease 0.2s forwards; }


.logo img { height: 20px; width: auto; object-fit: contain; filter: brightness(1.1); }


.nav-links { display: flex; align-items: center; list-style: none; gap: 4px; margin: 0; padding: 0; }


.nav-item { opacity: 0; animation: fadeSlideIn 0.5s ease forwards; }


.nav-link-item { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 15.5px; color: rgba(255, 255, 255, 0.92); text-decoration: none; padding: 6px 14px; border-radius: 30px; position: relative; transition: all 0.3s ease; }


.nav-link-item:hover { color: white; background: rgba(255, 255, 255, 0.08); }


.nav-loading { display: flex; gap: 20px; list-style: none; padding: 0; }


.nav-loading span { display: block; width: 70px; height: 12px; border-radius: 6px; background: rgba(255, 255, 255, 0.15); animation: shimmer 1.4s infinite; }


.nav-loading span:nth-child(2) { animation-delay: 0.2s; width: 50px; }


.nav-loading span:nth-child(3) { animation-delay: 0.4s; width: 80px; }


.actions { display: flex; align-items: center; gap: 14px; opacity: 0; animation: fadeSlideIn 0.6s ease 0.5s forwards; }


.btn-billetterie { text-decoration: none; font-family: 'Jost', sans-serif; font-weight: 400; font-size: 13px; background: transparent; color: white; border: 1px solid rgba(255, 255, 255, 0.7); padding: 7px 22px; border-radius: 30px; cursor: pointer; transition: all 0.3s ease; }


.btn-billetterie:hover { background: rgba(255, 255, 255, 0.12); border-color: white; transform: scale(1.03); }


/* .lang-selector { position: relative; display: flex; align-items: center; gap: 6px; font-family: 'Jost', sans-serif; font-size: 13px; color: rgba(255, 255, 255, 0.85); cursor: pointer; padding: 6px 10px; border-radius: 20px; transition: background 0.3s ease; } */


.lang-selector { position: relative; display: none; align-items: center; gap: 6px; font-family: 'Jost', sans-serif; font-size: 13px; color: rgba(255, 255, 255, 0.85); cursor: pointer; padding: 6px 10px; border-radius: 20px; transition: background 0.3s ease; }


.lang-dropdown { position: absolute; top: calc(100% + 10px); right: 0; background: rgba(30, 25, 20, 0.95); backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 12px; padding: 6px; display: flex; flex-direction: column; gap: 2px; min-width: 90px; opacity: 0; transform: translateY(-6px); pointer-events: none; transition: all 0.25s ease; }


.lang-selector.open .lang-dropdown { opacity: 1; transform: translateY(0); pointer-events: all; }


.lang-dropdown button { font-family: 'Jost', sans-serif; font-size: 12px; color: rgba(255, 255, 255, 0.75); background: transparent; border: none; padding: 7px 10px; border-radius: 8px; cursor: pointer; text-align: left; width: 100%; }


.burger-menu, .mobile-full-screen-menu { display: none; }


.nav-item.has-dropdown { position: relative; }


.nav-arrow {
  margin-left: 5px;
  transition: transform 0.3s ease;
  vertical-align: middle;
}


.nav-item.is-open .nav-arrow { transform: rotate(180deg); }


.nav-dropdown {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 8, 6, 0.92); 
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 100;
}


.nav-item.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}


.dropdown-item { position: relative; list-style: none; }


.dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}


.dropdown-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}


.dropdown-arrow {
  margin-left: 8px;
  transform: rotate(-90deg);
  flex-shrink: 0;
}


.dropdown-item.is-open .dropdown-arrow { transform: rotate(180deg); }


.nav-submenu {
  position: absolute;
  top: 0;
  left: calc(100% + 6px);
  background: rgba(10, 8, 6, 0.92); 
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 8px;
  min-width: 200px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-6px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 101;
}


.dropdown-item.is-open .nav-submenu,
.dropdown-item:hover .nav-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}


.submenu-item { list-style: none; }


.submenu-link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}


.submenu-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}


.mobile-nav-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}


.mobile-toggle-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
}


.mobile-sub-list {
  list-style: none;
  padding: 8px 0 0 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}


@media (max-width: 1024px) {
  
  .header-container { width: 100%; top: 0px; }
  .glass-nav { padding: 14px 20px; }
  .nav-links, .actions { display: none; }

  .burger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .burger-menu span {
    display: block;
    width: 100%;
    height: 1.5px;
    background-color: #E9D29F;
    border-radius: 2px;
  }

  .mobile-full-screen-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    z-index: 3000;
    padding: 0;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.03);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                visibility 0.4s;
    background: radial-gradient(circle at center, #1E150B 0%, #0A0704 70%, #030201 100%);
  }

  .mobile-full-screen-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
      90deg,
      transparent,
      transparent 40px,
      rgba(0, 0, 0, 0.15) 41px,
      rgba(0, 0, 0, 0.15) 42px
    );
    pointer-events: none;
  }

  .mobile-full-screen-menu.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .mobile-header-brand {
    text-align: center;
    width: 100%;
    padding: 80px 20px 36px;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .mobile-header-brand .brand-small {
    font-family: 'Jost', sans-serif;
    font-size: 9px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #C5B9A5;
    display: block;
    margin-bottom: 6px;
    opacity: 0.8;
  }

  .mobile-header-brand .brand-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #E9D29F;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  }

  .mobile-close-btn {
    position: fixed;
    top: 28px;
    right: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 3010;
  }

  .mobile-menu-inner {
    width: 100%;
    max-width: 420px;
    padding: 0 28px 52px;
    box-sizing: border-box;
    flex: 1;
  }

  .mobile-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    text-align: left;
    width: 100%;
  }

  .mobile-nav-item {
    width: 100%;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 0;
  }

  .mobile-nav-item:last-child {
    border-bottom: none;
  }

  .mobile-full-screen-menu.open .mobile-nav-item {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
  }

  .mobile-nav-link {
    font-family: 'Jost', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }

  .mobile-nav-link:hover {
    color: #E9D29F;
  }

  .mobile-toggle-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    opacity: 0.5;
    flex-shrink: 0;
  }

  .mobile-sub-list {
    list-style: none;
    padding: 6px 0 0 16px;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .mobile-sub-list .mobile-nav-item {
    padding: 11px 0;
    border-bottom: none;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: left;
  }

  .mobile-sub-list .mobile-nav-link {
    font-size: 10.5px;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.40);
  }

  .mobile-sub-list .mobile-nav-link:hover {
    color: #E9D29F;
  }

  .mobile-btn-billetterie {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #E9D29F 0%, #C5B9A5 100%);
    color: #1a130b;
    border: none;
    padding: 14px 48px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    transition: opacity 0.3s ease;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .mobile-btn-billetterie:hover {
    opacity: 0.88;
  }

  /* .mobile-lang-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    margin-top: 8px !important;
    padding: 8px 0 0;
  } */
   .mobile-lang-selector {
    display: none;
    justify-content: center;
    gap: 10px;
    font-family: 'Jost', sans-serif;
    font-size: 11px;
    font-weight: 500;
    margin-top: 8px !important;
    padding: 8px 0 0;
  }

  .mobile-lang-opt {
    cursor: pointer;
    transition: all 0.3s ease;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(233, 210, 159, 0.25);
    color: rgba(255, 255, 255, 0.5);
    font-size: 10.5px;
    letter-spacing: 0.05em;
  }

  .mobile-lang-opt.active,
  .mobile-lang-opt:hover {
    color: #1a130b;
    background: #E9D29F;
    border-color: #E9D29F;
  }

}


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


@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}