/* 色変数の定義 */
:root {
    --primary-color: #ffffff;
    --accent-color: #ffffff;
    --text-color: #f1f1f1;
    --bg-color: #121212;
    --card-bg: #1e1e1e;
    --card-bg-light: #2d2d2d;
    --border-color: #333;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    --transition-speed: 0.3s;
}

.light-mode {
    --primary-color: #333333;
    --accent-color: #333333;
    --text-color: #333;
    --bg-color: #f8f8f8;
    --card-bg: #ffffff;
    --card-bg-light: #f5f5f5;
    --border-color: #ddd;
    --card-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 基本スタイル */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Aozora Mincho', 'あおぞら明朝', serif;
}

@font-face {
    font-family: 'Aozora Mincho';
    src: url('https://cdn.jsdelivr.net/npm/aozora-mincho@1.0.0/font/aozoramincho.woff2') format('woff2'),
         url('https://cdn.jsdelivr.net/npm/aozora-mincho@1.0.0/font/aozoramincho.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    transition: background-color var(--transition-speed), color var(--transition-speed);
}

/* ダークモードトグル */
.theme-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background-color: var(--card-bg);
    color: var(--text-color);
    border: none;
    border-radius: 50px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.toggle-text {
    margin-right: 8px;
    font-weight: bold;
    font-size: 0.85rem;
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    fill: #FFD700;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.7));
}

.light-mode .theme-toggle svg {
    fill: #FFA500;
}

/* セクション共通スタイル */
section {
    width: 100%;
    padding: 60px 20px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* アニメーション */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* 第1セクション - メインビジュアル */
.section-main {
    background-color: transparent;
    padding: 0;
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.section-main::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('../images/main-bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0; /* z-indexを0にして背後に */
}
.main-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px; /* ロゴと開店情報の間隔 */
    padding: 20px;
    max-width: 800px;
    width: 100%;
}

.logo-overlay {
    text-align: center;
    color: #fff;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
    animation: fadeIn 1s ease-out;
}

.open-info {
    text-align: center;
    background-color: #ffffff; /* 白色に固定 */
    color: #333333; /* テキストを暗い色に固定 */
    padding: 30px;
    width: 100%;
    max-width: 600px;
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeIn 1.2s ease-out 0.3s backwards;
    position: relative;
    z-index: 5;
}

/* オープン情報内のすべてのテキスト要素の色を明示的に設定 */
.open-info h3,
.open-info .open-announcement,
.open-info p {
    color: #333333 !important; /* 重要度を上げて他のスタイルを上書き */
}

.open-info .access-info {
    font-size: 1.2rem;
    background-color: #eeeeee; /* 薄いグレーに変更 */
    color: #333333; /* テキストを暗い色に固定 */
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    margin-top: 15px;
    letter-spacing: 1px;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* 第2セクション - 特徴紹介 */
.section-features {
    background-color: var(--card-bg-light);
    color: var(--text-color);
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.section-features::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/feature-ramen.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
    z-index: 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    z-index: 1;
    color: var(--primary-color);
    font-weight: 700;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.feature-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 400;
}

.feature-image {
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transform: perspective(1000px) rotateX(5deg);
    transition: transform 0.5s ease;
}

.feature-image:hover {
    transform: perspective(1000px) rotateX(0);
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.feature-image:hover img {
    transform: scale(1.05);
}

/* 特製メニューセクション */
.special-menu-section {
    background-color: var(--bg-color);
    padding: 100px 20px;
}

.special-menu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.special-menu-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.special-menu-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.special-menu-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.menu-item {
    background-color: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.menu-item:hover {
    transform: translateY(-10px);
}

.menu-item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    background-color: var(--card-bg);
}

.menu-item-info {
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.menu-item-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-item-description {
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.menu-item-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: auto;
}

/* メニュー一覧セクション */
.menu-list-section {
    background-color: var(--bg-color);
    padding: 100px 20px;
    text-align: center;
}

.menu-list-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.menu-list-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.menu-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 20px;
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.menu-intro h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.menu-category {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease;
}

.menu-category:hover {
    transform: translateY(-5px);
}

.menu-category-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.menu-category-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.menu-table {
    overflow-x: auto;
}

.menu-table table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.menu-table th,
.menu-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
}

.menu-table th {
    color: var(--primary-color);
    font-weight: bold;
}

.menu-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.menu-note {
    margin-top: 15px;
    font-style: italic;
    text-align: right;
    color: var(--primary-color);
}

/* メニュー一覧のモバイル対応 */
@media (max-width: 768px) {
    .menu-category {
        padding: 20px 15px;
    }
    
    .menu-table th,
    .menu-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .menu-category-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .menu-list-title {
        font-size: 2rem;
    }
    
    .menu-intro h3 {
        font-size: 1.5rem;
    }
    
    .menu-category-title {
        font-size: 1.3rem;
    }
    
    .menu-table th,
    .menu-table td {
        padding: 8px 5px;
        font-size: 0.85rem;
    }
}

/* ギャラリーセクション */
.gallery-section {
    background-color: var(--card-bg-light);
    padding: 100px 20px;
    text-align: center;
}

.gallery-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.gallery-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1 / 1;
    box-shadow: var(--card-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* 第3セクション - 情報エリア */
.section-info {
    background-color: var(--bg-color);
    padding: 100px 20px;
}

.section-info .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    min-width: 300px;
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    padding: 40px 30px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: var(--primary-color);
}

.info-box h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

.info-box p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.map-container {
    width: 100%;
    height: auto;
    margin-top: 50px;
    grid-column: 1 / -1;
}

.map-container h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
}

.map-container h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

/* フッター */
footer {
    background-color: var(--card-bg-light);
    color: var(--text-color);
    padding: 80px 20px 40px;
    text-align: center;
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.footer-info {
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.footer-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.footer-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding: 5px 10px;
}

.footer-menu a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-menu a:hover::after {
    width: 100%;
}

.copyright {
    margin-top: 60px;
    font-size: 1rem;
    opacity: 0.7;
}

/* スクロールアニメーション */
.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.2rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

.scroll-down svg {
    width: 30px;
    height: 30px;
    fill: #fff;
    margin-top: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .logo-overlay h1 {
        font-size: 2.8rem;
    }
    
    .feature-content h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .section-main {
        height: auto;
        min-height: 100vh;
    }
    
    .logo-overlay {
        padding: 30px;
    }
    
    .logo-overlay h1 {
        font-size: 2.2rem;
    }
    
    .logo-overlay h2 {
        font-size: 1.1rem;
    }
    
    .open-info h3 {
        font-size: 1.6rem;
    }
    
    .open-info .open-announcement {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-content h3 {
        font-size: 1.4rem;
    }
    
    .section-features,
    .section-info,
    .gallery-section,
    .special-menu-section {
        padding: 60px 20px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .logo-overlay h1 {
        font-size: 1.8rem;
    }
    
    .open-info .access-info {
        font-size: 1rem;
    }
    
    .theme-toggle {
        width: 40px;
        height: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* ------ 第2セクションのカードデザイン追加 ------ */

.feature-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: var(--card-bg);
    box-shadow: var(--card-shadow);
    padding: 20px;
    border-radius: 16px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.feature-card p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ------ 拡大した営業時間カードのためのCSS ------ */

.wide-info-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 40px;
}

.additional-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.additional-info p {
    display: flex;
    align-items: baseline;
    margin-bottom: 15px;
}

.additional-info strong {
    min-width: 80px;
    color: var(--primary-color);
}

/* ------ お問い合わせリンクのスタイル ------ */

.contact-link {
    color: #4a86e8;
    text-decoration: none;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #5a96f8;
}

/* ------ コンタクトフォーム ------ */
.contact-form-container {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: var(--card-bg);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.contact-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
}

.contact-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-description {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 5px;
}

.form-group.full-width {
    grid-column: span 2;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--primary-color);
}

.required {
    color: #e74c3c;
    margin-left: 3px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.submit-btn {
    background: linear-gradient(to right, var(--primary-color), var(--primary-color));
    color: var(--bg-color);
    border: none;
    padding: 14px 30px;
    font-size: 1.1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 20px auto 0;
    min-width: 200px;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.form-result {
    grid-column: span 2;
    margin-top: 20px;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    display: none;
}

.form-result.success {
    background-color: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    display: block;
}

.form-result.error {
    background-color: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    display: block;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
}

/* ------ 上に戻るボタン ------ */
.back-to-top {
    position: fixed;
    bottom: 80px;
    left: 20px; /* 右から左に変更 */
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--bg-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ------ モバイル用グローバルメニュー ------ */
.mobile-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.mobile-menu-container {
    display: flex;
    justify-content: space-around;
    padding: 12px 0;
}

.mobile-menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.8rem;
    padding: 5px;
}

.mobile-menu-item svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    margin-bottom: 5px;
}

.mobile-menu-item:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .mobile-menu {
        display: block;
    }
    
    .footer-menu {
        display: none;
    }
    
    footer {
        padding-bottom: 80px;
    }
}