@charset "UTF-8";
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: visible;
}
.main-header .logo-img {
  height: 80px;
  width: auto;
  margin: -10px 0;
  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: 20px;
  align-items: center;
}
.main-header .nav-links li {
  overflow: hidden;
}
.main-header .nav-link {
  color: #1a1a1a;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  display: inline-block;
  padding: 5px 0;
  white-space: nowrap;
}
.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);
}

@media (max-width: 1200px) {
  .main-header .nav-links {
    gap: 15px;
  }
  .main-header .nav-link {
    font-size: 0.7rem;
    letter-spacing: 0.3px;
  }
}
@media (max-width: 1024px) {
  .main-header .nav-links {
    gap: 10px;
  }
  .main-header .nav-link {
    font-size: 0.65rem;
    letter-spacing: 0;
  }
  .main-header .btn-nav {
    padding: 10px 18px;
    font-size: 0.7rem;
  }
}
@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 !important;
}

.btn-white {
  background: #ffffff;
  color: #D1212A;
  margin-left: 20px;
}
.btn-white:hover {
  background: #FDD923;
  color: #1a1a1a;
}

.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(2rem, 5vw, 4rem);
  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: clamp(1.8rem, 8vw, 4rem);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(50px);
}

.fromBottom {
  opacity: 0;
  transform: translateY(60px);
}

.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;
  z-index: 2;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  rotate: 5deg;
}
.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;
}

.agenda-see-all {
  text-align: center;
  margin-top: 40px;
}

.agenda-page {
  padding-top: 60px;
  padding-bottom: 80px;
}
.agenda-page .section-title {
  margin-bottom: 30px;
}
.agenda-page .section-title:not(:first-of-type) {
  margin-top: 60px;
}

.agenda-full-list {
  max-width: 900px;
  margin: 0 auto;
}

