main {
  width: 100%;
  overflow: hidden;
}

.text-red {
  color: #D1212A;
}

.text-yellow {
  color: #FDD923;
}

.text-white {
  color: #ffffff;
}

.text-dark {
  color: #1a1a1a;
}

.bg-red {
  background-color: #D1212A;
}

.bg-yellow {
  background-color: #FDD923;
}

.bg-dark {
  background-color: #1a1a1a;
}

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

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  border-bottom: 3px solid #D1212A;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s ease, box-shadow 0.3s ease;
}
.main-header.visible {
  transform: translateY(0);
}
.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}
.main-header.scrolled .logo-mobile {
  opacity: 0;
  transform: translateY(-50%) translateX(-10px);
  pointer-events: none;
}
.main-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-header .logo-link {
  position: relative;
  overflow: hidden;
}
.main-header .logo-img {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}
.main-header .logo-link:hover .logo-img {
  transform: scale(1.05);
}
.main-header .logo-mobile {
  display: none;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
@media (max-width: 768px) {
  .main-header .logo-mobile {
    display: block;
  }
}
.main-header .logo-mobile-img {
  height: 40px;
  width: auto;
}
@media (max-width: 480px) {
  .main-header .logo-mobile-img {
    height: 35px;
  }
}
.main-header .nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}
.main-header .nav-links li {
  overflow: hidden;
}
.main-header .nav-link {
  color: #1a1a1a;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  padding: 5px 0;
}
.main-header .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D1212A;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.main-header .nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.main-header .nav-link:hover {
  color: #D1212A;
}
.main-header .nav-link::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 5px;
  color: #D1212A;
  opacity: 0;
  transform: translateX(-2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.main-header .nav-link:hover::after {
  opacity: 0.5;
  animation: glitch 0.3s ease forwards;
}
.main-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 100;
}
.main-header .menu-toggle .bar {
  display: block;
  width: 28px;
  height: 3px;
  background: #FDD923;
  opacity: 0.8;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}
.main-header .menu-toggle.active .bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.main-header .menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.main-header .menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@keyframes glitch {
  0% {
    transform: translateX(-2px);
    opacity: 0.5;
  }
  25% {
    transform: translateX(2px);
    opacity: 0.3;
  }
  50% {
    transform: translateX(-1px);
    opacity: 0.5;
  }
  75% {
    transform: translateX(1px);
    opacity: 0.3;
  }
  100% {
    transform: translateX(0);
    opacity: 0;
  }
}
.btn-nav {
  padding: 12px 25px;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.btn-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.btn-nav:hover::before {
  width: 300px;
  height: 300px;
}
.btn-nav:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(209, 33, 42, 0.4);
}

.btn {
  padding: 15px 35px;
  display: inline-block;
  text-transform: uppercase;
  font-weight: 900;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
}
.btn:hover {
  transform: translateY(-3px);
}

.btn-yellow {
  background: #FDD923;
  color: #D1212A;
}
.btn-yellow:hover {
  background: rgb(253.4594594595, 225.7297297297, 85.5405405405);
}

.btn-red {
  background: #D1212A;
  color: #FDD923;
}

.btn-outline-white {
  border: 3px solid #ffffff;
  color: #ffffff;
  margin-left: 20px;
}
.btn-outline-white:hover {
  background: #ffffff;
  color: #D1212A;
}

.hero-split {
  display: flex;
  min-height: 100vh;
  position: relative;
}

.hero-left {
  flex: 1;
  background: #FDD923;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 60px 60px;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(209, 33, 42, 0.05);
  border-radius: 50%;
}

.hero-content {
  max-width: 600px;
  position: relative;
  z-index: 2;
}

.hero-words {
  margin-bottom: 40px;
}

.hero-word {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #D1212A;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1.1;
  opacity: 0;
  transform: translateX(-30px);
}
.hero-word:hover {
  letter-spacing: 2px;
  transition: letter-spacing 0.3s ease;
}

.hero-subtitle {
  margin-bottom: 40px;
  padding-left: 20px;
  border-left: 4px solid #D1212A;
  opacity: 0;
  transform: translateY(20px);
}

