
    /* Importer une police manuscrite élégante */
    @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&display=swap');

    /* Reset des marges et des paddings pour tous les éléments */
    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    /* Style global du body */
    body {
        font-family: 'Dancing Script', cursive;
        background-color: #f5f5f5;
        color: #333;
        font-size: 1.8rem;
        line-height: 1.8;
        
    }
 

    /* En-tête avec bordures arrondies et ombre */
    .header {
        
    
        text-align: center;
        position: relative;
    }

    /* Style du lien du titre dans la navbar */
.navbar-brand {
    font-size: 5rem; /* Augmenter la taille de la police */
    font-weight: bold;
    color: #8bc34a; /* Vert pastel */
    text-decoration: none;
    transition: color 0.5s ease-in-out, transform 0.5s ease-in-out;
}
.navbar-brand:hover {
    color: #aed581; /* Teinte légèrement différente pour l'effet hover */
    transform: scale(1.1); /* Agrandir légèrement sur le hover */
    animation: pulse 2s infinite; /* Animation douce et continue */
}

    /* Conteneur de navigation principal */
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-top: 10px;
        padding: 0 20px;
    }

    .navbar-nav {
        display: flex;
        justify-content: space-around; /* Utilisez space-around pour avoir un espace uniforme autour des éléments */
        width: 100%;
        margin-bottom: 10px;
    }

    .navbar-nav a {
        color: #ffd700;
        text-decoration: none;
        font-weight: bold;
        font-size: 2rem; /* Augmentez la taille de la police pour les titres */
        transition: color 0.3s ease-in-out;
        flex-basis: 15%; /* Ajustez la largeur de chaque élément pour qu'ils soient moins espacés */
        text-align: center;
        padding: 10px 0;
    }

    .navbar-nav a:hover,
    .navbar-nav a.active {
        color: #8bc34a;
        text-decoration: underline;
    }

    /* Conteneur du logo */
