/* ---------- GÉNÉRAL ---------- */
body {
  background-color: white;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0 0 60px 0; /* padding-bottom pour espace sous le contenu */
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- NAVBAR ---------- */
.navbar {
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px;
  background-color: white;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-logo {
  height: 100px;
  width: 100px;
  margin-left: 30px;
}

.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-right: 30px;
}

.nav-button {
  color: black;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-button:hover {
  text-decoration: underline;
}

/* ---------- CONTENU CENTRÉ ---------- */
.main-content {
  flex: 1;
  margin-top: 120px; /* hauteur de la navbar */
  margin-left: 100px;
  margin-right: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 20px;
}

.main-content > div {
  max-width: 600px;
}

.main-content p {
  font-size: 1.2rem;
  line-height: 1.5;
}

.round {
  margin-top: 10px;
  margin-left: 100px;
  margin-right: 150px;
  width: 300px;
  height: 350px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
}

/* Masquer l’image ronde sur tablette et mobile */
@media screen and (max-width: 1024px) {
  .round {
    display: none;
  }
}

/* ---------- GALERIE ---------- */
.gallery-container {
  margin-top: 150px;
  padding: 40px;
  column-count: 3;
  column-gap: 20px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 20px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 3000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

#lightbox-caption {
  margin-top: 20px;
  color: white;
  font-size: 1.2rem;
  text-align: center;
}
/* Style lightbox */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  flex-direction: column; /* pour que la légende soit sous l'image */
  z-index: 1000;
  padding: 20px;
  box-sizing: border-box;
}

.lightbox img {
  max-width: 90vw;
  max-height: 80vh;
  margin-bottom: 10px; /* espace entre image et légende */
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

#lightbox-caption {
  color: white;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  text-align: center;
  max-width: 90vw;
  word-wrap: break-word;
  user-select: none;
}
/* ---------- RESPONSIVE DESIGN ---------- */

/* Ordinateur : 3 colonnes (inchangé) */
@media screen and (min-width: 1025px) {
  .gallery-container {
    column-count: 3;
  }
}

/* Tablette et mobiles : 2 colonnes */
@media screen and (max-width: 1024px) {
  .gallery-container {
    column-count: 2;
  }
  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-top: 10px;
  }
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Mobile (petits écrans) : 2 colonnes */
@media screen and (max-width: 600px) {
  .gallery-container {
    column-count: 2;
  }
}

/* ---------- LIENS SOCIAUX ---------- */
.social-links {
  margin: 30px 0 50px 100px; /* marge du bas plus visible */
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  padding: 0;
}

@media screen and (max-width: 768px) {
  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-left: 0; /* pour centrer sur mobile */
  }
}

.social-link {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  margin-bottom: 100px;
}

.social-link:hover {
  transform: scale(1.1);
}

.instagram-link,
.pinterest-link {
  background-color: #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instagram-link img,
.pinterest-link img {
  width: 30px;
  height: 30px;
}

.instagram-icon {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/Instagram_Icon.svg/1200px-Instagram_Icon.svg.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
}

.pinterest-icon {
  background-image: url("https://upload.wikimedia.org/wikipedia/commons/thumb/0/08/Pinterest-logo.png/600px-Pinterest-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
}

/* Image mobile */
.viktoria-mobile {
  display: none;
  width: 250px;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  margin: 30px auto 40px auto; /* centré horizontalement */
}

@media screen and (max-width: 1024px) {
  .viktoria-mobile {
    display: block;
  }
}

/* Contact info */
.contact-info {
  text-align: center;
  margin-top: 30px;
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .contact-info {
    margin-top: 40px;
  }
}
.exhibitions-box {
  background-color: #e6ddf0;
  padding: 30px 40px;
  margin: -50px 180px -300px 700px;
  border-radius: 12px;
  text-align: center;
  font-family: "Geist", sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.exhibitions-box h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .exhibitions-box {
    margin: 40px 20px;
    padding: 20px;
    font-size: 1rem;
  }

  .exhibitions-box h2 {
    font-size: 1.5rem;
  }
}
