.font, .font-black, .font-regular, .font-light {
  font-family: "Lato", sans-serif;
  font-style: normal;
}

.font-light {
  font-weight: 100;
}

.font-regular {
  font-weight: 400;
}

.font-black {
  font-weight: 900;
}

.main-bg, body.front .hero {
  background-image: url("../medias/img/bg-portrait-sbvhJEa.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
@media screen and (orientation: landscape) {
  .main-bg, body.front .hero {
    background-image: url("../medias/img/bg-landscape-pGfSSdz.jpg");
  }
}
@media screen and (min-width: 1700px) {
  .main-bg, body.front .hero {
    background-image: url("../medias/img/bg-landscape_xl-oJGUwTy.jpg");
  }
}

.frise {
  position: relative;
}
.frise:after {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  margin-top: -1px;
  left: 0;
  width: 100%;
  height: 15px;
  background-image: url("../medias/img/frise_white-Fg4mUXf.png");
  background-repeat: repeat-x;
  background-size: contain;
}

.company-intro {
  background-color: #f8f9fa;
}
.company-intro .company-content-wrapper::after {
  content: "";
  display: table;
  clear: both;
}
.company-intro .company-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
}
@media (min-width: 768px) {
  .company-intro .company-image-wrapper {
    width: 45%;
  }
}
.company-intro .company-image-wrapper img {
  transition: transform 0.5s ease;
  width: 100%;
  height: auto;
}
.company-intro .company-image-wrapper:hover img {
  transform: scale(1.05);
}
.company-intro .company-content h3 {
  color: var(--troupe-primary);
}
.company-intro .company-content .company-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
}
.company-intro .company-content .lead {
  color: var(--troupe-primary);
}
.company-intro .stats-row .stat-card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
}
.company-intro .stats-row .stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.03) 0%, rgba(0, 0, 0, 0.05) 100%);
  z-index: 0;
}
.company-intro .stats-row .stat-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.company-intro .stats-row .stat-card:hover .stat-icon {
  transform: scale(1.1) rotate(5deg);
}
.company-intro .stats-row .stat-card:hover .stat-number {
  transform: scale(1.05);
}
.company-intro .stats-row .stat-card .stat-icon {
  position: relative;
  z-index: 1;
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, var(--troupe-secondary-dark) 0%, var(--troupe-secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s ease;
}
.company-intro .stats-row .stat-card .stat-icon i {
  color: var(--troupe-primary-contrast);
  font-size: 1.8rem;
}
.company-intro .stats-row .stat-card .stat-number {
  position: relative;
  z-index: 1;
  color: var(--troupe-secondary);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: all 0.4s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}
.company-intro .stats-row .stat-card .stat-label {
  position: relative;
  z-index: 1;
  color: #555;
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-page .company-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(var(--troupe-primary-rgb), 0.95) 0%, rgba(var(--troupe-primary-dark-rgb), 0.95) 100%);
  overflow: hidden;
}
.company-page .company-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/company/hero-bg.jpg") center/cover no-repeat fixed;
  z-index: -1;
  animation: heroZoom 20s infinite alternate;
}
.company-page .company-hero .hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 0;
  text-align: center;
}
.company-page .company-hero .hero-content h1 {
  font-size: clamp(3.5rem, 8vw, 5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
}
.company-page .company-hero .hero-content .lead {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: rgba(255, 255, 255, 0.95);
  font-weight: 300;
  margin: 0 auto;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease 0.2s forwards;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}
.company-page .company-presentation {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}
.company-page .company-presentation .section-title {
  margin-bottom: 4rem;
  text-align: center;
}
.company-page .company-presentation .presentation-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(15deg);
  transition: all 0.5s ease;
}
.company-page .company-presentation .presentation-image:hover {
  transform: perspective(1000px) rotateY(0);
}
.company-page .company-presentation .presentation-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
.company-page .company-presentation .presentation-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(var(--troupe-primary-rgb), 0.2), transparent);
}
.company-page .company-presentation .presentation-content {
  padding-left: 3rem;
}
.company-page .company-presentation .presentation-content .lead {
  font-size: 1.4rem;
  color: var(--troupe-primary);
  margin-bottom: 2rem;
  font-weight: 300;
}
.company-page .company-presentation .presentation-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}
.company-page .company-values {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.company-page .company-values::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: url("../images/patterns/dot-pattern.png") repeat;
  opacity: 0.1;
}
.company-page .company-values .value-card {
  background: white;
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.company-page .company-values .value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--troupe-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.company-page .company-values .value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.company-page .company-values .value-card:hover::before {
  transform: scaleX(1);
}
.company-page .company-values .value-card .icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 2rem;
  background: var(--troupe-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.company-page .company-values .value-card .icon i {
  font-size: 2.5rem;
  color: white;
  transition: all 0.4s ease;
}
.company-page .company-values .value-card h3 {
  font-size: 1.5rem;
  color: var(--troupe-primary);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.company-page .company-values .value-card p {
  color: #666;
  line-height: 1.7;
  font-size: 1.1rem;
}
.company-page .company-stats {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--troupe-primary-dark) 0%, var(--troupe-primary) 100%);
  position: relative;
  overflow: hidden;
}
.company-page .company-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../images/patterns/circuit-pattern.png") center/cover;
  opacity: 0.1;
  animation: slowMove 20s linear infinite alternate;
}
.company-page .company-stats .stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}
.company-page .company-stats .stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}
.company-page .company-stats .stat-card:hover .number {
  transform: scale(1.1);
}
.company-page .company-stats .stat-card .number {
  font-size: 3.5rem;
  font-weight: 200;
  color: white;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}
