/* ネオ中華居酒屋デザイン - 賑やか×女子ウケ */

/* Google Fonts読み込み */
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700;900&family=Mochiy+Pop+One&display=swap');

/* カラーパレット */
:root {
    --china-red: #E60012;
    --deep-red: #D32F2F;
    --gold: #FFD700;
    --gold-accent: #FFC107;
    --neon-pink: #FF1493;
    --coral-pink: #FF7F7F;
    --turquoise: #00CED1;
    --orange: #FF6B35;
    --cream: #FFF8DC;
    --light-pink: #FFF0F5;
    --white: #FFFFFF;
    --dark: #2d2d2d;
    --shadow-glow: 0 0 20px rgba(255, 215, 0, 0.6);
    --shadow-neon: 0 0 30px rgba(255, 20, 147, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Zen Maru Gothic', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background: var(--cream);
    overflow-x: hidden;
    position: relative;
}

/* 背景装飾 - 中華模様 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 50px, rgba(230, 0, 18, 0.02) 50px, rgba(230, 0, 18, 0.02) 100px),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23FFD700" opacity="0.3"/></svg>');
    background-size: 100px 100px, 30px 30px;
    opacity: 0.4;
    z-index: -1;
    pointer-events: none;
}

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

/* ヘッダー - ネオンサイン風 */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--china-red) 0%, var(--deep-red) 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), inset 0 -2px 0 var(--gold);
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 20px;
    position: relative;
}

/* 提灯装飾 */
.nav::before,
.nav::after {
    content: '🏮';
    position: absolute;
    font-size: 2rem;
    animation: swing 3s ease-in-out infinite;
}

.nav::before {
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.nav::after {
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

@keyframes swing {
    0%, 100% { transform: translateY(-50%) rotate(-5deg); }
    50% { transform: translateY(-50%) rotate(5deg); }
}

.nav__brand {
    position: relative;
    z-index: 1;
}

.logo {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--white);
    text-shadow: 
        2px 2px 0 var(--gold),
        -1px -1px 0 var(--gold),
        0 0 15px rgba(255, 215, 0, 0.5);
    animation: subtleGlow 3s ease-in-out infinite alternate;
}

@keyframes subtleGlow {
    from { 
        text-shadow: 
            2px 2px 0 var(--gold),
            -1px -1px 0 var(--gold),
            0 0 15px rgba(255, 215, 0, 0.5);
    }
    to { 
        text-shadow: 
            2px 2px 0 var(--gold),
            -1px -1px 0 var(--gold),
            0 0 25px rgba(255, 215, 0, 0.7);
    }
}

.logo-sub {
    font-size: 0.9rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
}

.nav__link {
    text-decoration: none;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav__link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--gold);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
}

.nav__link:hover::before {
    width: 200%;
    height: 200%;
}

.nav__link:hover {
    color: var(--china-red);
    transform: scale(1.05);
}

.nav__phone {
    background: linear-gradient(135deg, var(--neon-pink), var(--coral-pink));
    border: 2px solid var(--white);
    box-shadow: 0 0 20px var(--neon-pink);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px var(--neon-pink); }
    50% { transform: scale(1.05); box-shadow: 0 0 30px var(--neon-pink); }
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--gold);
    border: none;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: var(--china-red);
    transition: all 0.3s ease;
}

/* ヒーローセクション - 賑やかな中華街 */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(230, 0, 18, 0.9) 0%, rgba(211, 47, 47, 0.85) 50%, rgba(255, 107, 53, 0.9) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><text x="20" y="50" font-size="40" fill="%23FFD700" opacity="0.2">祝</text><text x="120" y="150" font-size="40" fill="%23FFD700" opacity="0.2">福</text></svg>');
    background-size: cover, 150px 150px;
    color: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

/* キラキラエフェクト */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="%23FFD700"/><circle cx="90" cy="30" r="1.5" fill="%23FFFFFF"/><circle cx="50" cy="70" r="1" fill="%23FF1493"/><circle cx="30" cy="90" r="1.5" fill="%23FFD700"/><circle cx="70" cy="50" r="1" fill="%23FFFFFF"/></svg>');
    background-size: 100px 100px;
    animation: sparkle 3s linear infinite;
    pointer-events: none;
    opacity: 0.6;
}

@keyframes sparkle {
    from { background-position: 0 0; }
    to { background-position: 100px 100px; }
}

