:root {
  --bg-dark: #0a0a0a;
  --text-light: #f5f5f5;
  --accent: white;
  --gray: #444;
}

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

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  scroll-behavior: smooth;
}

.lang {
  display: none;
}

body.lang-en .lang-en {
  display: inline;
}

body.lang-fr .lang-fr {
  display: inline;
}

.lang-switch button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}

.lang-switch button:hover {
  opacity: 1;
  transform: scale(1.1);
}

.lang-switch button.active {
  opacity: 1;
  transform: scale(1.1);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}


.site-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--text-light);
  text-decoration: none;
}

.nav__list {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav__list li a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.95rem;
}

.btn-outline {
  padding: 0.5rem 1rem;
  border: 1px solid var(--text-light);
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background .3s;
}

.btn-outline:hover {
  background: var(--text-light);
  color: var(--bg-dark);
}


.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
}



.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}


.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}


.hero__highlight {
  position: absolute;

  top: 20%;
  right: 15%;
  width: 180px;
  height: 360px;
  background: var(--accent);
  opacity: 0.4;
  pointer-events: none;
}


.hero__content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
}


.hero__content h1 {
  font-size: clamp(3rem, 12vw, 8rem);
  line-height: 1;
  font-weight: 700;
  margin: 0;
}


.hero__content p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: #ddd;
  max-width: 500px;
  line-height: 1.4;
}


.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}


.mouse {
  display: inline-block;
  width: 24px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 14px;
  position: relative;
}


@media (max-width: 480px) {
  .hero {
    height: 30vh;
    margin-top: 16%;
  }

  .hero__content {
    left: 5%;
  }

  .hero__content h1 {
    font-size: clamp(2rem, 10vw, 5rem);
  }

  .hero__content p {
    font-size: 1rem;
    max-width: 90%;
  }
}



.clients {
  padding: 2rem 0;
  text-align: center;
}

.clients__intro {
  margin-bottom: 1rem;
  color: var(--gray);
}

.clients__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}

.clients__list img {
  max-height: 40px;
  opacity: 0.8;
  filter: brightness(0) invert(1);
}

.clients__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.clients__list img {

  width: 120px;
  height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}



.about {
  padding: 4rem 0;
}

.about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.about__text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.about__text p {
  margin-bottom: 1.5rem;
  color: var(--gray);
}

.btn {
  background: var(--accent);
  color: var(--bg-dark);
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

.about__stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat__number {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.3rem;
}

.stat__label {
  color: var(--gray);
  font-size: 0.9rem;
}


.services {
  padding: 4rem 0;
  background: #111;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.service-group {
  margin-bottom: 3rem;
}

.service-group h3 {
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
}

.card {
  background: #222;
  padding: 1rem;
  text-align: center;
  border-radius: 4px;
  font-size: 0.9rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}


.portfolio {
  padding: 4rem 0;
}

.portfolio__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.portfolio__header h2 {
  font-size: 1.8rem;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.portfolio__item img {
  width: 100%;
  display: block;
  border-radius: 4px;
  object-fit: cover;
  height: 250px;
}


.cta {
  padding: 4rem 0;
  background: #111;
  text-align: center;
}

.cta__content h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.cta__buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}


.site-footer {
  padding: 2rem 0;
  background: #000;
  text-align: center;
}

.site-footer p {
  margin-bottom: 1rem;
  color: var(--gray);
}

.social a {
  margin: 0 .5rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
}


@media (max-width: 768px) {
  .about__wrapper {
    grid-template-columns: 1fr;
  }

  .portfolio__grid {
    grid-template-columns: 1fr;
  }

  .portfolio__header {
    flex-direction: column;
    gap: 1rem;
  }

  .nav__list {
    position: fixed;
    top: 60px;
    right: 0;
    width: 240px;
    height: calc(100vh - 60px);
    background: #111;
    flex-direction: column;
    padding: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    gap: 1rem;
  }

  .nav__list.nav__list--open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .btn-outline {
    display: none;
  }
}


.intro-section {
  background: #111;
  color: #fff;
}

.intro-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}


.intro-left {
  flex: 1;
  min-width: 300px;
}

.intro-pretitle {
  display: block;
  text-transform: uppercase;
  color: var(--gray);
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.intro-title {
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1;
  margin: 0.5rem 0 1rem;
}

.intro-text {
  max-width: 500px;
  color: #ccc;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.intro-stats {
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(3, auto);
  gap: 2rem 3rem;
}

.stat {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.stat .num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat .label {
  text-transform: uppercase;
  color: #ddd;
  font-size: 0.9rem;
  white-space: nowrap;
}


.intro-right {
  flex: 1;
  min-width: 300px;
}

.image-wrapper {
  position: relative;
}

.image-wrapper img {
  width: 100%;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}


.decor-circle {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 80px;
  height: 80px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-btn {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
}


.decor-line {
  position: absolute;
  width: 40px;
  height: 4px;
  background: var(--accent);
}

.decor-line.top {
  top: 10%;
  right: 5%;
  transform: rotate(20deg);
}

.decor-line.bottom {
  bottom: 20%;
  right: 15%;
  transform: rotate(-30deg);
}


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

  .intro-left,
  .intro-right {
    width: 100%;
    text-align: center;
  }

  .intro-left {
    padding: 3em;
    padding-bottom: 0;
  }

  .intro-left .intro-stats {
    justify-content: center;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1.5rem;
  }

  .decor-circle {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
  }
}


.case-studies {
  color: var(--text-light);
  padding: 2rem 0;
}

.case-studies .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}


.case-study-item {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 4rem;
  border-radius: 28px;
  box-shadow: #00000063 0 2px 20px;
}

.case-study-item:nth-child(even) {
  flex-direction: row-reverse;
}


.image-col {
  flex: 1;
  min-width: 280px;
}

.image-col img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
}


