@font-face {
    font-family: 'Candara';
    src: url('../fonts/Candara.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Candara-Bold';
    src: url('../fonts/Candara_Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
/* Hamburger → X animation */
#mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}
#mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
}
#mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

/* Smooth slide for mobile menu */
#mobile-menu {
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
}
#mobile-menu.show {
    max-height: 400px; /* adjust if menu gets taller */
    opacity: 1;
}