.hero__badge {
    display: inline-block;
    background: var(--gold);
    color: var(--china-red);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 900;
    font-family: 'Mochiy Pop One', sans-serif;
    margin-bottom: 1.5rem;
    transform: rotate(-3deg);
    box-shadow: 
        0 5px 15px rgba(0, 0, 0, 0.3),
        inset 0 -3px 0 rgba(0, 0, 0, 0.2);
    animation: bounce 2s ease-in-out infinite;
    border: 3px solid var(--white);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(-3deg) translateY(0); }
    40% { transform: rotate(-3deg) translateY(-15px); }
    60% { transform: rotate(-3deg) translateY(-7px); }
}

.hero__title {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 2rem;
    text-shadow: 
        3px 3px 0 var(--gold),
        -2px -2px 0 var(--deep-red),
        0 0 20px rgba(0, 0, 0, 0.5);
    transform: rotate(-2deg);
}

.highlight {
    color: var(--white);
    background: linear-gradient(135deg, var(--china-red), var(--deep-red));
    padding: 0 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(230, 0, 18, 0.5);
    display: inline-block;
    transform: rotate(1deg);
    border: 3px solid var(--gold);
}

.hero__description {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    background: rgba(0, 0, 0, 0.5);
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px dashed var(--gold);
    font-weight: 700;
}

.hero__actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn::before {
    content: '✨';
    position: absolute;
    left: -30px;
    font-size: 1.5rem;
    animation: slideIn 2s ease-in-out infinite;
}

@keyframes slideIn {
    0%, 100% { left: -30px; }
    50% { left: calc(100% + 10px); }
}

.btn-primary {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--coral-pink) 100%);
    color: var(--white);
    border: 4px solid var(--gold);
    box-shadow: 0 0 40px var(--neon-pink), 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 60px var(--neon-pink), 0 12px 30px rgba(0, 0, 0, 0.4);
}

.btn-secondary {
    background: var(--gold);
    color: var(--china-red);
    border: 4px solid var(--white);
}

.btn-secondary:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 0 40px var(--gold), 0 12px 30px rgba(0, 0, 0, 0.4);
}

/* 麻辣湯特集 - 最重要セクション */
.malatang-special {
    padding: 5rem 0;
    background: var(--light-pink);
    position: relative;
    overflow: hidden;
}

.malatang-special::before {
    content: '麻辣湯';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    font-weight: 900;
    color: rgba(230, 0, 18, 0.05);
    z-index: 0;
    font-family: 'Mochiy Pop One', sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.trending-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--neon-pink), var(--orange));
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 900;
    font-family: 'Mochiy Pop One', sans-serif;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    transform: rotate(-2deg);
    box-shadow: 
        0 0 30px var(--neon-pink),
        0 5px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--gold);
    animation: wiggle 3s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-2deg) scale(1); }
    25% { transform: rotate(2deg) scale(1.05); }
    75% { transform: rotate(-3deg) scale(1.05); }
}

.section-title {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--china-red);
    text-shadow: 
        3px 3px 0 var(--gold),
        -1px -1px 0 var(--white);
    transform: rotate(-1deg);
}

.section-subtitle {
    font-size: 1.3rem;
    color: var(--deep-red);
    font-weight: 700;
}

.malatang-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.malatang-content h3 {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--china-red);
    text-shadow: 2px 2px 0 var(--gold);
}

.malatang-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.9;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid var(--gold);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.process-steps {
    margin: 2rem 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px dashed var(--neon-pink);
    transform: rotate(-1deg);
    transition: all 0.3s ease;
}

.step:nth-child(even) {
    transform: rotate(1deg);
}

.step:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 0 30px var(--neon-pink);
}

.step-number {
    background: linear-gradient(135deg, var(--china-red), var(--deep-red));
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 2rem;
    font-family: 'Mochiy Pop One', sans-serif;
    flex-shrink: 0;
    border: 4px solid var(--gold);
    box-shadow: 0 0 20px var(--china-red);
}

.step-content h4 {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--china-red);
}

.price-info {
    background: linear-gradient(135deg, var(--gold), var(--gold-accent));
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 2rem;
    border: 4px solid var(--china-red);
    transform: rotate(1deg);
}

.price-info h4 {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 1.5rem;
    color: var(--china-red);
    margin-bottom: 1rem;
}

