/********** Template CSS **********/
:root {
  --primary: #d4af37;
  --secondary: #777777;
  --light: #f8f8f8;
  --dark: #252525;
  --dark-1: #252525;
  --golden: #d4af37;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  color: #252525;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Donate ***/
.donate {
  background: rgba(0, 29, 35, 0.8);
}
/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #ffffff;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

/*** Navbar ***/
.navbar .dropdown-toggle::after {
  border: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  vertical-align: middle;
  margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
  margin-right: 30px;
  padding: 20px 0;
  color: #ffffff;
  font-weight: 500;
  outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
  color: var(--golden);
}

.navbar.sticky-top {
  top: -100px;
  transition: 0.5s;
}

@media (max-width: 991.98px) {
  #logo {
    /* Modifié la taille du logo */
    width: 50px;
  }
  .navbar .navbar-nav .nav-link {
    margin-right: 0;
    padding: 8px 0;
  }

  .navbar .navbar-nav {
    margin-top: 8px;
    border-top: 1px solid rgba(256, 256, 256, 0.1);
  }
  .brand_test {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .table tbody {
    font-size: 14px;
  }
  #coordonnees tr {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: block;
    visibility: hidden;
    top: 100%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
    transition: 0.5s;
    opacity: 0;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: 0.5s;
    opacity: 1;
  }
}

/*** Header ***/
#logo {
  width: 180px;
  height: 130px;
}
#logo img {
  /*width: 100%;*/
  height: 100%;
  object-fit: fill;
}
#header-carousel .carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
  width: 10%;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

@media (max-width: 768px) {
  #header-carousel .carousel-item {
    position: relative;
    min-height: 200px;
  }

  #header-carousel .carousel-item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

#header-carousel .carousel-indicators [data-bs-target] {
  width: 60px;
  height: 60px;
  text-indent: 0;
  margin-bottom: 15px;
  border: 2px solid #ffffff;
  border-radius: 60px;
  overflow: hidden;
}

#header-carousel .carousel-indicators [data-bs-target] img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../assets/images/carousel-0.jpg) center center no-repeat;
  background-size: cover;
}
.page-header2 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../assets/images/carousel-2.jpg) center center no-repeat;
  background-size: cover;
}
.page-header3 {
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../assets/images/carousel-3.jpg) center center no-repeat;
  background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--secondary);
}

.page-header .breadcrumb-item + .breadcrumb-item::before,
.page-header2 .breadcrumb-item + .breadcrumb-item::before,
.page-header3 .breadcrumb-item + .breadcrumb-item::before {
  color: var(--light);
}

/*** Section Title ***/
.section-title {
  position: relative;
  display: inline-block;
  text-transform: uppercase;
}

.section-title::before {
  position: absolute;
  content: "";
  width: calc(100% + 80px);
  height: 2px;
  top: 4px;
  left: -40px;
  background: var(--golden);
  z-index: -1;
}

.section-title::after {
  position: absolute;
  content: "";
  width: calc(100% + 120px);
  height: 2px;
  bottom: 4px;
  left: -60px;
  background: var(--golden);
  z-index: -1;
}

.section-title.text-start::before {
  width: calc(100% + 40px);
  left: 0;
}

.section-title.text-start::after {
  width: calc(100% + 60px);
  left: 0;
}

/*** Img Border ***/
.img-border {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.img-border::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 3rem;
  bottom: 3rem;
  border: 5px solid var(--golden);
  border-radius: 6px;
}

.img-border img {
  position: absolute;
  top: 3rem;
  left: 3rem;
  width: calc(100% - 3rem);
  height: calc(100% - 3rem);
  object-fit: cover;
  border-radius: 6px;
}

/*** Facts ***/
.fact-item {
  transition: 0.5s;
}

.fact-item:hover {
  margin-top: -10px;
  background: #ffffff !important;
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

/*** Service ***/
.service-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
  border: 1px solid transparent;
  transition: 0.5s;
}