.logo-container {
    position: absolute;
    top: 35%;
    right: 20px;
    transform: translateY(-50%);
}


    /* Logo en forme de cercle avec animation */
    .navbar-logo {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background-color: white;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        animation: fadeInSlow 3s ease-in-out, heartbeatLimited 2s ease-in-out 3;
        animation-fill-mode: forwards;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2rem;
    }

    /* Animation pour afficher lentement le logo */
    @keyframes fadeInSlow {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Animation pour faire battre le logo 3 fois */
    @keyframes heartbeatLimited {
        0%, 100% {
            transform: scale(1);
        }
        25%, 75% {
            transform: scale(1.1);
        }
        50% {
            transform: scale(1.15);
        }
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        text-align: justify;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-label {
        font-size: 1.6rem;
        margin-bottom: 10px;
        display: block;
    }

    .form-control {
        width: 100%;
        padding: 10px;
        font-size: 1.4rem;
        border: 1px solid #ccc;
        border-radius: 6px;
    }

    .btn {
        background-color: white;
        color: #fff;
        padding: 12px 20px;
        border-radius: 10px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.6rem;
        transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        border: none;
        cursor: pointer;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .btn:hover {
        background-color: #8e24aa;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .footer {
       
        
        padding: 20px;
        text-align: center;
        margin-top: 50px;
        border-radius: 15px;
    }

    .footer a {
        color: #ffd700;
        text-decoration: none;
    }

    .footer a:hover {
        text-decoration: underline;
    }


    .burger-menu {
        display: none;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 1001;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .burger-menu span {
        background: green;
        height: 3px;
        width: 100%;
        border-radius: 10px;
        transition: all 0.3s ease-in-out;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .blog-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 20px;
    }

    .blog-card {
        background-color: #fff;
        border-radius: 15px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        display: flex;
        flex-direction: column;
    }

    .blog-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .blog-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .blog-content {
        padding: 20px;
        flex-grow: 1;
    }

    .blog-title {
        font-size: 2.2rem;
        color: #6a1b9a;
        margin-bottom: 10px;
    }

    .blog-excerpt {
        font-size: 1.6rem;
        color: #333;
        margin-bottom: 15px;
    }

    .btn-container {
        display: flex;
        justify-content: space-between;
        margin-top: 20px;
    }

    .blog-content .btn {
        background-color: #ab47bc;
        color: #fff;
        padding: 10px 15px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.4rem;
        transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        border: none;
        cursor: pointer;
    }

    .blog-content .btn:hover {
        background-color: #8e24aa;
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }

    .btn-warning {
        background-color: #ffb74d;
    }

    .btn-warning:hover {
        background-color: #ffa726;
    }

    .btn-danger {
        background-color: #ef5350;
    }

    .btn-danger:hover {
        background-color: #e53935;
    }

.blog-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.carousel-container {
    margin-top: 40px;
}

.carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
}

.carousel-item {
    scroll-snap-align: start;
    flex: 0 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Styles pour les cartes de service */
.service-card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.service-card-body {
    padding: 20px;
}
.service-card-body h5 {
    margin: 0 0 10px;
    font-size: 2rem;
    color: #6a1b9a;
}
.service-card-body p {
    font-size: 1.4rem;
    color: #333;
}
/* Ajoutez une classe pour les boutons "En savoir plus" si nécessaire */
.btn {
    background-color: #ab47bc;
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.6rem;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.btn:hover {
    background-color: #8e24aa;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Services section */
.services-section {
    display: flex;
  
    justify-content: center;
    align-items: stretch;
}

.service-card {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    
    width: calc(33% - 40px);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    background-color: #f0f8ff;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-body {
    padding: 20px;
}

.service-card-body h5 {
    margin: 0 0 10px;
    font-size: 2rem;
    color: #39d7a9;
}

.service-card-body p {
    font-size: 1.4rem;
    color: #666;
}

/* Styles pour le menu burger (mobile) */
@media (max-width: 768px) {
    .nav-container {
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        
        padding: 20px;
        text-align: center;
        border-bottom-left-radius: 15px;
        border-bottom-right-radius: 15px;
       
    }

    .navbar-brand {
        font-size: 5rem; 
        font-weight: bold;
        color: #8bc34a; 
        text-align: center;
        text-decoration: none;
        transition: color 0.5s ease-in-out, transform 0.5s ease-in-out;
    }

    .nav-container.active {
        display: flex;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 15px;
        padding: 10px 0;
    }

    .burger-menu {
        display: flex;
    }

    .navbar-logo {
        display: none;
    }

    .floating-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background-color: white;
        color: #fff;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
        cursor: pointer;
        transition: transform 0.3s ease-in-out;
    }

    .floating-button:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .blog-title {
        font-size: 2rem;
    }

    .blog-excerpt {
        font-size: 1.4rem;
    }

    .blog-content .btn {
        font-size: 1.2rem;
        padding: 8px 12px;
    }

    .btn-container {
        flex-direction: column;
        gap: 10px;
    }

    .services-section, .card {
        flex-direction: column;
        width: 100%;  
       
    }
    .service-card, .card {
        width: 100%;
    }
    
}
/* Ajustement du conteneur principal */
.services-container {
    text-align: center;
    padding: 50px 20px;
}

/* Titre */
.page-title {
    font-size: 3rem;
    margin-bottom: 30px;
    font-family: 'Dancing Script', cursive;
    color: #6a1b9a;
}

/* Grille pour afficher les soins */
.services-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap; /* Permet aux cartes de s'ajuster sur petits écrans */
    max-width: 1200px;
    margin: 0 auto;
}

/* Cartes des soins */
.service-card {
    width: 300px; /* Largeur fixe pour un bon alignement */
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Image en haut de la carte */
.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Ajuste l'image sans déformation */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Contenu des cartes */
.service-card-body {
    padding: 20px;
}

.service-card-body h2 {
    font-size: 1.8rem;
    color: #6a1b9a;
    margin-bottom: 10px;
}

.service-card-body p {
    font-size: 1.4rem;
    color: #666;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 90%; /* Plus large sur mobile */
    }
}

.notification {
    background-color: #d0f0c0;
    color: #2d572c;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 5px solid #4caf50;
    border-radius: 8px;
    font-weight: bold;
  }
  
  .comment-form {
    background: #fafafa;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    margin-bottom: 40px;
  }
  
  .comment-form .form-group {
    margin-bottom: 15px;
  }
  
  .comment-form input,
  .comment-form textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 10px;
    font-size: 1.4rem;
  }
  
  .comment-form button {
    background-color: #6a1b9a;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .comment-form button:hover {
    background-color: #8e24aa;
  }
  
  .comments-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .comment-card {
    background: #f4f4f4;
    border-left: 5px solid #ab47bc;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 1.4rem;
  }
  
  .comment-text {
    margin-bottom: 8px;
    font-style: italic;
    color: #444;
  }
  
  .comment-author {
    font-size: 1.2rem;
    color: #555;
    text-align: right;
  }
  

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 30px;
  }
  
  .blog-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }
  
  .blog-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .blog-content {
    padding: 20px;
  }
  
  .blog-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #6a1b9a;
  }
  
  .blog-excerpt {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
  }
  
  .article-full {
    margin-top: 80px;
    background: #fafafa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }
  .article-image {
    display: block;
    max-width: 50%;
    width: 50%;
    height: auto;
   
    object-fit: cover;
    border-radius: 12px;
    margin: 20px auto;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
  }
  
  .modal-box {
    background-color: white;
    padding: 30px;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    text-align: center;
    animation: fadeIn 0.4s ease;
  }
  
  .modal-box h2 {
    margin-bottom: 15px;
    color: #6a1b9a;
  }
  
  .modal-box p {
    font-size: 1.4rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
  }
  
  .promo-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #8e44ad;
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
  }
  
  .promo-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto 40px auto;
  }
  
  .promo-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
  }
  
  .promo-btn {
    font-size: 1.4rem;
    padding: 12px 24px;
    background-color: #8e44ad;
    border: none;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: block;
    width: fit-content;
    margin: 0 auto;
  }
  
  
  .promo-btn:hover {
    background-color: #732d91;
  }

  .zen-frame {
    position: relative;
    width: 250px;
    height: 250px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(142, 68, 173, 0.3);
  }
  
  .zen-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
  }
  
  .mandala-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 270px;
    height: 270px;
    border-radius: 50%;
    border: 2px dashed rgba(142, 68, 173, 0.3);
    animation: zenPulse 8s infinite ease-in-out;
    z-index: 0;
  }
  
  @keyframes zenPulse {
    0%   { transform: scale(1); opacity: 0.6; }
    50%  { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.6; }
  }
  

  .hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  background: linear-gradient(120deg, #fffdfa 70%, #e6cfff 100%);
  padding: 50px 0 30px 0;
  border-radius: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.hero-content {
  max-width: 600px;
  text-align: left;
}
.hero-section h1 {
  font-size: 2.7rem;
  margin-bottom: 15px;
  color: #8e44ad;
  font-family: 'Dancing Script', cursive;
}
.hero-section p {
  font-size: 1.4rem;
  line-height: 2;
  color: #444;
}
.hero-photo {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 32px rgba(142,68,173,0.11);
  border: 7px solid #fff;
}

.gift-card-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 60px 40px;
  margin: 40px 0;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 245, 248, 0.85), rgba(255, 255, 255, 0.95));
  box-shadow: 0 20px 45px rgba(142, 68, 173, 0.12);
  flex-wrap: wrap;
  overflow: hidden;
}