.company-page .company-stats .stat-card .label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.company-page .company-stats .stat-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2.5rem;
  color: white;
}

@keyframes parallax {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes slowMove {
  from {
    transform: translateX(0) translateY(0);
  }
  to {
    transform: translateX(20px) translateY(20px);
  }
}
.artists-page .artists-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/artists/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 0;
  margin-bottom: 3rem;
}
.artists-page .artist-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: transform 0.3s ease;
}
.artists-page .artist-card:hover {
  transform: translateY(-10px);
}
.artists-page .artist-card:hover .artist-social {
  opacity: 1;
}
.artists-page .artist-card .artist-image {
  position: relative;
  overflow: hidden;
}
.artists-page .artist-card .artist-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.artists-page .artist-card .artist-image .artist-social {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.artists-page .artist-card .artist-image .artist-social .social-link {
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}
.artists-page .artist-card .artist-image .artist-social .social-link:hover {
  background: var(--primary-color);
}
.artists-page .artist-card .artist-info {
  padding: 1.5rem;
  text-align: center;
}
.artists-page .artist-card .artist-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}
.artists-page .artist-card .artist-info .role {
  color: var(--secondary-color);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.artists-page .artist-card .artist-info .bio {
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (max-width: 991px) {
  .company-page .company-presentation .presentation-content {
    padding-left: 0;
    margin-top: 3rem;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .company-page .value-card {
    margin-bottom: 2rem;
  }
  .company-page .stat-card {
    margin-bottom: 2rem;
  }
  .company-page .stat-card .number {
    font-size: 3rem;
  }
  .artists-page .artist-card .artist-image img {
    height: 300px;
  }
}
body.front .hero {
  color: #fff;
  text-align: center;
  padding: 4rem 0;
}
body.front .hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
body.front .hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
body.front .hero .cta-button {
  display: inline-block;
  background-color: #e74c3c;
  color: #fff;
  padding: 0.8rem 2rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
body.front .hero .cta-button:hover {
  background-color: #c0392b;
}
body.front .features {
  padding: 4rem 0;
  background-color: #fff;
}
body.front .features h2 {
  text-align: center;
  margin-bottom: 2rem;
}
body.front .features .feature-grid .feature-item {
  text-align: center;
  padding: 1rem;
}
body.front .features .feature-grid .feature-item .feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/*# sourceMappingURL=front.css-dlNo2BD.map */
