      * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
      }
      body {
        font-family: "Times New Roman", Times, serif;
        background-color: #f5f3f0;
        background-image: url("images/bg-min.png");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        color: #333;
        line-height: 1.8;
        font-weight: normal;
        font-size: 16px;
      } /* Header avec image de fond et gradient noir */
      .header {
        background-image: url("images/bg-min.png");
        background-size: cover;
        background-position: left top;
        padding: 20px 60px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ddd;
        position: sticky;
        top: 0;
        z-index: 100;
        background-color: #f5f3f0;
      } /* Overlay noir sur l'image du header */
      .header::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(
          90deg,
          transparent 0%,
          rgba(0, 0, 0, 0.3) 100%
        );
        z-index: 1;
        pointer-events: none;
      }
      .logo {
        display: block;
        height: 60px;
        width: auto;
        position: relative;
        z-index: 10;
      }
      .logo img {
        height: 100%;
        width: auto;
      } /* Navigation au-dessus du rectangle */
      .nav-menu {
        position: relative;
        z-index: 2;
        display: flex;
        list-style: none;
        gap: 60px;
        margin-top: 0;
      }
      .nav-item {
        position: relative;
      }
      .nav-menu a {
        text-decoration: none;
        color: #000;
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
        transition: color 0.2s ease;
      }
      .nav-menu a:hover,
      .nav-menu a.active {
        color: #0030ff;
      } /* Dropdown avec fond semi-transparent */
      .dropdown {
        position: absolute;
        top: 25px;
        left: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        min-width: 180px;
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease;
        padding: 20px 0;
        border-left: 1px solid #333;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      }
      .nav-item:hover .dropdown {
        opacity: 1;
        visibility: visible;
      }
      .dropdown a {
        display: block;
        padding: 8px 20px;
        color: #ccc;
        font-size: 14px;
        text-transform: none;
        letter-spacing: 0;
      }
      .dropdown a:hover {
        color: #0030ff;
      } /* Bouton de changement de langue */
      .lang-switch {
        background: transparent;
        border: 1px solid #000000;
        color: #000000;
        padding: 8px 12px;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 1px;
        cursor: pointer;
        transition: all 0.2s ease;
        font-family: inherit;
      }
      .lang-switch:hover {
        border-color: #0030ff;
        color: #0030ff;
      } /* Layout principal */
      .main-content {
        display: grid;
        grid-template-columns: 1fr 2fr;
        min-height: 80vh;
        gap: 100px;
        padding: 60px 60px;
        max-width: 1400px;
        margin: 0 auto;
      } /* Sidebar gauche */
      .sidebar {
        padding-top: 40px;
      }
      .artist-name {
        font-size: 26px;
        font-weight: normal;
        margin-bottom: 40px;
        letter-spacing: 1px;
        color: #000;
      }
      .artist-description {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 60px;
        max-width: 350px;
      } /* Boutons */
      .action-buttons {
        margin-bottom: 80px;
      }
      .btn {
        display: block;
        width: 200px;
        padding: 15px 20px;
        border: 1px solid #666;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        color: #666;
        text-decoration: none;
        text-align: center;
        font-size: 15px;
        margin-bottom: 15px;
        transition: all 0.2s ease;
        text-transform: lowercase;
      }
      .btn:hover {
        border-color: #0030ff;
        color: #0030ff;
        background: rgba(255, 255, 255, 0.5);
      } /* Navigation sections Portfolio */
      .portfolio-nav {
        margin-top: 60px;
      }
      .section-title {
        font-size: 15px;
        text-transform: lowercase;
        letter-spacing: 1px;
        color: #000;
        margin-bottom: 30px;
        cursor: pointer;
        position: relative;
        padding-left: 20px;
      }
      .section-title:after {
        content: "▼";
        position: absolute;
        left: 0;
        font-size: 10px;
        color: #666;
        transition: transform 0.2s ease;
      }
      .section-title.open:after {
        transform: rotate(180deg);
      }
      .series-list {
        list-style: none;
        margin-bottom: 40px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }
      .series-list.open {
        max-height: 300px;
      }
      .series-list li {
        padding: 6px 0;
      }
      .series-list a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s ease;
        text-transform: lowercase;
      }
      .series-list a:hover {
        color: #0030ff;
      } /* Zone image principale */
      .main-image {
        padding-top: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        position: absolute;
        top: 150px;
        right: 180px;
        width: calc(66.666% - 500px);
        z-index: 50;
      }
      .image-container {
        width: 100%;
        height: 600px;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        margin-bottom: 15px;
      }
      .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
      } /* Info œuvre - maintenant en dessous de l'image */
      .image-info {
        font-size: 13px;
        color: #999;
        line-height: 1.4;
        text-align: left;
        width: 100%;
      }
      .image-info .title {
        color: #000;
        font-style: italic;
      } /* Links footer sidebar */
      .sidebar-footer {
        margin-top: 80px;
      }
      .sidebar-footer a {
        display: block;
        color: #666;
        text-decoration: none;
        font-size: 14px;
        margin-bottom: 20px;
        text-transform: lowercase;
      }
      .sidebar-footer a:hover {
        color: #0030ff;
      } /* Responsive */
       /* Layout Mentions Légales */
      .legal-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 80px 60px 120px 60px;
      }

      .legal-header {
        margin-bottom: 80px;
        text-align: center;
      }

      .page-title {
        font-size: 26px;
        font-weight: normal;
        text-transform: lowercase;
        letter-spacing: 1px;
        margin-bottom: 0;
        color: #000;
      }

      /* Sections */
      .legal-section {
        margin-bottom: 60px;
      }

      .section-title {
        font-size: 18px;
        font-weight: normal;
        margin-bottom: 20px;
        color: #000;
      }

      .section-content {
        font-size: 16px;
        line-height: 1.8;
        color: #666;
      }

      .section-content p {
        margin-bottom: 15px;
      }

      .section-content strong {
        color: #000;
      }

      .section-content a {
        color: #666;
        text-decoration: none;
        border-bottom: 1px solid #ddd;
        transition: all 0.2s ease;
      }

      .section-content a:hover {
        color: #0030ff;
        border-bottom-color: #0030ff;
      }
   /* Responsive */
      @media (max-width: 768px) {
        body {
          padding-top: 140px; /* Ajustement pour mobile */
        }

        .header {
          flex-direction: column;
          gap: 20px;
          padding: 10px;
        }

        .header::before {
          display: none;
        }

        .nav-menu {
          gap: 30px;
        }

        .error-container {
          padding: 80px 30px 120px 30px;
        }

        .error-code {
          font-size: 80px;
          letter-spacing: 5px;
        }

        .action-buttons {
          flex-direction: column;
          align-items: center;
        }

        .btn {
          width: 200px;
        }

        .work-item {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .work-item.reverse .work-image {
          order: 1;
        }

        .work-item.reverse .work-info {
          order: 2;
        }

        .dropdown {
          position: static;
          opacity: 1;
          visibility: visible;
          background: transparent;
          padding: 10px 0;
          border: none;
          box-shadow: none;
          backdrop-filter: none;
        }
      }
      /* Layout style Mia Pensa avec sidebar */
      .main-content {
        display: grid;
        grid-template-columns: 1fr 3fr;
        min-height: 80vh;
        gap: 100px;
        padding: 60px 60px;
        max-width: 1400px;
        margin: 0 auto;
      }

      /* Sidebar gauche style Mia Pensa */
      .sidebar {
        padding-top: 0;
      }

      .page-title {
        font-size: 26px;
        font-weight: normal;
        margin-bottom: 60px;
        letter-spacing: 1px;
        color: #000;
        text-transform: lowercase;
      }

      /* Navigation années style Mia Pensa */
      .year-nav {
        margin-bottom: 80px;
      }

      .year-section {
        margin-bottom: 40px;
      }

      .year-title {
        font-size: 15px;
        color: #000;
        margin-bottom: 20px;
        cursor: pointer;
        position: relative;
        text-transform: lowercase;
        padding-left: 20px;
      }

      .year-title:after {
        content: "▼";
        position: absolute;
        left: 0;
        font-size: 10px;
        color: #666;
        transition: transform 0.2s ease;
      }

      .year-title.open:after {
        transform: rotate(180deg);
      }

      .works-list {
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }

      .works-list.open {
        max-height: 300px;
      }

      .works-list li {
        padding: 6px 0;
      }

      .works-list a {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        transition: color 0.2s ease;
        text-transform: lowercase;
      }

      .works-list a:hover,
      .works-list a.active {
        color: #0030ff;
      }

      /* Zone principale - image et texte côte à côte */
      .main-display {
        padding-top: 20px;
      }

      .series-title {
        font-size: 32px;
        font-weight: normal;
        color: #000;
        margin-bottom: 80px;
        text-transform: lowercase;
        letter-spacing: 1px;
      }

      .work-item {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: start;
        margin-bottom: 120px;
      }

      .work-item.reverse {
        grid-template-columns: 1fr 1fr;
      }

      .work-item.reverse .work-image {
        order: 2;
      }

      .work-item.reverse .work-info {
        order: 1;
      }

      .work-image {
        width: 100%;
        height: 500px;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 14px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      }

      .work-info {
        padding-top: 20px;
      }

      .work-title {
        font-size: 20px;
        color: #000;
        margin-bottom: 10px;
        font-style: italic;
        font-weight: normal;
      }

      .work-details {
        font-size: 14px;
        color: #999;
        line-height: 1.6;
        margin-bottom: 30px;
      }

      .work-description {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
      }

      /* Links footer */
      .sidebar-footer {
        margin-top: 100px;
      }

      .sidebar-footer a {
        display: block;
        color: #666;
        text-decoration: none;
        font-size: 14px;
        margin-bottom: 20px;
        text-transform: lowercase;
      }

      .sidebar-footer a:hover {
        color: #0030ff;
      }
      /* Layout Available Works */
      .available-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 80px 60px 120px 60px;
      }

      .page-header {
        margin-bottom: 80px;
        text-align: center;
      }

      .page-title {
        font-size: 26px;
        font-weight: normal;
        text-transform: lowercase;
        letter-spacing: 1px;
        margin-bottom: 20px;
        color: #000;
      }

      .page-subtitle {
        font-size: 16px;
        color: #666;
        text-transform: lowercase;
      }

      /* Grid 3 colonnes */
      .works-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        margin-bottom: 80px;
      }

      .work-item {
        position: relative;
        cursor: pointer;
      }

      .work-image {
        width: 100%;
        height: 600px;
        background: rgba(255, 255, 255, 0.4);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #999;
        font-size: 14px;
        position: relative;
        overflow: hidden;
        margin-bottom: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      }

      /* Status indicators */
      .status-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        padding: 5px 12px;
        font-size: 12px;
        text-transform: lowercase;
        border-radius: 15px;
      }

      .status-available {
        background: rgba(59, 130, 246, 0.1);
        color: #0030ff;
        border: 1px solid #0030ff;
      }

      .status-sold {
        background: rgba(102, 102, 102, 0.1);
        color: #666;
        border: 1px solid #999;
      }

      /* Hover overlay */
      .work-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
      }

      .work-item:hover .work-overlay {
        transform: translateY(0);
      }

      .work-title {
        font-size: 16px;
        font-weight: normal;
        color: #000;
        margin-bottom: 5px;
        font-style: italic;
      }

      .work-series {
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
      }

      .work-details {
        font-size: 13px;
        color: #999;
        line-height: 1.4;
        margin-bottom: 15px;
      }

      /* Bouton Express Interest */
      .interest-btn {
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        border: 1px solid #666;
        padding: 8px 16px;
        font-size: 14px;
        text-transform: lowercase;
        cursor: pointer;
        transition: all 0.2s ease;
        font-family: inherit;
        color: #666;
      }

      .interest-btn:hover {
        border-color: #0030ff;
        color: #0030ff;
        background: rgba(255, 255, 255, 0.5);
      }

      .interest-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
      }

      /* Info en bas */
      .info-section {
        text-align: center;
        padding: 60px 0;
        border-top: 1px solid #ddd;
      }

      .info-text {
        font-size: 16px;
        color: #666;
        line-height: 1.6;
        max-width: 500px;
        margin: 0 auto 30px auto;
      }

      .contact-link {
        color: #666;
        text-decoration: none;
        border-bottom: 1px solid #ddd;
        transition: all 0.2s ease;
      }

      .contact-link:hover {
        color: #0030ff;
        border-bottom-color: #0030ff;
      }

      /* Responsive */
      @media (max-width: 968px) {
        .works-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
        }
      }