.price-info p {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.malatang-image {
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.image-placeholder {
    background: var(--white);
    border: 5px dashed var(--china-red);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    color: var(--china-red);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-placeholder::before {
    content: '✨';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.placeholder-content p:first-child {
    font-size: 6rem;
    margin-bottom: 1rem;
}

.placeholder-content p:last-child {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
}

/* メニューセクション - 短冊風 */
.menu-section {
    padding: 5rem 0;
    background: var(--cream);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 1rem 2rem;
    border: 3px solid var(--china-red);
    background: var(--white);
    color: var(--china-red);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 900;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, var(--china-red), var(--deep-red));
    color: var(--white);
    transform: translateY(-3px) rotate(-2deg);
    box-shadow: 0 8px 20px rgba(230, 0, 18, 0.4);
    border-color: var(--gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.menu-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 4px solid var(--gold);
    transform: rotate(-1deg);
}

.menu-card:nth-child(even) {
    transform: rotate(1deg);
}

.menu-card:hover {
    transform: translateY(-10px) rotate(0deg) scale(1.03);
    box-shadow: 0 15px 40px rgba(230, 0, 18, 0.3);
}

.menu-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--light-pink), var(--cream));
}

.menu-image .image-placeholder {
    height: 100%;
    border: none;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.menu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--neon-pink);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 900;
    font-family: 'Mochiy Pop One', sans-serif;
    box-shadow: 0 0 20px var(--neon-pink);
    border: 2px solid var(--white);
    animation: pulse 2s ease-in-out infinite;
}

.menu-info {
    padding: 1.5rem;
}

.menu-info h3 {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--china-red);
}

.menu-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: 900;
    font-family: 'Mochiy Pop One', sans-serif;
    color: var(--china-red);
    text-shadow: 1px 1px 0 var(--gold);
}

/* コースプランセクション */
.course-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--light-pink) 0%, var(--cream) 100%);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.course-card {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: relative;
    border: 4px solid var(--gold);
    transform: rotate(-1deg);
}

.course-card:hover {
    transform: translateY(-10px) rotate(0deg);
    box-shadow: 0 15px 40px rgba(230, 0, 18, 0.3);
}

.course-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: linear-gradient(135deg, var(--neon-pink), var(--coral-pink));
    color: var(--white);
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 900;
    font-family: 'Mochiy Pop One', sans-serif;
    border: 3px solid var(--white);
    box-shadow: 0 0 30px var(--neon-pink);
    font-size: 1rem;
}

.course-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px dashed var(--china-red);
}

.course-header h3 {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--china-red);
}

.course-price {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Mochiy Pop One', sans-serif;
    color: var(--china-red);
    text-shadow: 2px 2px 0 var(--gold);
}

.course-features {
    list-style: none;
    margin-bottom: 2rem;
}

.course-features li {
    padding: 1rem 0;
    border-bottom: 2px solid var(--light-pink);
    font-weight: 700;
    font-size: 1.05rem;
}

.course-features li:last-child {
    border-bottom: none;
}

/* 店舗情報セクション */
.info-section {
    padding: 5rem 0;
    background: var(--white);
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.store-details {
    background: var(--light-pink);
    padding: 2.5rem;
    border-radius: 20px;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.store-details h3 {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--china-red);
    text-shadow: 2px 2px 0 var(--gold);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border: 3px solid var(--gold);
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--china-red);
    font-weight: 900;
    font-size: 1.2rem;
}

.info-item p,
.info-item a {
    color: var(--dark);
    line-height: 1.7;
    font-weight: 500;
}

.info-item a {
    color: var(--china-red);
    text-decoration: none;
    font-weight: 900;
}

.map-container {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-placeholder {
    height: 100%;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--china-red);
    font-family: 'Mochiy Pop One', sans-serif;
}

.map-placeholder p:first-child {
    font-size: 6rem;
    margin-bottom: 1rem;
}

/* フッター */
.footer {
    background: linear-gradient(135deg, var(--china-red), var(--deep-red));
    color: var(--white);
    padding: 3rem 0 1.5rem;
    border-top: 5px solid var(--gold);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info h3 {
    font-family: 'Mochiy Pop One', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--gold);
    text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}

.footer-hours h4 {
    margin-bottom: 1rem;
    font-weight: 900;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px dashed var(--gold);
    color: rgba(255, 255, 255, 0.9);
}

/* 手書き風装飾 */
.handwriting-arrow {
    position: absolute;
    font-size: 3rem;
    animation: pointDown 2s ease-in-out infinite;
}

@keyframes pointDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(15px); }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .nav__list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--china-red);
        flex-direction: column;
        justify-content: center;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        transition: right 0.3s ease;
        border-left: 3px solid var(--gold);
    }
    
    .nav__list.active {
        right: 0;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .malatang-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
}
