/* === Reset & Base === */
body {
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans TC', sans-serif;
    background-color: #0D1E17;
}
.navbar .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0D1E17 !important;
}
.navbar-custom {
    background-color: #0D1E17 !important;
}
h1, h2, h3, h4, p {
    margin: 0;
    padding: 0;
}

/* === Slider === */
.main-slider {
    margin-top: 0;
    padding-top: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    z-index: 1;
}
    .slide.active {
        opacity: 1;
        z-index: 2;
    }

    .slide .overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.4);
    }

    .slide .content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        color: white;
        z-index: 3;
    }

    .slide .logo {
        font-size: 3rem;
        font-weight: bold;
        color: #f4a261;
        margin-bottom: 1rem;
    }

    .slide .slogan {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .slide .intro {
        font-size: 1rem;
        opacity: 0.9;
    }

.slider-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    padding: 0 1rem;
    z-index: 10;
    cursor: pointer;
}

/* === Menu Section === */
.menu-section {
    padding: 3rem 1rem;
    background-color: #f8f8f8;
}

    .menu-section .section-title {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 2rem;
    }

.menu-heading {
    font-size: 1.5rem;
    margin: 1.5rem 0 1rem;
    color: #8B4513;
    text-align: center;
}

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.menu-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    padding: 1rem 1.5rem;
    width: 200px;
    text-align: center;
    transition: transform 0.2s;
}

    .menu-card:hover {
        transform: scale(1.05);
    }

.menu-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #444;
    margin-bottom: 0.5rem;
}

.menu-price {
    font-size: 1.1rem;
    color: #E53935;
    font-weight: bold;
}

/* === Contact Section === */
.contact-section {
    background-color: #2b2b2b;
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin: 0;
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

    .contact-section .highlight {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        font-weight: bold;
    }

    .contact-section .phone {
        font-size: 2rem;
        font-weight: bold;
        color: #FF7043;
    }

/* === Responsive === */
@media (max-width: 768px) {
    .slide .logo {
        font-size: 1.8rem;
    }

    .menu-card {
        width: 90%;
    }
}

footer {
    margin-top: 0;
    padding-top: 0;
}
.footer-custom {
    background-color: #0D1E17 !important;
}
/* 全域清除底線與間距 */
body, main, section {
    margin: 0;
    padding: 0;
    border: none;
}

