@font-face {
    font-family: 'MyCustomFont';
    src: url('fonts/MyCustomFont.woff2') format('woff2'),
         url('fonts/MyCustomFont.woff') format('woff');
}
@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');


body {
    font-family: 'Poppins', sans-serif;
    background: url('/imgs/background/back.webp') no-repeat center center/cover;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
    background-color: #1a1a1a;
}


section#boutique-presentation {
    max-width: 1300px; 
    margin: 0 auto;
    text-align: center;
    padding: 40px 0px;
    background-color: rgba(26, 26, 26, 0.95);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    margin-top: 60px;
    border: 1.2px solid #444444;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

section#boutique-presentation h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.7);
    margin-bottom: 60px;
    margin-top: 10px;
    letter-spacing: 1px;
}

.boutique-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    user-select: none;
}

.boutique-button-container {
    display: block;
    text-decoration: none;
    width: 310px;
    background-color: #242424;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    color: inherit;
}

.boutique-button-container:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.boutique-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    border-radius: 10px;
    padding: 15px 20px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s;
}

/* .boutique-button:hover {
    background-color: #444444;
} */

.boutique-button i {
    margin-right: 15px;
    font-size: 1.7rem;
}

.boutique-button i.fa-crown {
    color: #ffc107;
}

.boutique-button i.fa-car {
    color: #28a745;
}

.boutique-button i.fa-shopping-cart {
    color: #007bff;
}

.boutique-button i.fa-user {
    color: #dc3545;
}

.boutique-button i.fa-headset {
    color: #17a2b8;
}

.boutique-button i.fa-heart {
    color: #ff2020;
}

.boutique-button i.fa-skull-crossbones {
    color: #9b59b6;
}

.boutique-button i.fa-home {
    color: #e67e22;
}

.boutique-button i.fa-comment-dots {
    color: #f39c12;
}

.button-description {
    margin-top: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #b3b3b3;
}

@media (max-width: 1024px) {
    .boutique-button-container {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .boutique-button-container {
        width: 90%;
    }
}