.gift-card-section::before,
.gift-card-section::after {
  content: "";
  position: absolute;
  inset: -80%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.6) 1.2px, transparent 0);
  background-size: 18px 18px;
  animation: gift-card-snowfall 18s linear infinite;
  opacity: 0.55;
  pointer-events: none;
}

.gift-card-section::after {
  inset: -60%;
  background-size: 22px 22px;
  animation-duration: 28s;
  animation-direction: reverse;
  opacity: 0.35;
}

.gift-card-media {
  position: relative;
  z-index: 1;
  flex: 1 1 320px;
  max-width: 420px;
}

.gift-card-media img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.12);
  border: 6px solid rgba(255, 255, 255, 0.9);
}

.gift-card-content {
  position: relative;
  z-index: 1;
  flex: 1 1 380px;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #503a4f;
}

.gift-card-intro {
  font-size: 1.5rem;
  font-weight: 700;
  color: #8e44ad;
}

.gift-card-content ul {
  padding-left: 1.2rem;
  margin: 0;
  list-style: disc;
}

.gift-card-content li {
  margin-bottom: 8px;
}

.gift-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 28px;
  border-radius: 999px;
  background: linear-gradient(120deg, #8e44ad, #c07bd4);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 12px 25px rgba(142, 68, 173, 0.25);
}