.subtitle-name {
  display: block;
  font-size: 1.3rem;
  font-weight: 900;
  color: #D1212A;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.subtitle-desc {
  display: block;
  font-size: 1rem;
  color: rgba(209, 33, 42, 0.7);
  font-weight: 500;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #D1212A;
  color: #FDD923;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.btn-hero-primary .btn-arrow {
  transition: transform 0.3s ease;
}
.btn-hero-primary:hover {
  background: rgb(173.7636363636, 27.4363636364, 34.9190082645);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(209, 33, 42, 0.3);
}
.btn-hero-primary:hover .btn-arrow {
  transform: translateX(5px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;
  background: transparent;
  color: #D1212A;
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #D1212A;
  transition: all 0.3s ease;
}
.btn-hero-secondary:hover {
  background: #D1212A;
  color: #FDD923;
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
}
.hero-scroll span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D1212A;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: #D1212A;
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FDD923;
  animation: scrollDown 1.5s ease-in-out infinite;
}

@keyframes scrollDown {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
.hero-right {
  width: 45%;
  background: #D1212A;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(26, 26, 26, 0.03) 40px, rgba(26, 26, 26, 0.03) 42px);
}
.hero-right::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  border: 3px solid rgba(253, 217, 35, 0.1);
  border-radius: 50%;
}

.hero-logo-container {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
}

.hero-logo {
  max-width: 350px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(26, 26, 26, 0.3));
}