.agenda-full-item {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  background: #ffffff;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #D1212A;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.agenda-full-item:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}
.agenda-full-item .agenda-full-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 100px;
  margin-right: 30px;
  padding-right: 30px;
  border-right: 2px solid #f8f8f8;
}
.agenda-full-item .agenda-day {
  font-size: 2.5rem;
  font-weight: 900;
  color: #D1212A;
  line-height: 1;
}
.agenda-full-item .agenda-month {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.agenda-full-item .agenda-year {
  font-size: 0.75rem;
  color: #b3b3b3;
}
.agenda-full-item .agenda-full-info {
  flex-grow: 1;
}
.agenda-full-item .agenda-full-info strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.agenda-full-item .agenda-full-info span {
  color: #b3b3b3;
  font-size: 0.95rem;
}
.agenda-full-item .btn-small {
  padding: 12px 25px;
  font-size: 0.8rem;
  clip-path: none;
  white-space: nowrap;
}

.agenda-item-past {
  border-left-color: #b3b3b3;
  opacity: 0.6;
}
.agenda-item-past:hover {
  opacity: 0.8;
}
.agenda-item-past .agenda-day {
  color: #b3b3b3;
}
.agenda-item-past .agenda-full-info strong {
  color: #b3b3b3;
}

.no-events {
  text-align: center;
  color: #b3b3b3;
  font-style: italic;
  padding: 40px 0;
}

@media (max-width: 768px) {
  .agenda-full-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  .agenda-full-item .agenda-full-date {
    flex-direction: row;
    gap: 10px;
    margin-right: 0;
    margin-bottom: 15px;
    padding-right: 0;
    padding-bottom: 15px;
    border-right: none;
    border-bottom: 2px solid #f8f8f8;
    width: 100%;
  }
  .agenda-full-item .agenda-day {
    font-size: 1.8rem;
  }
  .agenda-full-item .agenda-month {
    font-size: 0.8rem;
  }
  .agenda-full-item .agenda-full-info {
    margin-bottom: 15px;
  }
  .agenda-full-item .agenda-full-info strong {
    font-size: 1.1rem;
  }
  .agenda-full-item .btn-small {
    width: 100%;
    text-align: center;
  }
}
.main-footer {
  padding: 80px 0 40px;
  margin-top: -65px;
  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 ul {
  display: flex;
  gap: 30px;
}
.footer-bottom .footer-legal ul a {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}
.footer-bottom .footer-legal ul 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: -moz-fit-content;
  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;
  -o-object-fit: cover;
     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: 150px 0 50px;
  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;
  /* 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;
  -o-object-fit: cover;
     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: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
}

.spectacle-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.spectacle-card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     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;
  flex-grow: 1;
}
.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%);
}

.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-content .text-red {
  font-size: 3em;
  font-weight: 900;
  letter-spacing: 1px;
}

.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 {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 768px) {
  .text-columns {
    -moz-column-count: 1;
         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%;
  -o-object-fit: cover;
     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: flex;
  flex-direction: column;
  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%;
  -o-object-fit: cover;
     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;
  flex-grow: 1;
}

.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;
  }
}

.compagnie-intro {
  padding: 100px 0;
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 50%, #f8f8f8 100%);
  position: relative;
  overflow: hidden;
}
.compagnie-intro::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;
}

.compagnie-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .compagnie-intro-grid {
    grid-template-columns: 1fr;
  }
}

.compagnie-intro-content .lead {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}
.compagnie-intro-content p {
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 15px;
}
.compagnie-intro-content .compagnie-values {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.compagnie-intro-content .compagnie-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;
}
.compagnie-intro-content .compagnie-values .value-item:hover {
  background: rgba(253, 217, 35, 0.2);
  transform: translateX(5px);
}

.compagnie-intro-image {
  position: relative;
}
@media (max-width: 992px) {
  .compagnie-intro-image {
    order: -1;
    margin-bottom: 40px;
  }
}
.compagnie-intro-image .image-stack {
  position: relative;
}
.compagnie-intro-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;
}
.compagnie-intro-image .image-stack img {
  width: 100%;
  filter: grayscale(100%);
  border: 3px solid #D1212A;
  transition: all 0.5s ease;
}
.compagnie-intro-image .image-stack img:hover {
  filter: grayscale(0%);
  transform: scale(1.02);
}
.compagnie-intro-image:hover .image-stack::before {
  transform: translate(-5px, 5px);
}

.bureau-section {
  padding: 100px 0;
}

.bureau-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .bureau-grid {
    grid-template-columns: 1fr;
  }
}

.bureau-member {
  display: flex;
  gap: 25px;
  padding: 30px;
  background: #ffffff;
  border: 3px solid transparent;
  transition: all 0.4s ease;
}
.bureau-member:hover {
  border-color: #D1212A;
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px #D1212A;
}
.bureau-member:hover .bureau-member-photo img {
  filter: grayscale(0%);
}
@media (max-width: 600px) {
  .bureau-member {
    flex-direction: column;
    text-align: center;
  }
}

.bureau-member-featured {
  grid-column: span 2;
  background: #D1212A;
  border-color: #FDD923;
}
.bureau-member-featured .bureau-member-role {
  color: #FDD923;
}
.bureau-member-featured .bureau-member-name {
  color: #ffffff;
}
.bureau-member-featured .bureau-member-bio {
  color: rgba(255, 255, 255, 0.9);
}
.bureau-member-featured:hover {
  border-color: #FDD923;
  box-shadow: 8px 8px 0px #FDD923;
}
@media (max-width: 768px) {
  .bureau-member-featured {
    grid-column: span 1;
  }
}

.bureau-member-photo {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  overflow: hidden;
  border: 3px solid #FDD923;
}
.bureau-member-photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(50%);
  transition: filter 0.4s ease;
}
@media (max-width: 600px) {
  .bureau-member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
  }
}

.bureau-member-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bureau-member-role {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #D1212A;
  font-weight: 700;
  margin-bottom: 8px;
}

.bureau-member-name {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #1a1a1a;
}

.bureau-member-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(26, 26, 26, 0.8);
}

.artistes-section {
  padding: 100px 0;
  background: #ffffff;
}

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

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

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

.artiste-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;
}
.artiste-card-overlay .artiste-link {
  color: #FDD923;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 25px;
  border: 2px solid #FDD923;
  transition: all 0.3s ease;
}
.artiste-card-overlay .artiste-link:hover {
  background: #FDD923;
  color: #D1212A;
}
.artiste-card-overlay .artiste-link span {
  transition: transform 0.3s ease;
}
.artiste-card-overlay .artiste-link:hover span {
  transform: translateX(5px);
}

.artiste-card-content {
  padding: 25px;
  background: #f8f8f8;
}

.artiste-card-name {
  font-size: 1.3rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.artiste-card-role {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #D1212A;
  font-weight: 700;
  margin-bottom: 15px;
}

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

.artiste-card-url {
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: #D1212A;
  text-transform: lowercase;
  transition: all 0.3s ease;
}
.artiste-card-url::before {
  content: "→";
  margin-right: 8px;
  transition: transform 0.3s ease;
}
.artiste-card-url:hover {
  color: rgb(164.9545454545, 26.0454545455, 33.1487603306);
}
.artiste-card-url:hover::before {
  transform: translateX(3px);
}

.section-impact {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.section-impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(209, 33, 42, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(253, 217, 35, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.section-impact::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: 80px 80px;
  pointer-events: none;
}

.impact-title {
  position: relative;
  z-index: 1;
  text-align: center;
}

.impact-line {
  display: block;
  font-size: clamp(3rem, 12vw, 8rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  color: #ffffff;
  letter-spacing: -2px;
  opacity: 0;
  transform: translateY(100px);
}
.impact-line.text-yellow-bg {
  display: inline-block;
  background: #FDD923;
  color: #1a1a1a;
  padding: 0 30px;
  margin-top: 10px;
}
.impact-line.text-red {
  color: #D1212A;
}
@media (max-width: 768px) {
  .impact-line {
    font-size: clamp(2rem, 11vw, 4rem);
    letter-spacing: -1px;
  }
  .impact-line.text-yellow-bg {
    padding: 0 15px;
  }
}

.section-intro {
  padding: 100px 0;
  background: #ffffff;
}

.intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.intro-title {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
}
.intro-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: #FDD923;
}

.intro-text .lead {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #1a1a1a;
}
.intro-text p {
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 20px;
}

.section-video {
  padding: 80px 0;
  background: #f8f8f8;
}
.section-video .video-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.section-video .video-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.6);
  font-weight: 600;
}

.section-separator {
  padding: 60px 0;
  background: #ffffff;
}

.separator-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.separator-line {
  height: 3px;
  width: 100px;
  background: linear-gradient(90deg, transparent, #D1212A, transparent);
  transform-origin: center;
}
@media (max-width: 480px) {
  .separator-line {
    width: 60px;
  }
}

.separator-icon {
  width: 60px;
  height: 60px;
  background: #D1212A;
  color: #FDD923;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 900;
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}
@media (max-width: 480px) {
  .separator-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

.section-parallax {
  position: relative;
  min-height: 50vh;
  background-size: cover;
  background-position: center 50%;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .section-parallax {
    background-attachment: scroll;
    min-height: 40vh;
  }
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.7);
}

.parallax-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 60px 20px;
}

.parallax-quote {
  margin: 0;
  padding: 0;
  border: none;
}
.parallax-quote p {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.3;
}
.parallax-quote p::before, .parallax-quote p::after {
  content: '"';
  color: #FDD923;
}

.section-focus {
  padding: 80px 0;
  background: #ffffff;
}

.focus-box {
  display: flex;
  gap: 30px;
  background: #FDD923;
  padding: 40px;
  border-left: 6px solid #D1212A;
  position: relative;
  overflow: hidden;
}
.focus-box::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(209, 33, 42, 0.1);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .focus-box {
    flex-direction: column;
    padding: 30px;
  }
}

.focus-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: #D1212A;
  color: #FDD923;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 900;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .focus-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

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

.focus-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.focus-list {
  margin-top: 20px;
}
.focus-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-weight: 600;
}
.focus-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #D1212A;
  font-weight: 900;
}

.section-gallery {
  padding: 100px 0;
  background: #f8f8f8;
}
.section-gallery .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.gallery-atelier {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 15px;
}
.gallery-atelier .gallery-item:first-child {
  grid-row: span 2;
}
@media (max-width: 992px) {
  .gallery-atelier {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-atelier .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 600px) {
  .gallery-atelier {
    grid-template-columns: 1fr;
  }
  .gallery-atelier .gallery-item:first-child {
    grid-column: span 1;
  }
}

.section-quote {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.section-quote::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: rgba(253, 217, 35, 0.1);
  border-radius: 50%;
}

.quote-block {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border: none;
}

.quote-text {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 30px;
}

.quote-author cite {
  font-style: normal;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-accordion {
  padding: 100px 0;
  background: #ffffff;
}
.section-accordion .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.accordion-list {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 3px solid #FDD923;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.accordion-item:hover {
  border-color: #D1212A;
}
.accordion-item.is-open {
  border-color: #D1212A;
}
.accordion-item.is-open .accordion-header {
  background: #D1212A;
  color: #ffffff;
}
.accordion-item.is-open .accordion-icon::before {
  transform: rotate(90deg);
}
.accordion-item.is-open .accordion-icon::after {
  opacity: 0;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #FDD923;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.accordion-header:hover {
  background: rgb(252.7702702703, 212.6351351351, 9.7297297297);
}

.accordion-title {
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1a1a1a;
  text-align: left;
}
.is-open .accordion-title {
  color: #ffffff;
}

.accordion-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.accordion-icon::before, .accordion-icon::after {
  content: "";
  position: absolute;
  background: #D1212A;
  transition: all 0.3s ease;
}
.is-open .accordion-icon::before, .is-open .accordion-icon::after {
  background: #FDD923;
}
.accordion-icon::before {
  width: 100%;
  height: 3px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.accordion-icon::after {
  width: 3px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.accordion-content {
  height: 0;
  overflow: hidden;
}

.accordion-body {
  padding: 25px;
  background: #ffffff;
}
.accordion-body p {
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 20px;
}
.accordion-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(26, 26, 26, 0.1);
  font-size: 0.95rem;
}
.accordion-body ul li:last-child {
  border-bottom: none;
}
.accordion-body ul li strong {
  color: #D1212A;
}

.section-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.section-cta .cta-buttons .btn-outline-white {
  margin-left: 0;
}
@media (max-width: 480px) {
  .section-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .section-cta .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

.section-realisations {
  padding: 80px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .section-realisations {
    padding: 60px 0;
  }
}
.section-realisations .realisation-item {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 2px solid rgba(26, 26, 26, 0.1);
}
.section-realisations .realisation-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 768px) {
  .section-realisations .realisation-item {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }
}
.section-realisations .realisation-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 480px) {
  .section-realisations .realisation-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section-realisations .realisation-title {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
}
@media (max-width: 768px) {
  .section-realisations .realisation-title {
    font-size: 1.5rem;
  }
}
.section-realisations .realisation-date {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: #f8f8f8;
  padding: 8px 16px;
  border-radius: 4px;
}
.section-realisations .realisation-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section-realisations .realisation-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(26, 26, 26, 0.8);
  margin-bottom: 15px;
}
.section-realisations .realisation-text p:last-child {
  margin-bottom: 0;
}
.section-realisations .realisation-video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.section-realisations .realisation-video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section-realisations .realisation-galerie {
  margin-top: 10px;
}
.section-realisations .realisation-galerie .galerie-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
@media (max-width: 992px) {
  .section-realisations .realisation-galerie .galerie-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .section-realisations .realisation-galerie .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .section-realisations .realisation-galerie .galerie-grid {
    grid-template-columns: 1fr;
  }
}
.section-realisations .realisation-galerie .galerie-item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  aspect-ratio: 4/3;
}
.section-realisations .realisation-galerie .galerie-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0);
  transition: background 0.3s ease;
}
.section-realisations .realisation-galerie .galerie-item:hover::after {
  background: rgba(26, 26, 26, 0.3);
}
.section-realisations .realisation-galerie .galerie-item:hover img {
  transform: scale(1.05);
}
.section-realisations .realisation-galerie .galerie-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
}

.ca-list-section {
  padding-top: 30px;
}

.ca-list {
  display: grid;
  gap: 80px;
}
@media (max-width: 768px) {
  .ca-list {
    gap: 50px;
  }
}

.ca-item {
  position: relative;
  padding-top: 30px;
}
.ca-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #D1212A 0%, #D1212A 40%, #FDD923 40%, #FDD923 100%);
  transform: skewX(-3deg);
}

.ca-card {
  background: rgba(255, 255, 255, 0.85);
  border: 3px solid transparent;
  padding: 50px 35px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transform: rotate(var(--card-rotation, 0deg));
}
.ca-card::before {
  height: 6px;
}
.ca-card:hover {
  transform: rotate(0deg) translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 10px 20px rgba(0, 0, 0, 0.12);
  border-color: rgba(253, 217, 35, 0.4);
}
.ca-card.ca-card--alt .ca-accent-bar {
  background: linear-gradient(90deg, #FDD923 0%, #FDD923 60%, #D1212A 60%, #D1212A 100%);
}

.ca-accent-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #D1212A 0%, #D1212A 60%, #FDD923 60%, #FDD923 100%);
  transform: skewX(-2deg);
}

.ca-header {
  margin-bottom: 25px;
}
.ca-header .ca-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.ca-title {
  font-size: 2rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0;
}
@media (max-width: 768px) {
  .ca-title {
    font-size: 1.5rem;
  }
}
.ca-title.ca-title-dynamic {
  position: relative;
  display: inline-block;
  background: #D1212A;
  color: #FDD923;
  padding: 14px 28px;
  margin: -5px 0 10px -5px;
  transform: rotate(-1.5deg);
  transition: all 0.3s ease;
  z-index: 2;
}
.ca-title.ca-title-dynamic .ca-title-inner {
  display: block;
  position: relative;
}
.ca-title.ca-title-dynamic:hover {
  transform: rotate(-0.5deg) scale(1.02);
  box-shadow: 0 10px 24px rgba(209, 33, 42, 0.45), 0 6px 10px rgba(209, 33, 42, 0.35);
}
@media (max-width: 768px) {
  .ca-title.ca-title-dynamic {
    padding: 10px 18px;
    margin: -3px 0 8px -3px;
    transform: rotate(-0.8deg);
  }
}

.ca-badge {
  background: #FDD923;
  color: #1a1a1a;
  padding: 8px 16px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0% 100%);
  box-shadow: 0 2px 8px rgba(253, 217, 35, 0.4);
}

.ca-meta {
  margin-top: 10px;
  color: rgba(26, 26, 26, 0.7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.ca-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ca-icon {
  opacity: 0.7;
}

.ca-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.ca-video-container {
  position: relative;
  margin: 10px 0;
}

.ca-video-frame {
  position: relative;
  padding: 8px;
  background: linear-gradient(135deg, #D1212A, rgb(164.9545454545, 26.0454545455, 33.1487603306));
  transform: rotate(-0.5deg);
  box-shadow: 0 8px 30px rgba(209, 33, 42, 0.3), 0 4px 10px rgba(209, 33, 42, 0.2);
}

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

.ca-text {
  font-size: 1.05rem;
  line-height: 1.75;
}
.ca-text .ca-text-inner p {
  margin: 0 0 1em;
}
.ca-text .ca-text-inner h3 {
  font-size: 1.2rem;
  margin: 1.2em 0 0.6em;
}
.ca-text .ca-text-inner ul, .ca-text .ca-text-inner ol {
  margin: 0.6em 0 1em 1.2em;
}
.ca-text .ca-text-inner a {
  color: #D1212A;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  transition: all 0.2s ease;
}
.ca-text .ca-text-inner a:hover {
  color: rgb(164.9545454545, 26.0454545455, 33.1487603306);
}

.ca-gallery {
  margin-top: 15px;
}

.ca-galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .ca-galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .ca-galerie-grid {
    grid-template-columns: 1fr;
  }
}

.ca-galerie-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transition: all 0.4s ease;
  transform: rotate(var(--item-rotation, 0deg));
  aspect-ratio: 4/3;
}
.ca-galerie-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ca-galerie-item:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  z-index: 2;
}
.ca-galerie-item:hover img {
  transform: scale(1.1);
}

.ca-empty {
  padding: 80px 40px;
  text-align: center;
  background: rgba(248, 248, 248, 0.5);
  border: 2px dashed rgba(26, 26, 26, 0.2);
}

.ca-empty-text {
  font-size: 1.2rem;
  color: rgba(26, 26, 26, 0.6);
  margin: 0;
}

.spectacle-card-img .cc-badge-prepa {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #D1212A;
  color: #FDD923;
  padding: 6px 12px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  z-index: 2;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
}
.spectacle-card-img .spectacle-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(-45deg, rgba(209, 33, 42, 0.08) 0, rgba(209, 33, 42, 0.08) 12px, rgba(253, 217, 35, 0.08) 12px, rgba(253, 217, 35, 0.08) 24px);
  color: #D1212A;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cc-list-section {
  padding-top: 30px;
}

.cc-list {
  display: grid;
  gap: 60px;
}
@media (max-width: 768px) {
  .cc-list {
    gap: 40px;
  }
}

.cc-item {
  position: relative;
  padding-top: 30px;
}
.cc-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, #FDD923 0%, #FDD923 60%, #D1212A 60%, #D1212A 100%);
  transform: skewX(-2deg);
}
.cc-item.cc-card {
  background: rgba(255, 255, 255, 0.7);
  border: 3px solid transparent;
  padding: 40px 30px 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  position: relative;
  overflow: hidden;
}
.cc-item.cc-card::before {
  height: 6px;
}
.cc-item.cc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15), 0 8px 16px rgba(0, 0, 0, 0.1);
  border-color: rgba(209, 33, 42, 0.2);
}

.cc-header {
  margin-bottom: 20px;
}
.cc-header .cc-header-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.cc-header .cc-title {
  font-size: 2rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .cc-header .cc-title {
    font-size: 1.6rem;
  }
}
.cc-header .cc-title.cc-title-dynamic {
  position: relative;
  display: inline-block;
  background: #D1212A;
  color: #FDD923;
  padding: 12px 24px;
  margin: -5px 0 10px -5px;
  transform: rotate(-1deg);
  transition: all 0.3s ease;
  z-index: 2;
}
.cc-header .cc-title.cc-title-dynamic::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #D1212A, rgb(164.9545454545, 26.0454545455, 33.1487603306));
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.cc-header .cc-title.cc-title-dynamic:hover {
  transform: rotate(-0.5deg) scale(1.02);
  box-shadow: 0 8px 20px rgba(209, 33, 42, 0.4), 0 4px 8px rgba(209, 33, 42, 0.3);
}
.cc-header .cc-title.cc-title-dynamic:hover::before {
  opacity: 1;
}
.cc-header .cc-title.cc-title-dynamic {
  animation: titleFloat 4s ease-in-out infinite;
}
@media (max-width: 768px) {
  .cc-header .cc-title.cc-title-dynamic {
    padding: 10px 18px;
    margin: -3px 0 8px -3px;
    transform: rotate(-0.5deg);
  }
}
.cc-header .cc-badge {
  background: #D1212A;
  color: #FDD923;
  padding: 6px 12px;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
}
.cc-header .cc-meta {
  margin-top: 6px;
  color: rgba(26, 26, 26, 0.7);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cc-header .cc-meta .cc-sep {
  opacity: 0.6;
}

.cc-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 20px 0 25px;
}
.cc-text p {
  margin: 0 0 1em;
}
.cc-text h3 {
  font-size: 1.2rem;
  margin: 1.2em 0 0.6em;
}
.cc-text ul, .cc-text ol {
  margin: 0.6em 0 1em 1.2em;
}
.cc-text a {
  color: #D1212A;
}

@keyframes titleFloat {
  0%, 100% {
    transform: rotate(-1deg) translateY(0px);
  }
  50% {
    transform: rotate(-1deg) translateY(-2px);
  }
}
.cc-gallery {
  margin-top: 20px;
}
.cc-gallery .galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 1024px) {
  .cc-gallery .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .cc-gallery .galerie-grid {
    grid-template-columns: 1fr;
  }
}
.cc-gallery .galerie-item {
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.cc-gallery .galerie-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.cc-gallery .galerie-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.cc-gallery .galerie-item:hover img {
  transform: scale(1.05);
}
.cc-gallery .cc-credit {
  margin-top: 10px;
  color: rgba(26, 26, 26, 0.7);
  font-size: 0.9rem;
  font-weight: 700;
}

.section-cta {
  padding: 60px 0;
}
.section-cta .cta-content {
  max-width: 800px;
  margin: 0 auto;
}

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

.section-cta.cta-minimal {
  padding: 40px 0;
}
.section-cta.cta-minimal .cta-minimal-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: 100%;
}
@media (max-width: 768px) {
  .section-cta.cta-minimal .cta-minimal-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}
.section-cta.cta-minimal .cta-minimal-text {
  flex: 1;
}
.section-cta.cta-minimal .cta-minimal-text h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-weight: 600;
}
.section-cta.cta-minimal .cta-minimal-text p {
  font-size: 1rem;
  color: #6c757d;
  margin: 0;
  line-height: 1.4;
}
.section-cta.cta-minimal .cta-minimal-button {
  flex-shrink: 0;
}
.section-cta.cta-minimal .cta-minimal-button .btn {
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: #D1212A;
  color: #ffffff;
  border: 2px solid #D1212A;
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
  rotate: none !important;
  scale: none !important;
}
.section-cta.cta-minimal .cta-minimal-button .btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background-color: #FDD923;
  border-color: #FDD923;
  color: #1a1a1a;
}

.section-cta.cta-card {
  padding: 80px 0;
  background-color: #f8f9fa;
}
.section-cta.cta-card .cta-card-content {
  background: white;
  border-radius: 8px;
  padding: 50px 40px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.section-cta.cta-card .cta-card-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.section-cta.cta-card .cta-card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #D1212A, #FDD923);
}
@media (max-width: 768px) {
  .section-cta.cta-card .cta-card-content {
    padding: 40px 30px;
  }
}
.section-cta.cta-card .cta-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #D1212A, #FDD923);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  box-shadow: 0 4px 15px rgba(209, 33, 42, 0.3);
}
.section-cta.cta-card .cta-card-icon::before {
  content: "→";
  font-size: 2rem;
  color: white;
  font-weight: bold;
}
.section-cta.cta-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a1a1a;
  font-weight: 600;
}
.section-cta.cta-card p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 30px;
  line-height: 1.6;
}
.section-cta.cta-card .btn {
  padding: 14px 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  background-color: #D1212A;
  color: #ffffff;
  border: 2px solid #D1212A;
  text-decoration: none;
  display: inline-block;
  opacity: 1 !important;
  transform: none !important;
  translate: none !important;
  rotate: none !important;
  scale: none !important;
}
.section-cta.cta-card .btn:hover {
  transform: translateY(-2px) !important;
  background-color: #FDD923;
  border-color: #FDD923;
  color: #1a1a1a;
  text-decoration: none;
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1200px) {
  .section-cta.cta-minimal .cta-minimal-content {
    gap: 25px;
  }
}
@media (max-width: 992px) {
  .section-cta.cta-card .cta-card-content {
    margin: 0 15px;
  }
}
@media (max-width: 576px) {
  .section-cta.cta-classic {
    padding: 60px 0;
  }
  .section-cta.cta-classic .cta-content h2 {
    font-size: 1.6rem;
  }
  .section-cta.cta-minimal {
    padding: 30px 0;
  }
  .section-cta.cta-minimal .cta-minimal-text h3 {
    font-size: 1.3rem;
  }
  .section-cta.cta-card {
    padding: 60px 0;
  }
  .section-cta.cta-card .cta-card-icon {
    width: 60px;
    height: 60px;
  }
  .section-cta.cta-card .cta-card-icon i {
    font-size: 1.5rem;
  }
  .section-cta.cta-card .cta-card-content h3 {
    font-size: 1.5rem;
  }
}
.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .contact-section {
    padding: 60px 0;
  }
}

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

.contact-info-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-block-item h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.info-block-item .lead {
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.info-block-item p {
  margin-bottom: 8px;
  color: #1a1a1a;
}

.contact-details {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.contact-item .icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}
.contact-item a {
  color: #1a1a1a;
  font-weight: 600;
  transition: color 0.3s ease;
}
.contact-item a:hover {
  color: #D1212A;
}

.pro-resources {
  padding: 25px;
  border-radius: 8px;
}
.pro-resources h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.pro-resources p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.pro-resources .link-arrow {
  display: inline-block;
  font-weight: 700;
  transition: transform 0.3s ease;
}
.pro-resources .link-arrow:hover {
  transform: translateX(5px);
}

.contact-section .footer-socials {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}
.contact-section .footer-socials .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #1a1a1a;
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}
.contact-section .footer-socials .social-icon:hover {
  background-color: #D1212A;
  transform: scale(1.1);
}

.contact-form-column {
  background-color: #f8f8f8;
  padding: 40px;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .contact-form-column {
    padding: 30px 20px;
  }
}

.brand-form .form-group {
  margin-bottom: 20px;
}
.brand-form .form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: #1a1a1a;
  font-size: 0.95rem;
}
.brand-form .form-group input,
.brand-form .form-group select,
.brand-form .form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  background-color: #ffffff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.brand-form .form-group input:focus,
.brand-form .form-group select:focus,
.brand-form .form-group textarea:focus {
  outline: none;
  border-color: #D1212A;
  box-shadow: 0 0 0 3px rgba(209, 33, 42, 0.1);
}
.brand-form .form-group input::-moz-placeholder, .brand-form .form-group select::-moz-placeholder, .brand-form .form-group textarea::-moz-placeholder {
  color: #b3b3b3;
}
.brand-form .form-group input::placeholder,
.brand-form .form-group select::placeholder,
.brand-form .form-group textarea::placeholder {
  color: #b3b3b3;
}
.brand-form .form-group select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231a1a1a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.brand-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.brand-form .btn {
  width: 100%;
  padding: 16px 30px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.brand-form .btn-red {
  background-color: #D1212A;
  color: #ffffff;
  border: none;
  border-radius: 6px;
}
.brand-form .btn-red:hover {
  background-color: rgb(164.9545454545, 26.0454545455, 33.1487603306);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(209, 33, 42, 0.3);
}

.agenda-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, rgb(13.25, 13.25, 13.25) 100%);
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.agenda-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23D1212A' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

.agenda-title {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.agenda-subtitle {
  color: #b3b3b3;
  font-size: 1.1rem;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.agenda-content {
  padding: 60px 0;
  background: #f8f8f8;
  min-height: 400px;
}

.agenda-empty {
  text-align: center;
  padding: 80px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}
.agenda-empty .agenda-empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.5;
}
.agenda-empty h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #1a1a1a;
}
.agenda-empty p {
  color: #b3b3b3;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.agenda-month-group {
  margin-bottom: 50px;
}
.agenda-month-group:last-child {
  margin-bottom: 0;
}

.agenda-month-title {
  font-size: 1.5rem;
  color: #1a1a1a;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid #D1212A;
  display: inline-block;
}

.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agenda-item {
  display: grid;
  grid-template-columns: 100px 150px 1fr auto;
  gap: 25px;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  align-items: center;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-50px);
}
.agenda-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
@media (max-width: 900px) {
  .agenda-item {
    grid-template-columns: 80px 1fr;
    grid-template-rows: auto auto;
    gap: 15px;
  }
}
@media (max-width: 600px) {
  .agenda-item {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .agenda-item-date {
    display: flex;
    justify-content: center;
  }
}

.date-badge {
  background: #D1212A;
  color: #ffffff;
  padding: 15px 10px;
  border-radius: 8px;
  text-align: center;
  min-width: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.date-badge .day {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.date-badge .month {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}
.date-badge--period {
  background: linear-gradient(135deg, #D1212A 0%, rgb(164.9545454545, 26.0454545455, 33.1487603306) 100%);
}
.date-badge--period .day {
  font-size: 1.3rem;
}

.agenda-item-image {
  width: 150px;
  height: 100px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.agenda-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.agenda-item-image:hover img {
  transform: scale(1.05);
}
@media (max-width: 900px) {
  .agenda-item-image {
    display: none;
  }
}

.agenda-item-content {
  flex: 1;
}
@media (max-width: 900px) {
  .agenda-item-content {
    grid-column: 2;
    grid-row: 1/3;
  }
}
@media (max-width: 600px) {
  .agenda-item-content {
    grid-column: 1;
    grid-row: auto;
  }
}

.agenda-item-spectacle {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.agenda-item-spectacle:hover {
  color: #D1212A;
}

.agenda-item-lieu {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}
.agenda-item-lieu .lieu-icon {
  font-size: 1rem;
}
.agenda-item-lieu strong {
  font-size: 1rem;
  color: #1a1a1a;
}
@media (max-width: 600px) {
  .agenda-item-lieu {
    justify-content: center;
  }
}

.agenda-item-info {
  font-size: 0.9rem;
  color: #b3b3b3;
  line-height: 1.5;
}

.agenda-item-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 900px) {
  .agenda-item-actions {
    grid-column: 1/-1;
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media (max-width: 600px) {
  .agenda-item-actions {
    justify-content: center;
  }
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-outline {
  background: transparent;
  border: 2px solid #1a1a1a;
  color: #1a1a1a;
  padding: 12px 25px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  text-align: center;
}
.btn-outline:hover {
  background: #1a1a1a;
  color: #ffffff;
}

.agenda-cta {
  background: #1a1a1a;
  padding: 80px 0;
  text-align: center;
}
.agenda-cta h2 {
  color: #ffffff;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  margin-bottom: 15px;
}
.agenda-cta p {
  color: #b3b3b3;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.pro-dates .dates-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.pro-dates .date-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  transition: all 0.3s ease;
}
.pro-dates .date-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.pro-dates .date-item--empty {
  opacity: 0.7;
}
.pro-dates .date-badge {
  background: #D1212A;
  color: #ffffff;
  padding: 12px 10px;
  border-radius: 6px;
  text-align: center;
  min-width: 60px;
  flex-shrink: 0;
}
.pro-dates .date-badge .day {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.pro-dates .date-badge .month {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
}
.pro-dates .date-badge--period .day {
  font-size: 1.1rem;
}
.pro-dates .date-info {
  flex: 1;
}
.pro-dates .date-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
}
.pro-dates .date-info span {
  font-size: 0.85rem;
  color: #b3b3b3;
}
.pro-dates .date-link {
  color: #D1212A;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}
.pro-dates .date-link:hover {
  color: rgb(225.4090909091, 67.5909090909, 75.6611570248);
}
.pro-dates .dates-footer {
  margin-top: 15px;
  text-align: center;
}
.pro-dates .dates-footer .btn-outline {
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
  font-size: 0.85rem;
  padding: 10px 20px;
}
.pro-dates .dates-footer .btn-outline:hover {
  background: #ffffff;
  color: #1a1a1a;
  border-color: #ffffff;
}

.classic-content {
  line-height: 1.9;
  font-size: 1.1rem;
  color: #1a1a1a;
  max-width: 800px;
  margin: 0 auto;
  padding: 50px 0px 100px 0px;
}
.classic-content h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.classic-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background-color: #D1212A;
}
.classic-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.classic-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #b3b3b3;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.classic-content p {
  margin-bottom: 1.25rem;
  text-align: justify;
}
.classic-content p:last-child {
  margin-bottom: 0;
}
.classic-content a {
  color: #D1212A;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.classic-content a:hover {
  color: rgb(142.9318181818, 22.5681818182, 28.7231404959);
}
.classic-content ul, .classic-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.classic-content ul li, .classic-content ol li {
  margin-bottom: 0.5rem;
  position: relative;
}
.classic-content ul {
  list-style: none;
}
.classic-content ul li {
  padding-left: 1.25rem;
}
.classic-content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: #FDD923;
  transform: rotate(45deg);
}
.classic-content ol {
  list-style: decimal;
}
.classic-content ol li::marker {
  color: #D1212A;
  font-weight: 700;
}
.classic-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  background-color: #f8f8f8;
  border-left: 5px solid #FDD923;
  font-style: italic;
  font-size: 1.15rem;
  color: rgb(64.25, 64.25, 64.25);
  position: relative;
}
.classic-content blockquote::before {
  content: '"';
  font-size: 4rem;
  color: #FDD923;
  position: absolute;
  top: -10px;
  left: 15px;
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.5;
}
.classic-content blockquote p {
  margin-bottom: 0;
}
.classic-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.classic-content figure {
  margin: 2rem 0;
  text-align: center;
}
.classic-content figure img {
  margin-bottom: 0.75rem;
}
.classic-content figure figcaption {
  font-size: 0.9rem;
  color: #b3b3b3;
  font-style: italic;
}
.classic-content table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.classic-content table th, .classic-content table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid #e6e6e6;
}
.classic-content table th {
  background-color: #1a1a1a;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}
.classic-content table tr:hover td {
  background-color: #f8f8f8;
}
.classic-content hr {
  margin: 2.5rem 0;
  border: none;
  height: 3px;
  background: linear-gradient(90deg, #D1212A 0%, #FDD923 50%, transparent 100%);
}
.classic-content code {
  background-color: #f8f8f8;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: "Fira Code", monospace;
  font-size: 0.9em;
  color: #D1212A;
}
.classic-content pre {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.classic-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}
@media (max-width: 768px) {
  .classic-content {
    font-size: 1rem;
    line-height: 1.8;
  }
  .classic-content h2 {
    font-size: 1.5rem;
  }
  .classic-content h3 {
    font-size: 1.25rem;
  }
  .classic-content blockquote {
    padding: 1rem 1.25rem;
    margin: 1.5rem 0;
  }
  .classic-content blockquote::before {
    font-size: 3rem;
  }
}/*# sourceMappingURL=style.css.map */