/* 基本重置和全域樣式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #faf8f5;
}

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

/* 導航欄樣式 */
.navbar {
    background-color: #8B4513;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    color: #F5DEB3;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #F5DEB3;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover,
.nav-link.active {
    color: #FFD700;
    background-color: rgba(255, 215, 0, 0.1);
}

.menu-btn {
    background-color: #FFD700;
    color: #8B4513 !important;
    font-weight: 600;
}

.menu-btn:hover {
    background-color: #FFA500;
    color: #8B4513 !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #F5DEB3;
    margin: 3px 0;
    transition: 0.3s;
}

/* 首頁橫幅樣式 */
.hero {
    margin-top: 80px;
    padding: 4rem 0;
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
    display: flex;
    align-items: center;
    min-height: 70vh;
}

.hero-content {
    flex: 1;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-text {
    flex: 1;
}

.hero-title {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #A0522D;
    margin-bottom: 1.5rem;
}

.hero-slogan {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.slogan-text {
    font-size: 1.2rem;
    color: #8B4513;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-align: center;
}

.slogan-subtext {
    font-size: 1rem;
    color: #A0522D;
    margin-bottom: 0.8rem;
    text-align: center;
}

.slogan-highlight {
    font-size: 0.95rem;
    color: #CD853F;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.hero-cat-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.gjumi-sleeping-image {
    width: 280px;
    height: 280px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.gjumi-sleeping-image:hover {
    transform: scale(1.05) rotate(3deg);
}

.cta-button {
    display: inline-block;
    background-color: #8B4513;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.cta-button:hover {
    background-color: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* 關於我們區塊 */
.about {
    padding: 5rem 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.store-info {
    background-color: #F5DEB3;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.store-info h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.store-info p {
    margin-bottom: 0.5rem;
    color: #8B4513;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Gjumi區塊樣式 */
.gjumi-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #DEB887 0%, #F5DEB3 100%);
}

.gjumi-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}



.gjumi-text h2 {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1.5rem;
}

.gjumi-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #8B4513;
}

.gjumi-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature h4 {
    color: #8B4513;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.feature p {
    color: #A0522D;
    font-weight: 500;
    margin: 0;
}

/* 行動呼籲區塊 */
.cta-section {
    padding: 4rem 0;
    background-color: #8B4513;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-section .cta-button {
    background-color: #FFD700;
    color: #8B4513;
}

.cta-section .cta-button:hover {
    background-color: #FFA500;
}

/* 菜單頁面樣式 */
.menu-main {
    margin-top: 80px;
}

.menu-hero {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.menu-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.menu-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
}

.menu-content {
    padding: 4rem 0;
    background-color: white;
}

.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2.5rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.category-title .icon {
    font-size: 2rem;
}

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

.menu-item {
    background-color: #faf8f5;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.item-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 10px;
}

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

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

.item-header h3 {
    color: #8B4513;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.item-description {
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.item-prices {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.size-price {
    background-color: #DEB887;
    color: #8B4513;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    flex: 1;
    text-align: center;
}

.menu-note {
    background: linear-gradient(135deg, #F5DEB3 0%, #DEB887 100%);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    text-align: center;
}

.menu-note h3 {
    color: #8B4513;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.menu-note p {
    color: #8B4513;
    margin-bottom: 1rem;
}

.menu-note p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* 頁腳樣式 */
.footer {
    background-color: #8B4513;
    color: #F5DEB3;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #A0522D;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.8;
}

/* 響應式設計 */
@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #8B4513;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }

    .hero-content {
        gap: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-slogan {
        padding: 1rem;
        margin: 1rem 0;
    }

    .slogan-text {
        font-size: 1rem;
    }

    .slogan-subtext {
        font-size: 0.9rem;
    }

    .slogan-highlight {
        font-size: 0.85rem;
    }

    .hero-cat-gallery {
        flex-direction: column;
        gap: 1rem;
    }

    .gjumi-sleeping-image {
        width: 200px;
        height: 200px;
    }

    .about-content,
    .gjumi-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gjumi-features {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .item-prices {
        flex-direction: column;
        gap: 0.5rem;
    }

    .category-title {
        font-size: 2rem;
    }

    .menu-hero h1 {
        font-size: 2.2rem;
    }

    .menu-hero p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .about-text h2,
    .gjumi-text h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .menu-item {
        padding: 1.5rem;
    }
}



.gjumi-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