@media (max-width: 1200px) {
  .hero-left {
    padding: 120px 40px 60px;
  }
  .hero-right {
    width: 40%;
  }
  .hero-logo {
    max-width: 280px;
  }
}
@media (max-width: 992px) {
  .hero-split {
    flex-direction: column-reverse;
    min-height: auto;
  }
  .hero-left {
    padding: 60px 30px 60px;
    min-height: 60vh;
  }
  .hero-right {
    width: 100%;
    min-height: 40vh;
  }
  .hero-scroll {
    display: none;
  }
  .hero-word {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
}
@media (max-width: 768px) {
  .hero-left {
    padding: 50px 20px 40px;
    min-height: auto;
    flex: none;
  }
  .hero-word {
    font-size: clamp(1.8rem, 10vw, 2.8rem);
  }
  .hero-subtitle {
    padding-left: 15px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    max-width: 300px;
  }
  .subtitle-name {
    font-size: 1.1rem;
  }
  .subtitle-desc {
    font-size: 0.9rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.85rem;
  }
  .hero-logo {
    max-width: 180px;
  }
}
@media (max-width: 480px) {
  .hero-left {
    padding: 30px 15px 30px;
  }
  .hero-words {
    margin-bottom: 25px;
  }
  .hero-word {
    font-size: clamp(1.5rem, 12vw, 2.2rem);
  }
  .hero-subtitle {
    margin-bottom: 25px;
    max-width: 260px;
  }
  .hero-buttons {
    max-width: 240px;
    gap: 10px;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 12px 20px;
    font-size: 0.8rem;
  }
  .hero-logo {
    max-width: 140px;
  }
}
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-header {
  margin-bottom: 50px;
}

.diagonal-top {
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  padding-top: 120px;
  margin-top: -80px;
}

.grid-spectacles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .grid-spectacles {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .grid-spectacles {
    gap: 25px;
  }
}

.card {
  position: relative;
  border: 3px solid #FDD923;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: #D1212A;
  transform: translateY(-10px);
  box-shadow: 10px 10px 0px #D1212A;
}
.card .card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #D1212A;
  color: #FDD923;
  padding: 5px 15px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.card .card-img {
  height: 300px;
  background-size: cover;
  background-position: center;
  filter: grayscale(50%);
  transition: 0.3s;
}
.card:hover .card-img {
  filter: grayscale(0%);
}
.card .card-body {
  padding: 25px;
  flex-grow: 1;
}
.card .card-body h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.card .link-arrow {
  display: inline-block;
  margin-top: 20px;
  font-weight: 900;
  text-transform: uppercase;
}

.agenda-item {
  display: flex;
  align-items: center;
  padding: 25px 0;
  border-bottom: 2px solid rgba(253, 217, 35, 0.3);
}
.agenda-item .agenda-date {
  font-size: 1.8rem;
  font-weight: 900;
  margin-right: 30px;
  min-width: 120px;
}
.agenda-item .agenda-info {
  flex-grow: 1;
}
.agenda-item .agenda-info strong {
  display: block;
  font-size: 1.2rem;
  text-transform: uppercase;
}
.agenda-item .btn-small {
  padding: 10px 20px;
  font-size: 0.8rem;
  clip-path: none;
}

.main-footer {
  padding: 80px 0 40px;
  margin-top: -50px;
  padding-top: 130px;
  clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
  background: linear-gradient(180deg, #1a1a1a 0%, rgb(13.25, 13.25, 13.25) 100%);
  color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .footer-logo {
  height: 60px;
  margin-bottom: 20px;
}
.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.6);
}
.footer-brand .footer-socials {
  display: flex;
  gap: 15px;
}
.footer-brand .social-icon {
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.footer-brand .social-icon:hover {
  background: #D1212A;
  border-color: #D1212A;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #D1212A;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.footer-col a:hover {
  color: #FDD923;
  padding-left: 5px;
}

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}
.footer-contact .contact-item .icon {
  color: #D1212A;
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  font-size: 0.85rem;
}
.footer-bottom .copyright {
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom .footer-legal {
  display: flex;
  gap: 30px;
}
.footer-bottom .footer-legal a {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.footer-bottom .footer-legal a:hover {
  color: #FDD923;
}

.company-section {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
  overflow: hidden;
}
.company-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(209, 33, 42, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(253, 217, 35, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.company-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, transparent 49.5%, rgba(209, 33, 42, 0.03) 49.5%, rgba(209, 33, 42, 0.03) 50.5%, transparent 50.5%);
  background-size: 100px 100%;
  pointer-events: none;
}
.company-section .company-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.company-section .lead {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}
.company-section .company-values {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.company-section .company-values .value-item {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  padding: 10px 20px;
  background: rgba(253, 217, 35, 0.1);
  border-left: 3px solid #D1212A;
  transition: all 0.3s ease;
}
.company-section .company-values .value-item:hover {
  background: rgba(253, 217, 35, 0.2);
  transform: translateX(5px);
}
.company-section .company-image {
  position: relative;
}
.company-section .company-image .image-stack {
  position: relative;
}
.company-section .company-image .image-stack::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #FDD923 0%, rgb(252.7702702703, 212.6351351351, 9.7297297297) 100%);
  z-index: -1;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
  transition: all 0.4s ease;
}
.company-section .company-image .image-stack img {
  width: 100%;
  filter: grayscale(100%);
  border: 3px solid #D1212A;
  transition: all 0.5s ease;
}
.company-section .company-image .image-stack img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.company-section .company-image:hover .image-stack::before {
  transform: translate(-5px, 5px);
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .company-section .company-grid {
    grid-template-columns: 1fr;
  }
  .company-section .company-grid .company-image {
    order: -1;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .main-header {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    padding: 10px 0;
  }
  .main-header.scrolled {
    background: transparent !important;
    box-shadow: none !important;
  }
  .main-header nav {
    justify-content: flex-end;
  }
  .main-header .logo-link {
    display: none;
  }
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #D1212A !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.4);
    margin-right: 10px;
  }
  .menu-toggle .bar {
    background: #ffffff;
    width: 22px;
    height: 2px;
    margin: 3px 0;
  }
  .menu-toggle.active {
    background: #1a1a1a !important;
  }
  .menu-toggle.active .bar {
    background: #ffffff;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 85%;
    max-width: 400px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
    flex-direction: column;
    padding: 100px 40px 50px;
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid #D1212A;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    gap: 0;
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(209, 33, 42, 0.1);
  }
  .nav-links .nav-link {
    display: block;
    padding: 20px 0;
    font-size: 1.1rem;
  }
  .nav-links .btn-nav {
    margin-top: 30px;
    text-align: center;
    display: block;
  }
  .hero-split {
    padding-top: 0 !important;
  }
  .hero-left {
    padding: 60px 20px 40px !important;
    justify-content: center;
  }
  .hero-content {
    text-align: center;
  }
  .hero-words {
    align-items: center;
  }
  .hero-word {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }
  .hero-line {
    gap: 8px;
  }
  .hero .hero-subtitle {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .hero-buttons .btn-hero {
    width: 100%;
    justify-content: center;
  }
  .btn-outline-white {
    margin-left: 0;
  }
  .scroll-indicator {
    bottom: 100px;
  }
  .shape-1 {
    width: 300px;
    height: 300px;
  }
  .shape-2 {
    width: 200px;
    height: 200px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-bottom .footer-legal {
    justify-content: center;
  }
  .agenda-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .agenda-item .btn-small {
    width: 100%;
    text-align: center;
  }
}
.filter-controls {
  display: flex;
  gap: 15px;
  margin: 30px 0;
}
.filter-controls .filter-btn {
  background: none;
  border: 2px solid #D1212A;
  color: #D1212A;
  padding: 10px 25px;
  font-weight: 900;
  cursor: pointer;
  transition: 0.3s;
}
.filter-controls .filter-btn.active, .filter-controls .filter-btn:hover {
  background: #D1212A;
  color: #FDD923;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 60px;
  margin-top: 50px;
}
@media (max-width: 992px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

.pro-side {
  border: 3px solid #D1212A;
  height: fit-content;
  position: sticky;
  top: 100px;
}
.pro-side .pro-header {
  padding: 15px;
  text-transform: uppercase;
}
.pro-side .pro-content {
  padding: 25px;
}

.btn-dl {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  background: #ffffff;
  margin-bottom: 10px;
  border-left: 4px solid #D1212A;
  font-weight: 700;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.btn-dl:hover {
  background: #f8f8f8;
  padding-left: 20px;
}
.btn-dl .dl-format {
  background: #D1212A;
  color: #ffffff;
  font-size: 0.7rem;
  padding: 3px 8px;
  margin-right: 15px;
  font-weight: 900;
}
.btn-dl .dl-name {
  font-size: 0.9rem;
}

.page-hero {
  position: relative;
  padding: 180px 0 80px;
  background: linear-gradient(135deg, #1a1a1a 0%, rgb(51.5, 51.5, 51.5) 100%);
  overflow: hidden;
}
.page-hero .page-hero-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(209, 33, 42, 0.15) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(253, 217, 35, 0.1) 0%, transparent 50%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}
.breadcrumb a:hover {
  color: #FDD923;
}
.breadcrumb .separator {
  color: rgba(255, 255, 255, 0.3);
}
.breadcrumb .current {
  color: #FDD923;
}
.breadcrumb-light a,
.breadcrumb-light .separator {
  color: rgba(255, 255, 255, 0.7);
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.page-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  font-weight: 400;
}

.detail-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}
.detail-hero .detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.detail-hero .detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.95) 0%, rgba(26, 26, 26, 0.3) 100%);
}

.detail-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
}

.detail-hero-badge {
  display: inline-block;
  background: #D1212A;
  color: #FDD923;
  padding: 8px 20px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.detail-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.1;
}

.detail-tagline {
  font-size: 1.2rem;
  color: #FDD923;
  font-weight: 400;
}

.detail-content {
  padding-top: 80px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}
@media (max-width: 1100px) {
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

.detail-main {
  min-width: 0;
}

.detail-block {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.detail-block:last-child {
  border-bottom: none;
}
.detail-block-highlight {
  background: #f8f8f8;
  padding: 30px;
  border-left: 4px solid #D1212A;
  margin-left: -30px;
  margin-right: -30px;
}
@media (max-width: 768px) {
  .detail-block-highlight {
    margin-left: 0;
    margin-right: 0;
  }
}

.detail-block-title {
  font-size: 1.5rem;
  margin-bottom: 25px;
}

.detail-text .lead {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 20px;
}
.detail-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.8);
}

.intention-quote {
  margin: 0;
  padding: 0;
}
.intention-quote p {
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 15px;
}
.intention-quote cite {
  font-style: normal;
  font-weight: 700;
  color: #D1212A;
}

.credits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.credit-item {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background: #f8f8f8;
  border-left: 3px solid #FDD923;
}
.credit-item .credit-role {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 5px;
}
.credit-item .credit-name {
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}
@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  overflow: hidden;
  border: 3px solid #FDD923;
}
.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
  filter: grayscale(30%);
}
.gallery-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.gallery-credit {
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.5);
  margin-top: 15px;
  text-align: right;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #1a1a1a;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.video-placeholder .play-icon {
  font-size: 3rem;
  margin-bottom: 10px;
}

