:root {
    --primary-color: #E9D6AA;
    --secondary-color: #C1AD97;
    --primary-color-hover: #B4997E;
    --primary-font-family: 'Katana', cursive;
    --name-font-family: "Kapakana", cursive;
    --hebrew-general: "NotoSerifHebrew";
}

/* ─────────────────────────────
 * 🔤 FONTS
 *───────────────────────────── */
@font-face {
    font-family: 'Katana';
    src: url('../fonts/KATANA.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'Katana', cursive;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ────────────────────────────
 * ✨ ANIMATIONS
 *──────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ────────────────────────────
 * 🔝 BOUTON REMONTER EN HAUT
 *──────────────────────────── */
#scrollToTop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9990;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease;
}

#scrollToTop:hover {
    background-color: var(--primary-color-hover);
}