
   * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
   }

   /* PALETTE DE COULEURS */
   :root {
      --creme: #FCFCF7;
      --beige-clair: #ECDCAB;
      --beige-dore: #DFC57B;
      --or-moyen: #BF932A;
      --or-fonce: #9E6200;
   }

   body {
      font-family: 'Playfair Display', serif;
      background: linear-gradient(135deg, var(--creme) 0%, var(--beige-clair) 100%);
      color: var(--or-fonce);
      line-height: 1.6;
   }

   /* HERO */
   .hero {
      position: relative;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      overflow: hidden;
   }

   .hero img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
      filter: brightness(70%) sepia(0.2);
      animation: zoomIn 10s ease-in-out infinite alternate;
   }

   .hero h1 {
      font-size: 4rem;
      letter-spacing: 2px;
      margin-bottom: 15px;
      color: var(--creme);
      opacity: 0;
      animation: slideUp 2s ease-out forwards 1s;
      text-transform: uppercase;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
   }

   .hero p {
      font-size: 1.3rem;
      margin-bottom: 30px;
      opacity: 0;
      animation: fadeIn 2s ease-in forwards 2s;
      color: var(--creme);
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
   }

   .hero a {
      text-decoration: none;
      color: var(--or-fonce);
      background: var(--creme);
      border: 2px solid var(--creme);
      padding: 12px 30px;
      border-radius: 5px;
      font-size: 1.1rem;
      font-weight: 600;
      opacity: 0;
      animation: fadeIn 2s ease-in forwards 3s;
      transition: all 0.3s ease;
   }

   .hero a:hover {
      background: transparent;
      color: var(--creme);
      transform: scale(1.05);
   }

   /* CONTAINERS */
   .container {
      max-width: 1300px;
      margin: 0 auto;
      padding: 0 2rem 4rem;
   }

   .section-title {
      font-size: clamp(2rem, 4vw, 2.75rem);
      text-align: center;
      margin: 3rem 0 1rem 0;
      font-weight: 600;
      position: relative;
      padding-bottom: 1.5rem;
      color: var(--or-fonce);
   }

   .section-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, var(--or-moyen), var(--beige-dore));
   }

   .section-subtitle {
      text-align: center;
      color: var(--or-moyen);
      font-size: 1.125rem;
      margin-bottom: 2rem;
      font-weight: 300;
   }

   /* VAT / PAPE */
   .vatican {
      display: flex;
      flex-direction: row;
      gap: 3rem;
      padding: 3% 5%;
      border-radius: 15px;
      background: linear-gradient(135deg, var(--creme) 0%, var(--beige-clair) 100%);
      border: 2px solid var(--beige-dore);
      margin-bottom: 3rem;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
      box-shadow: 0 8px 25px rgba(158, 98, 0, 0.1);
   }

   .vatican.show {
      opacity: 1;
      transform: translateY(0);
   }

   .vatican>img {
      width: 200px;
      height: 200px;
      border-radius: 10px;
      border: 3px solid var(--beige-dore);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   }

   .vatican.reverse {
      flex-direction: row-reverse;
   }

   .vatican-text h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      color: var(--or-fonce);
   }

   .vatican-text p {
      margin-bottom: 1.5rem;
      color: var(--or-fonce);
   }

   .link {
      text-decoration: none;
      font-weight: 600;
      color: var(--or-moyen);
      transition: color 0.3s ease;
   }

   .link:hover {
      color: var(--or-fonce);
      text-decoration: underline;
   }

   /* TRESORS DU VATICAN */
   .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
   }

   .feature-card {
      position: relative;
      border: 2px solid var(--beige-dore);
      border-radius: 15px;
      overflow: hidden;
      min-height: 350px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      align-items: center;
      text-align: center;
      background-size: cover;
      background-position: center;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   }

   .feature-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(252, 252, 247, 0.9) 0%, rgba(236, 220, 171, 0.8) 100%);
      z-index: 0;
   }

   .feature-card h3 {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      color: var(--or-fonce);
      z-index: 1;
   }

   .feature-card p {
      font-size: 1.25rem;
      line-height: 1.6;
      color: var(--or-fonce);
      font-weight: 600;
      z-index: 1;
      padding: 0 1rem 1rem;
   }

   .feature-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(191, 147, 42, 0.3);
      border-color: var(--or-moyen);
   }

   /* SECTION ACTUALITES */
   .about-card {
      background: linear-gradient(135deg, var(--creme) 0%, var(--beige-clair) 100%);
      border-radius: 20px;
      padding: 2.5rem;
      transition: all 0.4s ease;
      border: 2px solid var(--beige-dore);
      position: relative;
      overflow: hidden;
      margin: 2rem 0;
      max-width: 1300px;
      margin-left: auto;
      margin-right: auto;
      box-shadow: 0 8px 25px rgba(158, 98, 0, 0.1);
   }

   .about-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--or-moyen), var(--beige-dore));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
   }

   .about-card:hover::before {
      transform: scaleX(1);
   }

   .about-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(191, 147, 42, 0.2);
   }

   .about-card h3 {
      font-size: 1.8rem;
      margin-bottom: 1.5rem;
      color: var(--or-fonce);
      text-align: center;
      font-weight: 600;
   }

   .about-card ul {
      list-style: none;
      padding: 0;
   }

   .about-card li {
      padding: 0.8rem 0;
      border-bottom: 1px solid var(--beige-dore);
      color: var(--or-fonce);
      font-size: 1.1rem;
      position: relative;
      padding-left: 2rem;
      opacity: 0;
      animation: slideInLeft 0.6s ease forwards;
   }

   /* Ajoute ces animations */
   @keyframes slideInLeft {
      from {
         opacity: 0;
         transform: translateX(-30px);
      }

      to {
         opacity: 1;
         transform: translateX(0);
      }
   }

   /* Animation décalée pour chaque li */
   .about-card li:nth-child(1) {
      animation-delay: 1.2s;
   }

   .about-card li:nth-child(2) {
      animation-delay: 1.4s;
   }

   .about-card li:nth-child(3) {
      animation-delay: 1.6s;
   }

   .about-card li:nth-child(4) {
      animation-delay: 1.2s;
   }

   .about-card li:nth-child(5) {
      animation-delay: 1.3s;
   }

   .about-card li:nth-child(6) {
      animation-delay: 1.4s;
   }

   .about-card li::before {
      content: '•';
      color: var(--or-moyen);
      font-size: 1.5rem;
      position: absolute;
      left: 0;
      top: 0.5rem;
   }

   .about-card li:last-child {
      border-bottom: none;
   }

   .about-card li:hover {
      color: var(grey);
   }


   /* CTA */
   .cta-section {
      background: linear-gradient(135deg, var(--or-moyen) 0%, var(--or-fonce) 100%);
      border-radius: 24px;
      padding: 4rem 2rem;
      text-align: center;
      margin: 4rem 0;
      box-shadow: 0 8px 35px rgba(158, 98, 0, 0.3);
      position: relative;
      overflow: hidden;
   }

   .cta-title {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      color: var(--creme);
      margin-bottom: 1rem;
   }

   .cta-description {
      color: var(--beige-clair);
      font-size: 1.125rem;
      margin-bottom: 2rem;
      line-height: 1.7;
   }

   .cta-button {
      background: var(--creme);
      color: var(--or-fonce);
      padding: 1rem 2.5rem;
      border-radius: 50px;
      font-size: 1.125rem;
      font-weight: 600;
      border: 2px solid var(--creme);
      cursor: pointer;
      box-shadow: 0 8px 25px rgba(252, 252, 247, 0.3);
      transition: all 0.4s ease;
   }

   .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 35px rgba(252, 252, 247, 0.4);
      background: transparent;
      color: var(--creme);
   }


   /* ANIMATIONS */
   @keyframes zoomIn {
      from {
         transform: scale(1);
      }

      to {
         transform: scale(1.1);
      }
   }

   @keyframes slideUp {
      from {
         opacity: 0;
         transform: translateY(40px);
      }

      to {
         opacity: 1;
         transform: translateY(0);
      }
   }

   @keyframes fadeIn {
      from {
         opacity: 0;
      }

      to {
         opacity: 1;
      }
   }

   @media(max-width:768px) {
      .vatican {
         flex-direction: column;
         text-align: center;
      }

      .vatican.reverse {
         flex-direction: column;
      }

      .about-card {
         margin: 2rem 1rem;
         padding: 1.5rem;
      }

      .hero h1 {
         font-size: 2.5rem;
      }
   }