@font-face {
  font-family: "IS-Plasma";
  src: url(../fonts/IS-Plasma-400.otf);
}

* {
  margin: 0;
  padding: 0;
  
}

body {
  background-color: rgb(0, 0, 0);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  font-family: "IS-Plasma", Helvetica, sans-serif;
}

/* Filtre flou avec dégradé progressif */
.blur-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.3) 40%,
    rgba(0, 0, 0, 0.2) 50%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0) 70%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 999;
}

.header.open ~ .blur-overlay {
  opacity: 1;
}

/* Header */
.header {
  position: fixed;
  top: 2rem;
  left: 2rem;
  right: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1000;
  transition: all 0.4s ease;
}

.header-left {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.header-top {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  width: 100%;
  gap: 1rem;
}

.header-item {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 400;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}

.header-item:first-child {
  flex-shrink: 0;
}

.header-item:last-child {
  margin-left: 0;
  padding-left: 3rem;
}

.header.open .header-item {
  opacity: 1;
  transform: translateY(0);
}

.header-plus {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 0;
  font-family: "IS-Plasma", Helvetica, sans-serif;
  text-transform: lowercase;
}

.header-plus:hover {
  transform: scale(1.1);
}

/* Section Informations */
.info-section {
  position: fixed;
  top: 50%;
  left: 2rem;
  right: 2rem;
  opacity: 0;
  transform: translateY(-50%) translateY(-10px);
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 1001;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
}

.header.open ~ .info-section {
  opacity: 1;
  transform: translateY(-50%);
  pointer-events: all;
}

.info-content {
  max-width: 800px;
  margin: 0;
  padding: 0;
  padding-left: 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.contact-item {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin: 0;
  padding: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  transition-delay: 0s;
}

.header.open ~ .info-section .contact-item {
  opacity: 1;
}

.header.open ~ .info-section .contact-item:nth-child(1) {
  transition-delay: 0.1s;
}

.header.open ~ .info-section .contact-item:nth-child(2) {
  transition-delay: 0.2s;
}

.header.open ~ .info-section .contact-item:nth-child(3) {
  transition-delay: 0.3s;
}

.header.open ~ .info-section .contact-item:nth-child(4) {
  transition-delay: 0.4s;
}

.contact-label {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 400;
  flex-shrink: 0;
  width: 2rem;
  margin: 0;
  padding: 0;
  margin-left: 0;
}

.contact-value {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  padding: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.additional-note {
  color: rgb(255, 255, 255);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  padding: 0;
}

.contact-link {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: rgb(200, 200, 200);
  text-shadow: 0 0 10px rgba(200, 200, 200, 0.5);
}

/* Main Content */
.main-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-top: 0;
  min-height: 100vh;
}

.image-container {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transform: scale(1);
}

.image-container img {
  max-width: 400px;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header {
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
  }
  
  .info-section {
    top: 50%;
    left: 1.5rem;
    right: 1.5rem;
    transform: translateY(-50%) translateY(-10px);
  }
  
  .header.open ~ .info-section {
    transform: translateY(-50%);
  }
  
  
  .info-content {
    max-width: 700px;
    padding-left: 0;
  }
  
  .image-container img {
    max-width: 350px;
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .header {
    top: 1rem;
    left: 1rem;
    right: 1rem;
  }
  
  .header-plus {
    margin-left: 0;
  }
  
  .header-item {
    font-size: 1rem;
  }
  
  .info-section {
    top: 50%;
    left: 1rem;
    right: 1rem;
    gap: 1.5rem;
    flex-direction: column;
    max-height: calc(100vh - 2rem);
    transform: translateY(-50%) translateY(-10px);
  }
  
  .header.open ~ .info-section {
    transform: translateY(-50%);
  }
  
  
  .info-content {
    max-width: 100%;
    min-width: 0;
    padding-left: 0;
  }
  
  .contact-label {
    width: 1.5rem;
    margin-left: 0;
  }
  
  .contact-value {
    line-height: 1.3;
  }
  
  .main-content {
    padding: 0.6rem;
    margin-top: 0;
  }
  
  .image-container img {
    max-width: 320px;
    max-height: 320px;
  }
} */