/* Layout Contact */
      .contact-container {
        max-width: 600px;
        margin: 0 auto;
        padding: 80px 60px 120px 60px;
      }

      .contact-header {
        margin-bottom: 80px;
        text-align: center;
      }

      .page-title {
        font-size: 26px;
        font-weight: normal;
        text-transform: lowercase;
        letter-spacing: 1px;
        margin-bottom: 0;
        color: #000;
      }

      /* Formulaire */
      .contact-form {
        margin-bottom: 100px;
      }

      .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
      }

      .form-group {
        display: flex;
        flex-direction: column;
      }

      .form-group.full-width {
        grid-column: 1 / -1;
      }

      label {
        font-size: 16px;
        color: #666;
        margin-bottom: 15px;
        text-transform: lowercase;
      }

      .required {
        color: #0030ff;
        font-size: 14px;
      }

      input[type="text"],
      input[type="email"],
      select,
      textarea {
        border: 1px solid #666;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        padding: 15px 20px;
        font-family: inherit;
        font-size: 16px;
        color: #333;
        transition: all 0.2s ease;
      }

      input[type="text"]:focus,
      input[type="email"]:focus,
      select:focus,
      textarea:focus {
        outline: none;
        border-color: #0030ff;
        background: rgba(255, 255, 255, 0.5);
      }

      textarea {
        min-height: 150px;
        resize: vertical;
      }

      select {
        cursor: pointer;
      }

      .submit-btn {
        background: #666;
        color: white;
        border: 1px solid #666;
        padding: 15px 30px;
        font-family: inherit;
        font-size: 15px;
        text-transform: lowercase;
        cursor: pointer;
        transition: all 0.2s ease;
        backdrop-filter: blur(10px);
      }

      .submit-btn:hover {
        background: #0030ff;
        border-color: #0030ff;
      }

      /* Informations de contact */
      .contact-info {
        text-align: center;
        font-size: 14px;
        color: #666;
        line-height: 1.8;
      }

      .contact-info a {
        color: #666;
        text-decoration: none;
        border-bottom: 1px solid #ddd;
        transition: all 0.2s ease;
      }

      .contact-info a:hover {
        color: #0030ff;
        border-bottom-color: #0030ff;
      }

      .social-handle {
        margin-bottom: 8px;
      }

      .email {
        margin-bottom: 8px;
      }

      .address {
        font-style: italic;
      }
      
      /* Layout CV */
      .cv-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 80px 60px 120px 60px;
      }

      .cv-header {
        margin-bottom: 80px;
      }

      .artist-name {
        font-size: 26px;
        font-weight: normal;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 40px;
        color: #000;
      }

      .basic-info {
        font-size: 16px;
        line-height: 1.6;
        color: #666;
        margin-bottom: 20px;
      }

      /* Sections CV */
      .cv-section {
        margin-bottom: 80px;
      }

      .section-title {
        font-size: 15px;
        font-weight: bold;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-bottom: 40px;
        color: #000;
      }

      .cv-entry {
        margin-bottom: 30px;
        display: grid;
        grid-template-columns: 80px 1fr;
        gap: 40px;
      }

      .year {
        font-size: 16px;
        color: #666;
        font-weight: normal;
      }

      .entry-content {
        font-size: 16px;
        line-height: 1.6;
      }

      .entry-title {
        font-style: italic;
        color: #000;
      }

      .entry-details {
        color: #666;
      }

      .entry-link {
        color: #666;
        text-decoration: none;
        font-size: 14px;
        border-bottom: 1px solid #ddd;
        transition: all 0.2s ease;
      }

      .entry-link:hover {
        color: #0030ff;
        border-bottom-color: #0030ff;
      }

      /* Style pour les sous-entrées */
      .sub-entry {
        margin-bottom: 15px;
        padding-left: 0;
      }

      .sub-entry:last-child {
        margin-bottom: 0;
      }

      /* Style pour les événements à venir */
      .upcoming {
        font-weight: normal;
        background: rgba(59, 130, 246, 0.05);
        padding: 15px;
        border-left: 3px solid #0030ff;
        margin-left: -15px;
      }

      .upcoming .entry-title {
        color: #000;
      }
