@font-face {
    font-family: 'Fragment';
    src: url('/fonts/Fragment/WEB/PPFragment-GlareBlack.woff2') format('woff2'),
         url('/fonts/Fragment/WEB/PPFragment-GlareBlack.woff') format('woff');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #eac891;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

/* Style du header */
.header-container {
    height: 60px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 1rem;
    padding-right: 1.5rem;
}

.header-icon:hover {
    height: 40px;
    width: 40px;
}

@media (min-width: 768px) {
    .header-container {
        height: 100px;
        padding-right: 2.5rem;
    }

    .header-icon {
        height: 50px;
        width: 50px;
    }

    .header-icon:hover {
        height: 58px;
        width: 58px;
    }
}

/* Style du menu */
.menu-container {
    position: relative;
    width: 100%;
    margin: 0;
}

@media (max-width: 768px) {
    .menu-container {
        margin-top : 50px;
    }
}

.menu-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Style du numéro de téléphone */
@keyframes pulse {
    0%   { transform: translate3d(-50%, -50%, 0) scale(1); }
    50%  { transform: translate3d(-50%, -50%, 0) scale(1.05); }
    100% { transform: translate3d(-50%, -50%, 0) scale(1); }
}

.tel-number {
    position: absolute;
    top: 12.5%;
    left: 50%;
    font-size: clamp(1rem, 2.5vw, 3rem);
    color: #AE431E;
    text-decoration: none;
    animation: pulse 1.5s infinite ease-in-out;
    transform-origin: center;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    font-family: 'Fragment', sans-serif;
}


.tel-number:hover {
    animation: none;
    transform: translate3d(-50%, -50%, 0) scale(1.1);
}