:root {
    --main-color: #eaa213ff;
    --second-color: #d59414ff;
    --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;
}
.btn:hover {
    background-color: #000000;
}

/* 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, var(--main-color), rgba(0, 0, 0, 0.79));
    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); */
}

/* form header */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="date"]::before {
    content: attr(placeholder);
    color: #9ca3af;
    /* Couleur du placeholder */
}
input[type="date"]:focus::before,
input[type="date"]:valid::before {
    content: "";
}

/* 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;
}