/* Layout 404 */
      .error-container {
        max-width: 800px;
        margin: 0 auto;
        padding: 120px 60px 180px 60px;
        text-align: center;
      }

      .error-code {
        font-size: 120px;
        font-weight: normal;
        margin-bottom: 40px;
        letter-spacing: 10px;
      }

      .error-code .zero {
        color: #999;
      }

      .error-code .four {
        color: #666;
      }

      .error-title {
        font-size: 26px;
        font-weight: normal;
        text-transform: lowercase;
        letter-spacing: 1px;
        margin-bottom: 40px;
        color: #000;
      }

      .error-message {
        font-size: 16px;
        color: #666;
        line-height: 1.8;
        margin-bottom: 60px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
      }

      /* Boutons d'action */
      .action-buttons {
        display: flex;
        gap: 20px;
        justify-content: center;
        margin-bottom: 80px;
      }

      .btn {
        padding: 15px 30px;
        border: 1px solid #666;
        background: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(10px);
        color: #666;
        text-decoration: none;
        text-align: center;
        font-size: 15px;
        transition: all 0.2s ease;
        text-transform: lowercase;
        font-family: inherit;
      }

      .btn:hover {
        border-color: #0030ff;
        color: #0030ff;
        background: rgba(255, 255, 255, 0.5);
      }

      .btn-primary {
        background: #666;
        color: white;
        border-color: #666;
      }

      .btn-primary:hover {
        background: #0030ff;
        border-color: #0030ff;
      }
/* Slider d'images */
.image-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.slider-image.active {
  opacity: 1;
}

/* Dots de navigation */
.slider-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: rgba(255, 255, 255, 0.9);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}