.gift-card-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(142, 68, 173, 0.35);
}

@keyframes gift-card-snowfall {
  from {
    transform: translateY(-10%);
  }
  to {
    transform: translateY(20%);
  }
}
.newsletter-guide {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.newsletter-guide .newsletter {
  flex: 1 1 540px;
  max-width: 580px;
  width: 100%;
}

.newsletter-guide .guide-offer {
  flex: 0 0 320px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.newsletter-guide .guide-thumbnail {
  width: 100%;
  max-width: 240px;
  height: auto;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
   .gift-card-section {
    padding: 40px 24px;
    gap: 24px;
  }

  .gift-card-media,
  .gift-card-content {
    max-width: 100%;
  }

  .gift-card-intro {
    font-size: 1.3rem;
  }
  .newsletter-guide {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .newsletter-guide .newsletter,
  .newsletter-guide .guide-offer {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .newsletter-guide .guide-offer {
    align-items: center;
    text-align: center;
  }

  .newsletter-guide .guide-thumbnail {
    margin: 0 auto 16px;
  }
}


/* Carousel */
.carousel-affiches {
  text-align: center;
  margin: 40px 0 20px 0;
}
.carousel-affiches h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 24px;
  color: #6a1b9a;
  letter-spacing: 1px;
}
.custom-carousel {
  display: flex;
  overflow-x: auto;
  gap: 22px;
  padding: 15px 0;
  scroll-snap-type: x mandatory;
  justify-content: center;
}
.carousel-item {
  scroll-snap-align: center;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  padding: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  position: relative;
}
.carousel-item:hover {
  transform: scale(1.06) translateY(-5px);
  box-shadow: 0 16px 32px rgba(142,68,173,0.12);
}
.carousel-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
  margin-bottom: 10px;
}
.carousel-caption h3 {
  font-size: 1.3rem;
  color: #8e44ad;
  margin-bottom: 5px;
}
.carousel-caption p {
  color: #555;
  font-size: 1.07rem;
}

/* Modal */
.carousel-modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.84);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.carousel-modal-content {
  margin: 60px auto 20px auto;
  display: block;
  max-width: 94vw;
  max-height: 70vh;
  border-radius: 20px;
  box-shadow: 0 10px 32px rgba(142,68,173,0.17);
  animation: zoomIn 0.25s;
}
@keyframes zoomIn {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}
.carousel-close {
  color: #fff;
  position: absolute;
  top: 20px;
  right: 42px;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.carousel-close:hover {
  color: #ff9800;
}
.carousel-modal-caption {
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .hero-section { flex-direction: column; gap: 20px; padding: 30px 0 15px 0;}
  .hero-content { text-align: center;}
  .hero-photo { width: 150px; height: 150px;}
  .carousel-item { min-width: 120px; max-width: 170px;}
  .carousel-thumb { height: 100px;}
  .carousel-modal-content { max-width: 99vw; max-height: 45vh;}
}

  