/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #fff;
  opacity: 0;
  transition: opacity 0.5s ease;
}

body.loaded {
  opacity: 1;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 48px 24px;
}

/* LOGO */
.logo {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: #111;
}


.logo span {
  margin-left: 6px;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  color: #111;
  font-size: 16px;
  padding-bottom: 8px;
}

.main-nav a.active {
  border-bottom: 2px solid #111;
}

/* INSTAGRAM BUTTON */
.insta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #111;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 500;
}

.insta-btn:hover {
  background: #111;
}

.insta-btn svg {
  width: 22px;
  height: 22px;
  fill: #111;
  transition: fill 0.3s ease;
}

.insta-btn:hover svg {
  fill: #fff;
}

/* ABOUT */
.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 0 8vw;
  align-items: center;
  min-height: calc(100vh - 140px);
}

.about-image img {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  border-radius: 18px;
}

.about-text h1 {
  font-family: 'Syncopate', sans-serif;
  font-size: 34px;
  margin-bottom: 28px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
}

/* FOOTER */
.site-footer {
  text-align: center;
  padding: 16px 0;
  font-size: 12px;
  color: #555;
  background: #fff;
  border-top: 1px solid #eee;
}

/* BURGER */
.mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 600;
  position: relative;
}

.mobile-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s ease;
}

body.menu-open .mobile-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

body.menu-open .mobile-toggle span:nth-child(2) {
  opacity: 0;
}

body.menu-open .mobile-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* MOBILE MENU OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 400;
}

body.menu-open .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-overlay a {
  font-size: 20px;
  color: #111;
  text-decoration: none;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}

.mobile-menu-overlay a:hover {
  color: #555;
}

/* COLLABORATIONS */
.collaborations {
  padding: 80px 8vw 150px;
  text-align: center;
}

.collaborations h2 {
  font: 1.2em "Fira Sans", sans-serif;
  font-size: 20px;
  letter-spacing: 4px;
  margin-bottom: 50px;
  color: #111;
}

.collab-logos img {
  width: 260px;          /* largeur identique */
  height: 80px;          /* hauteur identique */
  object-fit: contain;   /* garde les proportions */
  opacity: 0.35;
  transition: opacity 0.4s ease, transform 0.4s ease;
  filter: grayscale(10%);
}


.collab-logos img {
  max-height: 120px;
  opacity: 0.35;
  transition: opacity 0.4s ease, transform 0.4s ease;
  filter: grayscale(10%);
}

/* Hover */
.collab-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-4px);
}

/* Fade-in on scroll */
.collaborations {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.collaborations.visible {
  opacity: 1;
  transform: translateY(0);
}




/* RESPONSIVE */
@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .main-nav { display: none; }
  .about-wrapper { grid-template-columns: 1fr; gap: 40px; padding: 40px 6vw; }
  .about-image img { height: 50vh; }
  .about-text h1 { font-size: 26px; }
  .insta-btn { display: none; }
    .collab-logos {
    gap: 30px;
  }
  .collab-logos img {
    width: 100px;
    height: 45px;
  }

}