@media (max-width: 1100px) {
  .detail-sidebar {
    order: -1;
  }
}

.sidebar-block {
  margin-bottom: 30px;
  border: 3px solid #FDD923;
  overflow: hidden;
}
.sidebar-block h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 15px 20px;
  background: #FDD923;
  color: #D1212A;
}

.sidebar-info .info-list {
  padding: 20px;
}
.sidebar-info .info-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.sidebar-info .info-list li:last-child {
  border-bottom: none;
}
.sidebar-info .info-list .info-label {
  color: rgba(26, 26, 26, 0.6);
}
.sidebar-info .info-list .info-value {
  font-weight: 700;
}

.sidebar-dates .mini-agenda {
  display: flex;
  gap: 15px;
  padding: 15px 20px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  transition: background 0.3s ease;
}
.sidebar-dates .mini-agenda:hover {
  background: #f8f8f8;
}
.sidebar-dates .mini-agenda:last-child {
  border-bottom: none;
}
.sidebar-dates .mini-date {
  background: #D1212A;
  color: #ffffff;
  padding: 10px;
  text-align: center;
  min-width: 60px;
}
.sidebar-dates .mini-date .date-day {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}
.sidebar-dates .mini-date .date-month {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
}
.sidebar-dates .mini-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sidebar-dates .mini-info strong {
  font-size: 0.9rem;
}
.sidebar-dates .mini-info span {
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.6);
}

