/* ベースフォント・カラー */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #1F2937;
}

/* ヒーローテキストの影 */
.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.6);
}

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

/* ボタンのアニメーション用 */
.nav-btn:active,
.nav-btn-highlight:active {
    transform: translateY(2px);
    box-shadow: none;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

#mobile-menu.open {
    max-height: 400px; /* Adjust based on content */
    opacity: 1;
}
