
/* police pour le logo */

/* .bg-success,
.btn-success {
    background-color: #524d16 !important;
    border-color: #524d16 !important;
} */

.logo-font {
    font-family: 'Lobster', cursive;
}

body, html {
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
    font-family: 'Poppins', sans-serif;
    
}

.hero-bg {
    background-image: url('../img/design/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

.hero-shop-img {
    max-width: 100%;
    max-height: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
}

/* Classes utilitaires pour les icônes */
.icon-size { 
    width: 80px; 
    height: 80px; 
}

/* Transitions pour les cartes */
.card {
    transition: transform 0.3s, box-shadow 0.3s;
}

.card img {
    transition: transform 0.3s;
    transform: scale(1);
    height: 300px;
}

/* .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
} */

.animated-underline {
    position: relative;
    display: inline-block;
}

.animated-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: white; /* Couleur de la bordure */
    transition: width 0.3s ease;
}

.animated-underline:hover::after {
    width: 100%;
}

.bd-links-link {
  padding: .1875rem .5rem;
  margin-top: .125rem;
  margin-left: 1.125rem;
  color: var(--bs-body-color);
  text-decoration: none;
}

.bd-links-link.active {
  font-weight: 600;
}

.bd-links-link:hover, 
.bd-links-link:focus, 
.bd-links-link.active {
  color: var(--bs-emphasis-color);
  background-color: #cfcfcf;
}