.service-item:hover {
  margin-top: -10px;
  box-shadow: none;
  border: 1px solid #dee2e6;
}

/*** Feature ***/
.progress {
  height: 5px;
}

.progress .progress-bar {
  width: 0px;
  transition: 3s;
}

/*** Project ***/
.project-item a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
  opacity: 0;
  transition: 0.5s;
}

.project-item:hover a {
  opacity: 1;
}

.project-carousel .owl-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.project-carousel .owl-dot {
  width: 35px;
  height: 35px;
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee2e6;
  border-radius: 35px;
  transition: 0.5s;
}

.project-carousel .owl-dot:hover,
.project-carousel .owl-dot.active {
  color: #ffffff;
  border-color: var(--golden);
  background: var(--golden);
}

/*** Team ***/
.team-item {
  box-shadow: 0 0 45px rgba(0, 0, 0, 0.07);
}

.team-item .team-text {
  position: relative;
  height: 75px;
  overflow: hidden;
}

.team-item .team-title {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-item:hover .team-title {
  top: -75px;
}

.team-item .team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 75px;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: 0.5s;
}

.team-item .team-social .btn {
  margin: 0 3px;
}

.team-item:hover .team-social {
  top: 0;
}

/*** Visiting hours ***/
.visiting-hours {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url(https://images.unsplash.com/photo-1528698827591-e19ccd7bc23d?w=1920&h=1080&fit=crop)
  background-size: cover;
}

.visiting-hours .list-group-item {
  display: flex;
  justify-content: space-between;
  color: var(--light);
  background: rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
}

.visiting-hours .table {
  color: var(--light);
  background: rgba(0, 0, 0, 0.15);
}

.visiting-hours .table td {
  padding: 0.5rem 1rem;
  border-color: rgba(255, 255, 255, 0.15);
}

.visiting-hours .table tr:last-child td {
  border: none;
}

/*** Testimonial ***/

.testimonial-carousel .owl-item .testimonial-item img {
  width: 60px;
  height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: var(--golden) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
  color: #ffffff !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dee2e6;
  border-radius: 50px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #ffffff;
  border-color: var(--golden);
  background: var(--golden);
}

/*** Footer ***/
.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: var(--secondary);
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--secondary);
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  color: var(--golden);
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright a:hover {
  color: var(--golden);
}

/* NOUVEAU STYLE COULEUR */
.text-golden {
  color: #d4af37;
}
.btn-primary {
  color: #000;
  background-color: #d4af37;
  border-color: #d4af37;
}
.btn-primary:hover {
  color: #000;
  background-color: #ddbc50;
  border-color: #e9ca64;
}


/* ================================================================
   PRODUCT CARDS - DESIGN UNIFORMISÉ
   ================================================================ */

.product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
    border-color: rgba(212, 175, 55, 0.25);
}

/* --- Image --- */
.product-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background: #f8f6f0;
}

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* --- Badge marque --- */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #d4af37, #c9a030);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.30);
}

/* --- Informations --- */
.product-info {
    padding: 16px 18px 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #ffffff;
}

.product-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: #d4af37;
}

.product-category {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* --- Pied de carte : Contactez-nous --- */
.product-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f0ede8;
    text-align: center;
}

.product-contact {
    font-size: 13px;
    font-weight: 600;
    color: #25d366;
    background: rgba(37, 211, 102, 0.08);
    padding: 6px 16px;
    border-radius: 50px;
    display: inline-block;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.product-card:hover .product-contact {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.30);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .product-info {
        padding: 12px 14px 10px;
    }
    .product-title {
        font-size: 13px;
    }
    .product-contact {
        font-size: 12px;
        padding: 4px 12px;
    }
    .product-badge {
        font-size: 10px;
        padding: 3px 10px;
        top: 8px;
        right: 8px;
    }
}