.sidebar-pro {
  border-color: #D1212A;
}
.sidebar-pro .pro-header {
  padding: 15px 20px;
}
.sidebar-pro .pro-header h4 {
  background: none;
  padding: 0;
  color: #FDD923;
}
.sidebar-pro .pro-content {
  padding: 20px;
}
.sidebar-pro .pro-content > p {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 20px;
}
.sidebar-pro .download-list {
  margin-bottom: 25px;
}
.sidebar-pro .pro-contact {
  padding-top: 20px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.sidebar-pro .pro-contact h5 {
  font-size: 0.85rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.sidebar-pro .pro-contact > p {
  font-weight: 700;
  margin-bottom: 15px;
}

.section-nav-spectacles {
  padding: 40px 0;
}

.nav-spectacles-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
}
@media (max-width: 768px) {
  .nav-spectacles-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.nav-spectacle-link {
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all 0.3s ease;
}
.nav-spectacle-link:hover {
  color: #FDD923;
}
.nav-spectacle-link .nav-direction {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}
.nav-spectacle-link .nav-title {
  font-weight: 700;
  font-size: 1.1rem;
}
.nav-spectacle-link.nav-prev {
  text-align: left;
}
.nav-spectacle-link.nav-next {
  text-align: right;
  align-items: flex-end;
}
.nav-spectacle-link.nav-all {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 25px;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.nav-spectacle-link.nav-all:hover {
  border-color: #FDD923;
  background: rgba(253, 217, 35, 0.1);
}

.card-spectacle .card-meta {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  opacity: 0.7;
}
.card-spectacle .card-footer {
  margin-top: 20px;
}

.card-archive {
  filter: none;
}
.card-archive .card-img {
  filter: grayscale(100%);
}
.card-archive:hover .card-img {
  filter: grayscale(50%);
}

.nav-link.active {
  color: #D1212A;
}
.nav-link.active::before {
  transform: scaleX(1);
}

.page-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #1a1a1a 0%, rgb(46.4, 46.4, 46.4) 100%);
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(209, 33, 42, 0.15) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(253, 217, 35, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.page-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.page-header .container {
  position: relative;
  z-index: 1;
}

.page-header-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: #ffffff;
  margin-bottom: 15px;
  line-height: 1.1;
  -webkit-hyphens: auto;
  /* Pour Safari */
  hyphens: auto;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-header-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  max-width: 600px;
}

.spectacles-list {
  padding: 80px 0 100px;
}

.spectacle-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 3px solid rgba(209, 33, 42, 0.1);
}
@media (max-width: 992px) {
  .spectacle-featured {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.spectacle-featured-img {
  position: relative;
  overflow: hidden;
  border: 4px solid #FDD923;
}
.spectacle-featured-img img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all 0.5s ease;
}
.spectacle-featured-img:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.spectacle-featured-img .spectacle-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #D1212A;
  color: #FDD923;
  padding: 10px 20px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.spectacle-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spectacle-featured-content .spectacle-category {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D1212A;
  font-weight: 700;
  margin-bottom: 15px;
}

.spectacle-featured-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.spectacle-featured-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 25px;
}

.spectacle-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-bottom: 30px;
}
.spectacle-meta span {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.7);
}
.spectacle-meta span strong {
  color: #1a1a1a;
}