.content-col {
  flex: 1;
  max-width: 500px;
  padding: 50px;
}

.content-col .category {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.content-col h3 {
  font-size: 1.75rem;
  margin: 0.25rem 0 1rem;
}

.content-col p {
  color: #ccc;
  line-height: 1.5;
}


.btn-explore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 50%;
  color: #000;
  font-size: 1.25rem;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: transform 0.2s;
}

.btn-explore:hover {
  transform: scale(1.1);
}


@media (max-width: 768px) {
  .case-study-item {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    border-radius: 28px;
    box-shadow: #00000063 0 2px 20px;
  }

  .case-study-item:nth-child(even) {
    flex-direction: column;
  }

  .content-col {
    max-width: 100%;
    padding: 20px;
  }

  .btn-explore {
    margin: 2rem auto 0;
  }
}



.about-timeline {
  background: #111;
  color: #fff;
  padding: 5rem 0;
}

.about-tl__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.about-tl__about h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.about-tl__about p {
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.btn-download {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: transform .2s, opacity .2s;
}

.btn-download:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}


.about-tl__timeline .timeline {
  position: relative;
  padding-left: 2rem;
}

.about-tl__timeline .timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1rem;
  width: 4px;
  height: 100%;
  background: var(--gray);
}

.timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 2.5rem;
  padding-top: 20px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-date {
  position: absolute;
  left: -0.75rem;
  top: 0;
  background: var(--accent);
  color: #000;
  padding: 0.25rem 0.75rem;
  font-weight: 600;
  border-radius: 4px;
  white-space: nowrap;
}

.timeline-content {
  background: #222;
  padding: 1rem;
  border-radius: 6px;
  color: #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}


@media (max-width: 768px) {
  .about-tl__container {
    grid-template-columns: 1fr;
  }

  .about-tl__about {
    text-align: center;
  }

  .about-tl__timeline {
    margin-top: 3rem;
  }

  .about-tl__timeline .timeline {
    padding-left: 0.5rem;
  }

  .about-tl__timeline .timeline::before {
    left: 0.25rem;
  }

  .timeline-item {
    padding-left: 1rem;
  }

  .timeline-date {
    left: -1.25rem;
    font-size: 0.85rem;
  }
}


.modeling-services {
  background: #111;
  color: #fff;
  padding: 5rem 0;
}

.modeling-services .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  align-items: start;
}


.service-card {
  background: #222;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform .2s, background .2s;
}

.service-card:hover {
  transform: translateY(-5px);
  background: #2a2a2a;
}


.modeling-services {
  background: #111;
  color: #fff;
  padding: 5rem 0;
}

.modeling-services .section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}


.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;

  align-items: stretch;
}



.service-card {
  background: #222;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform .2s, background .2s;
}


.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon ion-icon {
  font-size: 2.5rem;
  color: var(--accent);
}


.service-card h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #fff;
}

.service-card {

  height: 100%;


  display: flex;
  flex-direction: column;
  justify-content: center;

  background: #222;
  padding: 2rem 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform .2s, background .2s;
}

.service-card:hover {
  transform: translateY(-5px);
  background: #2a2a2a;
}

.portfolio {
  background: #111;
  color: #fff;
  padding: 5rem 0;
}

.portfolio-group {
  margin-bottom: 4rem;
}

.portfolio__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.portfolio__header h2 {
  font-size: 2rem;
  color: #fff;
}

.btn-outline {
  border: 1px solid #fff;
  padding: 0.5rem 1rem;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: #fff;
  color: #111;
}


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

.portfolio__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s;
}

.portfolio__item:hover {
  transform: translateY(-5px);
}

.portfolio__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio__item:hover img {
  transform: scale(1.1);
}


.portfolio__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem;
  transition: opacity 0.3s;
}

.portfolio__item:hover .portfolio__overlay {
  opacity: 1;
}


@media (max-width: 600px) {
  .portfolio__header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .btn-outline {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {

  .nav-toggle {
    display: flex;
  }

  .btn-outline {
    display: none;
  }
  .nav__list {
    position: fixed;
    top: 60px;
    right: 0;
    width: 240px;
    height: calc(100vh - 60px);
    background: #111;
    flex-direction: column;
    padding: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    gap: 1rem;
  }

  .nav__list.nav__list--open {
    transform: translateX(0);
  }

  .nav__list li {
    margin: 0.5rem 0;
  }

  .nav__list li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
  }
}

/* Competitions timeline with images */
.timeline-item.with-media .timeline-content {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
}

.timeline-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

@media (max-width: 768px) {
  .timeline-item.with-media .timeline-content {
    grid-template-columns: 1fr;
  }

  .timeline-media img {
    height: auto;
  }
}

.competitions .timeline-content {
  background: #232323;
}