  :root {
    /* Couleurs principales - Jubilé */
    --jubilee-blue:  #02193b;
    --jubilee-gold: #D4AF37;
    --jubilee-yellow: #FFCC00;
    --jubilee-light: #F0F4FF;
    --jubilee-cream: #FFFDF8;

    /* Couleurs neutres */
    --text-primary: #2C3E50;
    --text-secondary: #5A6C7D;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;

    /* Ombres */
    --shadow-sm: 0 2px 8px rgba(30, 63, 139, 0.08);
    --shadow-md: 0 4px 16px rgba(30, 63, 139, 0.12);
    --shadow-lg: 0 8px 32px rgba(30, 63, 139, 0.16);

    /* Typographie */
    --font-title: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: var(--font-body);
    background: var(--jubilee-cream);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* Hero Section */
  .hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--jubilee-blue) 0%, #002b6b 100%);
    padding: 120px 20px 80px;
    text-align: center;
    overflow: hidden;
  }

  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
      radial-gradient(circle at 20% 30%, rgba(255, 204, 0, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
  }

  .hero-icon {
    font-size: 3.5rem;
    color: var(--jubilee-gold);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-15px);
    }
  }

  .hero-badge {
    display: inline-block;
    background: rgba(255, 204, 0, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 204, 0, 0.3);
  }

  .hero-badge i {
    margin-right: 8px;
    color: var(--jubilee-yellow);
  }

  .hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  }

  .hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
  }

  .date-highlight {
    display: inline-block;
    background: linear-gradient(135deg, var(--jubilee-yellow) 0%, var(--jubilee-gold) 100%);
    color: var(--jubilee-blue);
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(255, 204, 0, 0.3);
    margin-top: 10px;
  }

  /* Container */
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  /* Section Titles */
  .section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    color: var(--jubilee-blue);
    text-align: center;
    margin: 80px 0 20px;
    position: relative;
  }

  .section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--jubilee-gold) 0%, var(--jubilee-yellow) 100%);
    margin: 15px auto 0;
    border-radius: 2px;
  }

  .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 50px;
    font-weight: 300;
  }

  /* Triduum Cards */
  .triduum-day {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: var(--shadow-md);
    border-left: 6px solid var(--jubilee-blue);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .triduum-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(30, 63, 139, 0.02) 100%);
    pointer-events: none;
  }

  .triduum-day:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }

  .triduum-day h3 {
    font-family: var(--font-title);
    color: var(--jubilee-blue);
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .triduum-day h3 i {
    color: var(--jubilee-gold);
    font-size: 1.5rem;
  }

  .triduum-day p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.8;
  }

  /* Gallery */
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 30px 0;
  }

  .gallery img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
  }

  .gallery img:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: var(--shadow-lg);
  }

  /* Opening Card */
  .opening-card {
    background: linear-gradient(135deg, var(--jubilee-blue) 0%, #2d5cb8 100%);
    color: var(--white);
    border-radius: 20px;
    padding: 50px;
    margin: 40px 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
  }

  .opening-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 204, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
  }

  @keyframes rotate {
    from {
      transform: rotate(0deg);
    }

    to {
      transform: rotate(360deg);
    }
  }

  .opening-card h2 {
    font-family: var(--font-title);
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
  }

  .opening-card p {
    font-size: 1.2rem;
    margin: 15px 0;
    position: relative;
    z-index: 2;
  }

  /* Pilgrimage Cards */
  .pilgrimage-card {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
  }

  .pilgrimage-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
  }

  .pilgrimage-img {
    width: 350px;
    height: 280px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.5s ease;
  }

  .pilgrimage-card:hover .pilgrimage-img {
    transform: scale(1.1);
  }

  .pilgrimage-info {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .pilgrimage-info h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--jubilee-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .pilgrimage-info h3 i {
    color: var(--jubilee-gold);
  }

  .pilgrimage-info p {
    color: var(--text-secondary);
    margin: 8px 0;
    line-height: 1.7;
  }

  .pilgrimage-info p strong {
    color: var(--jubilee-blue);
    font-weight: 600;
  }

  /* News Card */
  .news-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    margin: 30px 0;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
  }

  .news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
  }

  .news-card h3 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--jubilee-blue);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .news-card h3 i {
    color: var(--jubilee-gold);
  }

  .news-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 12px 0;
  }

  .news-card p strong {
    color: var(--jubilee-blue);
    font-weight: 600;
  }

  .news-card img {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 20px;
    cursor: pointer;
    transition: transform 0.4s ease;
  }

  .news-card img:hover {
    transform: scale(1.02);
  }

  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--jubilee-blue) 0%, #2d5cb8 100%);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    text-decoration: none;
    margin: 20px auto;
    position: relative;
    overflow: hidden;
  }

  .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
  }

  .btn:hover::before {
    width: 300px;
    height: 300px;
  }

  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(30, 63, 139, 0.3);
  }

  .btn i {
    transition: transform 0.3s ease;
  }

  .btn:hover i {
    transform: translateX(5px);
  }

  .btn-center {
    display: flex;
    justify-content: center;
    margin: 40px 0;
  }

  /* Hidden Section */
  #more-pilgrimages {
    display: none;
    animation: fadeInUp 0.6s ease;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Footer */


  /* Lightbox */
  .lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
  }

  .lightbox-overlay img {
    max-height: 90vh;
    max-width: 90vw;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  }

  /* Responsive Design */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }

    .hero-subtitle {
      font-size: 1.1rem;
    }

    .section-title {
      font-size: 2rem;
    }

    .pilgrimage-card {
      flex-direction: column;
    }

    .pilgrimage-img {
      width: 100%;
      height: 250px;
    }

    .pilgrimage-info {
      padding: 25px;
    }

    .gallery {
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 12px;
    }

    .gallery img {
      height: 180px;
    }

    .triduum-day {
      padding: 25px;
    }

    .opening-card {
      padding: 30px 20px;
    }

    .opening-card h2 {
      font-size: 1.8rem;
    }

    .btn {
      padding: 14px 28px;
      font-size: 0.95rem;
    }
  }

  @media (max-width: 480px) {
    .hero-icon {
      font-size: 2.5rem;
    }

    .hero-title {
      font-size: 2rem;
    }

    .date-highlight {
      padding: 10px 20px;
      font-size: 0.95rem;
    }
  }