.spectacles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.spectacle-card {
  border: 3px solid #FDD923;
  transition: all 0.4s ease;
  overflow: hidden;
}
.spectacle-card:hover {
  border-color: #D1212A;
  transform: translateY(-8px);
  box-shadow: 8px 8px 0px #D1212A;
}
.spectacle-card:hover .spectacle-card-overlay {
  opacity: 1;
}
.spectacle-card:hover .spectacle-card-img img {
  transform: scale(1.08);
  filter: grayscale(0%);
}

.spectacle-card-link {
  display: block;
  color: inherit;
}

.spectacle-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.spectacle-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: all 0.5s ease;
}

.spectacle-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(209, 33, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.spectacle-card-overlay .see-more {
  color: #FDD923;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.spectacle-card-content {
  padding: 25px;
  background: #FDD923;
}
.spectacle-card-content .spectacle-category {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D1212A;
  font-weight: 700;
  margin-bottom: 10px;
}

.spectacle-card-title {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.spectacle-card-text {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.8);
  line-height: 1.6;
  margin-bottom: 15px;
}

.spectacle-card-meta {
  display: flex;
  gap: 10px;
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.6);
  font-weight: 600;
}

.spectacle-card-archive {
  border-color: rgba(26, 26, 26, 0.2);
}
.spectacle-card-archive .spectacle-card-img img {
  filter: grayscale(100%);
}
.spectacle-card-archive .spectacle-card-content {
  background: #f8f8f8;
}
.spectacle-card-archive:hover {
  border-color: rgba(26, 26, 26, 0.5);
  box-shadow: 8px 8px 0px rgba(26, 26, 26, 0.2);
}
.spectacle-card-archive:hover .spectacle-card-img img {
  filter: grayscale(50%);
}

.section-cta {
  padding: 80px 0;
  text-align: center;
}
.section-cta .cta-content {
  max-width: 600px;
  margin: 0 auto;
}
.section-cta .cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 15px;
}
.section-cta .cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.detail-hero-full {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #1a1a1a 0%, rgba(26, 26, 26, 0.8) 30%, rgba(26, 26, 26, 0.3) 70%, rgba(26, 26, 26, 0.5) 100%);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
}

.detail-hero-badge {
  display: inline-block;
  background: #D1212A;
  color: #FDD923;
  padding: 10px 25px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
}

.detail-hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  color: #ffffff;
  line-height: 1;
  margin-bottom: 20px;
}

.detail-hero-tagline {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

.detail-hero-infos {
  position: relative;
  z-index: 2;
  background: #D1212A;
  padding: 25px 0;
}

.hero-info-items {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .hero-info-items {
    gap: 30px;
  }
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}
.hero-info-item .info-icon {
  font-size: 1.5rem;
}
.hero-info-item .info-text {
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-intro {
  padding: 80px 0;
  background: #f8f8f8;
}

.intro-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border: none;
}
.intro-quote p {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  line-height: 1.7;
  color: #1a1a1a;
  position: relative;
}
.intro-quote p::before, .intro-quote p::after {
  content: '"';
  color: #D1212A;
  font-size: 3rem;
  font-family: Georgia, serif;
  line-height: 0;
  vertical-align: -0.4em;
}
.intro-quote p::before {
  margin-right: 5px;
}
.intro-quote p::after {
  margin-left: 5px;
}

.detail-sections {
  padding: 80px 0;
}

.detail-section {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.detail-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .detail-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.section-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media (max-width: 768px) {
  .section-marker {
    flex-direction: row;
  }
}

.marker-number {
  font-size: 2rem;
  font-weight: 900;
  color: #D1212A;
  line-height: 1;
}

.marker-line {
  width: 2px;
  flex-grow: 1;
  background: linear-gradient(to bottom, #D1212A, transparent);
  min-height: 50px;
}
@media (max-width: 768px) {
  .marker-line {
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #D1212A, transparent);
    min-height: auto;
  }
}

.section-content h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #1a1a1a;
}

.text-columns {
  column-count: 2;
  column-gap: 40px;
}
@media (max-width: 768px) {
  .text-columns {
    column-count: 1;
  }
}
.text-columns p {
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 20px;
}

.detail-section-intention {
  display: block;
  padding: 0;
  border: none;
  margin-bottom: 80px;
}

.intention-block {
  position: relative;
  background: #1a1a1a;
  padding: 50px;
  margin-left: 120px;
}
@media (max-width: 992px) {
  .intention-block {
    margin-left: 0;
    padding: 30px;
  }
}

.intention-decoration {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  background: #FDD923;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
@media (max-width: 992px) {
  .intention-decoration {
    display: none;
  }
}

.intention-content h3 {
  color: #FDD923;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 25px;
}
.intention-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 20px;
}
.intention-content cite {
  color: #D1212A;
  font-style: normal;
  font-weight: 700;
}

.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 15px;
}
@media (max-width: 992px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}
@media (max-width: 600px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
  }
}