@media (max-width: 576px) {
    .product-card {
        border-radius: 12px;
    }
    .product-info {
        padding: 10px 12px 10px;
    }
    .product-title {
        font-size: 12px;
    }
    .product-contact {
        font-size: 11px;
        padding: 4px 10px;
    }
}

/* ================================================================
   STYLES POUR L'EXPOSITION
   ================================================================ */

/* Badge produit */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #d4af37, #c9a030);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.30);
    z-index: 2;
}

/* Style pour les cartes d'exposition (comme l'exemple) */
.team-item.news-box {
    background: #ffffff;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin: 8px;
}

.team-item.news-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.10);
    border-color: rgba(212, 175, 55, 0.25);
}

.team-item.news-box .service-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
}

.team-item.news-box h5 {
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
    font-size: 16px;
}

.team-item.news-box .text-muted {
    font-size: 13px;
    color: #999;
}

.team-item.news-box .text-golden {
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
}

.team-item.news-box .badge {
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    background: #25d366;
    transition: all 0.3s ease;
}

.team-item.news-box .badge:hover {
    background: #1da851;
    transform: scale(1.05);
}

.team-item.news-box .badge i {
    margin-right: 6px;
}

/* Ajustement Owl Carousel */
.owl-carousel .team-item.news-box {
    margin: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .team-item.news-box .service-item img {
        height: 200px;
    }
    .team-item.news-box h5 {
        font-size: 14px;
    }
    .team-item.news-box .text-golden {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .team-item.news-box .service-item img {
        height: 180px;
    }
    .team-item.news-box {
        padding: 8px;
    }
    .team-item.news-box h5 {
        font-size: 13px;
    }
    .team-item.news-box .badge {
        font-size: 11px;
        padding: 4px 12px;
    }
}
/* ================================================================
   CAROUSEL PRINCIPAL - IMAGES GRAND FORMAT
   ================================================================ */

#header-carousel .carousel-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}

#header-carousel .carousel-indicators button {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid transparent;
    opacity: 0.6;
    transition: all 0.4s ease;
    margin: 0 6px;
    padding: 0;
}

#header-carousel .carousel-indicators button.active {
    opacity: 1;
    border-color: #d4af37;
    transform: scale(1.05);
}

#header-carousel .carousel-indicators button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#header-carousel .carousel-caption {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 20px;
    padding: 20px 40px;
    bottom: 80px;
    backdrop-filter: blur(4px);
    max-width: 80%;
    margin: 0 auto;
    left: 10%;
    right: 10%;
}

#header-carousel .carousel-caption h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    color: #ffffff !important;
}

/* Flèches de navigation */
#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
}

#header-carousel:hover .carousel-control-prev,
#header-carousel:hover .carousel-control-next {
    opacity: 1;
}

#header-carousel .carousel-control-prev {
    left: 30px;
}

#header-carousel .carousel-control-next {
    right: 30px;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 30px;
    height: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    #header-carousel .carousel-item img {
        height: 450px;
    }
    #header-carousel .carousel-caption h1 {
        font-size: 2.5rem;
    }
    #header-carousel .carousel-indicators button {
        width: 60px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    #header-carousel .carousel-item img {
        height: 350px;
    }
    #header-carousel .carousel-caption {
        padding: 15px 20px;
        bottom: 50px;
    }
    #header-carousel .carousel-caption h1 {
        font-size: 1.8rem;
    }
    #header-carousel .carousel-indicators button {
        width: 45px;
        height: 35px;
    }
    #header-carousel .carousel-indicators {
        bottom: 10px;
    }
}

@media (max-width: 576px) {
    #header-carousel .carousel-item img {
        height: 280px;
    }
    #header-carousel .carousel-caption h1 {
        font-size: 1.3rem;
    }
    #header-carousel .carousel-indicators button {
        width: 35px;
        height: 28px;
        margin: 0 3px;
    }
    #header-carousel .carousel-control-prev,
    #header-carousel .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    #header-carousel .carousel-control-prev {
        left: 10px;
    }
    #header-carousel .carousel-control-next {
        right: 10px;
    }
}

