:root {
    --main-color: #f19b2a;
    --second-color: #;
    --font: Figtree;
}

*::selection {
    background-color: var(--main-color);
    color: #fff;
}

body {
    font-family: var(--font);
}

/* Global */
.btn {
    background-color: var(--main-color);
    transition: all 0.3s ease-in 0s;
}

/* Home */

/* Définir une hauteur minimale pour la section Hero afin d'intégrer l'image de fond */
.hero-section {
    /* Remplacer par l'URL de votre image de paysage */
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.504), rgba(0, 0, 0, 0.79)), url('../img/pic\ \(3\).jpg');
    background-size: cover;
    background-position: center bottom;
    min-height: 100vh;
    /* 85% de la hauteur de la vue */
    position: relative;
    z-index: 0;
    /* L'image semble très éclaircie, on peut utiliser un overlay si besoin */
    /* filter: brightness(1.1); */
}

/* Style pour les modules 3D */
.module-image {
    /* Placeholder pour l'image 3D des modules */
    background-image: url('../img/pic\ \(4\).jpg');
    /* Remplacer par l'URL de l'image des modules 3D */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* Styles personnalisés pour les tags et l'icône de cœur */
.heart-icon {
    /* Utilisation d'une icône SVG pour le cœur */
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    padding: 8px;
    cursor: pointer;
    line-height: 1;
}

.featured-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 0.75rem;
    /* text-xs */
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
}