.gallery-item {
  overflow: hidden;
  border: 3px solid #FDD923;
}
.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 992px) {
  .gallery-item-large {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 600px) {
  .gallery-item-large {
    grid-column: span 1;
  }
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
  transition: all 0.5s ease;
}
.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.gallery-credit {
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(26, 26, 26, 0.5);
  text-align: right;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.team-item {
  padding: 20px;
  background: #f8f8f8;
  border-left: 3px solid #FDD923;
  transition: all 0.3s ease;
}
.team-item:hover {
  background: #FDD923;
  border-color: #D1212A;
}
.team-item .team-role {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(26, 26, 26, 0.5);
  margin-bottom: 5px;
}
.team-item .team-name {
  font-weight: 700;
  font-size: 1rem;
}
.team-item-main {
  background: #D1212A;
  border-color: #FDD923;
  grid-column: span 2;
}
@media (max-width: 600px) {
  .team-item-main {
    grid-column: span 1;
  }
}
.team-item-main .team-role {
  color: rgba(255, 255, 255, 0.7);
}
.team-item-main .team-name {
  color: #ffffff;
  font-size: 1.2rem;
}
.team-item-main:hover {
  background: rgb(186.9772727273, 29.5227272727, 37.5743801653);
}

.video-wrapper {
  background: #1a1a1a;
  border: 3px solid #FDD923;
}

.video-placeholder-custom {
  aspect-ratio: 16/9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.video-placeholder-custom .play-button {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.video-placeholder-custom .play-button span {
  font-size: 2rem;
  margin-left: 5px;
}
.video-placeholder-custom .play-button:hover {
  border-color: #D1212A;
  background: rgba(209, 33, 42, 0.2);
}
.video-placeholder-custom p {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.detail-pro-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 992px) {
  .pro-grid {
    grid-template-columns: 1fr;
  }
}

.pro-dates h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.dates-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.date-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.date-item:hover {
  border-color: #D1212A;
  transform: translateX(5px);
}
@media (max-width: 600px) {
  .date-item {
    flex-wrap: wrap;
  }
}

.date-badge {
  background: #D1212A;
  color: #ffffff;
  padding: 15px;
  text-align: center;
  min-width: 70px;
}
.date-badge .day {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.date-badge .month {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.date-info {
  flex-grow: 1;
}
.date-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
}
.date-info span {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.6);
}

.date-link {
  color: #D1212A;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  white-space: nowrap;
}
.date-link:hover {
  color: rgb(164.9545454545, 26.0454545455, 33.1487603306);
}

.pro-box {
  border: 3px solid #D1212A;
  overflow: hidden;
}

.pro-box-header {
  background: #D1212A;
  padding: 20px 25px;
}
.pro-box-header h3 {
  color: #ffffff;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.pro-box-content {
  padding: 30px;
  background: #ffffff;
}
.pro-box-content > p {
  color: rgba(26, 26, 26, 0.7);
  margin-bottom: 25px;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: #f8f8f8;
  border-left: 4px solid #D1212A;
  color: #1a1a1a;
  transition: all 0.3s ease;
}
.download-btn:hover {
  background: #FDD923;
  padding-left: 20px;
}
.download-btn .dl-icon {
  font-size: 1.5rem;
}
.download-btn .dl-info {
  display: flex;
  flex-direction: column;
}
.download-btn .dl-info strong {
  font-size: 0.95rem;
}
.download-btn .dl-info small {
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.5);
  font-weight: 400;
}

.pro-contact-box {
  padding-top: 25px;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.pro-contact-box p {
  margin-bottom: 10px;
}
.pro-contact-box p:first-child {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.pro-contact-box .btn {
  margin-top: 15px;
}

.other-spectacles {
  padding: 100px 0;
  background: #ffffff;
}

.other-spectacles-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: 50px;
}

.other-spectacles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 992px) {
  .other-spectacles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .other-spectacles-grid {
    grid-template-columns: 1fr;
  }
}

.other-spectacle-card {
  display: block;
  border: 3px solid #FDD923;
  overflow: hidden;
  transition: all 0.4s ease;
  color: #1a1a1a;
}
.other-spectacle-card:hover {
  border-color: #D1212A;
  transform: translateY(-8px);
  box-shadow: 8px 8px 0px #D1212A;
}
.other-spectacle-card:hover .other-card-overlay {
  opacity: 1;
}
.other-spectacle-card:hover .other-card-img img {
  transform: scale(1.1);
  filter: grayscale(0%);
}

.other-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.other-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(40%);
  transition: all 0.5s ease;
}

.other-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(209, 33, 42, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.other-card-see {
  color: #FDD923;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.other-card-content {
  padding: 20px;
  background: #FDD923;
}

.other-card-category {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D1212A;
  font-weight: 700;
  margin-bottom: 8px;
}

.other-card-title {
  font-size: 1.2rem;
  margin-bottom: 8px;
  line-height: 1.2;
}

.other-card-meta {
  font-size: 0.8rem;
  color: rgba(26, 26, 26, 0.6);
  font-weight: 600;
  margin: 0;
}

.detail-nav {
  padding: 30px 0;
}
.detail-nav .detail-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.detail-nav .detail-nav-back .nav-arrow {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}
.detail-nav .detail-nav-back:hover {
  color: #FDD923;
}
.detail-nav .detail-nav-back:hover .nav-arrow {
  transform: translateX(-5px);
}

@media (max-width: 992px) {
  .detail-hero-full {
    min-height: 70vh;
  }
  .detail-hero-title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }
  .intention-block {
    padding: 30px;
  }
}
@media (max-width: 768px) {
  .page-header {
    padding: 60px 0 60px;
  }
  .spectacle-featured {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
  .spectacle-featured-img img {
    min-height: 300px;
  }
  .hero-info-items {
    justify-content: flex-start;
    padding: 0 20px;
  }
  .detail-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
  }
  .gallery-mosaic {
    grid-template-rows: auto;
  }
  .detail-pro-section {
    padding: 60px 0;
  }
}
.contact-section {
  overflow-x: hidden;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.contact-form-column {
  min-width: 0;
  max-width: 100%;
}

.info-block-item {
  margin-bottom: 40px;
}
.info-block-item.pro-resources {
  padding: 30px;
  border-left: 5px solid #D1212A;
}
.info-block-item.pro-resources h3 {
  margin-bottom: 15px;
}
.info-block-item.pro-resources p {
  margin-bottom: 20px;
  color: #1a1a1a;
}

.contact-details {
  margin-top: 25px;
}
.contact-details .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  font-weight: 600;
}
.contact-details .contact-item a {
  color: #1a1a1a;
}
.contact-details .contact-item a:hover {
  color: #D1212A;
}

.brand-form {
  display: grid;
  gap: 25px;
  background: #f8f8f8;
  padding: 40px;
  border: 3px solid #FDD923;
  max-width: 100%;
  box-sizing: border-box;
}
.brand-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.brand-form .form-group label {
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.brand-form .form-group input,
.brand-form .form-group select,
.brand-form .form-group textarea {
  padding: 12px 15px;
  border: 2px solid rgba(26, 26, 26, 0.1);
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.brand-form .form-group input:focus,
.brand-form .form-group select:focus,
.brand-form .form-group textarea:focus {
  border-color: #D1212A;
}
.brand-form .btn {
  justify-self: start;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .brand-form {
    padding: 25px 20px;
  }
}
@media (max-width: 480px) {
  .brand-form {
    padding: 20px 15px;
    gap: 20px;
  }
  .brand-form .form-group input,
  .brand-form .form-group select,
  .brand-form .form-group textarea {
    padding: 10px 12px;
    font-size: 0.95rem;
  }
  .brand-form .btn {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }
}

/*# sourceMappingURL=style.css.map */