/* ================================================================
   CAROUSEL PRINCIPAL - HEADER (VERSION FINALE CORRIGÉE)
   ================================================================ */

/* Conteneur du carousel */
#header-carousel {
    position: relative;
    overflow: hidden;
}

/* Images du carousel - Ajustement */
#header-carousel .carousel-inner .carousel-item img {
    width: 100%;
    height: 550px;
    object-fit: contain;  /* Changé de cover à contain pour voir toute l'image */
    object-position: center;
    background: #1a1a2e;  /* Fond sombre pour les espaces vides */
}

/* OU ALTERNATIVE : Garder cover mais ajuster la hauteur */
#header-carousel .carousel-inner .carousel-item img {
    width: 100%;
    height: 450px;  /* Hauteur réduite */
    object-fit: cover;
    object-position: center 30%;  /* Décale le centre vers le haut pour mieux cadrer */
}

/* Légendes */
#header-carousel .carousel-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.45);
    border-radius: 16px;
    padding: 25px 50px;
    max-width: 80%;
    text-align: center;
    backdrop-filter: blur(4px);
    z-index: 10;
}

#header-carousel .carousel-caption h1 {
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
    color: #ffffff !important;
    margin: 0;
    line-height: 1.2;
}

/* Indicateurs miniatures */
#header-carousel .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 15;
    margin: 0;
}

#header-carousel .carousel-indicators button {
    width: 70px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.4);
    opacity: 0.5;
    transition: all 0.4s ease;
    padding: 0;
    margin: 0;
    background: transparent;
    cursor: pointer;
}

#header-carousel .carousel-indicators button.active {
    opacity: 1;
    border-color: #d4af37;
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

#header-carousel .carousel-indicators button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Flèches de navigation */
#header-carousel .carousel-control-prev,
#header-carousel .carousel-control-next {
    width: 48px;
    height: 48px;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 10;
}

#header-carousel:hover .carousel-control-prev,
#header-carousel:hover .carousel-control-next {
    opacity: 1;
}

#header-carousel .carousel-control-prev {
    left: 20px;
}

#header-carousel .carousel-control-next {
    right: 20px;
}

#header-carousel .carousel-control-prev-icon,
#header-carousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
}

/* ================================================================
   RESPONSIVE CAROUSEL PRINCIPAL
   ================================================================ */

@media (max-width: 992px) {
    #header-carousel .carousel-inner .carousel-item img {
        height: 400px;
    }
    #header-carousel .carousel-caption h1 {
        font-size: 2.2rem;
    }
    #header-carousel .carousel-indicators button {
        width: 55px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    #header-carousel .carousel-inner .carousel-item img {
        height: 320px;
    }
    #header-carousel .carousel-caption {
        padding: 15px 25px;
        max-width: 90%;
    }
    #header-carousel .carousel-caption h1 {
        font-size: 1.6rem;
    }
    #header-carousel .carousel-indicators button {
        width: 45px;
        height: 32px;
    }
    #header-carousel .carousel-indicators {
        gap: 6px;
        bottom: 12px;
    }
    #header-carousel .carousel-control-prev,
    #header-carousel .carousel-control-next {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 576px) {
    #header-carousel .carousel-inner .carousel-item img {
        height: 250px;
    }
    #header-carousel .carousel-caption {
        padding: 10px 15px;
    }
    #header-carousel .carousel-caption h1 {
        font-size: 1.2rem;
    }
    #header-carousel .carousel-indicators button {
        width: 35px;
        height: 28px;
        border-width: 2px;
    }
    #header-carousel .carousel-indicators {
        gap: 4px;
        bottom: 8px;
    }
    #header-carousel .carousel-control-prev,
    #header-carousel .carousel-control-next {
        width: 30px;
        height: 30px;
    }
    #header-carousel .carousel-control-prev {
        left: 5px;
    }
    #header-carousel .carousel-control-next {
        right: 5px;
    }
}