:root {
    --primary-color: #F39C12;
    /* Vibrant Orange */
    --secondary-color: #E74C3C;
    /* Energetic Red */
    --accent-color: #F1C40F;
    /* Bright Yellow */
    --dark-bg: #FFFFFF;
    /* Pure White Background */
    --light-bg: #FFF8E1;
    /* Very light yellow/cream for sections */
    --text-main: #2C3E50;
    /* Dark Blue-Grey for contrast */
    --text-light: #7F8C8D;
    --card-radius: 20px;
    --btn-radius: 50px;
    --shadow-soft: 0 10px 25px rgba(243, 156, 18, 0.15);
    --shadow-hover: 0 15px 35px rgba(243, 156, 18, 0.3);
}

body {
    font-family: 'Noto Sans TC', sans-serif;
    background-color: #FAFAFA;
    color: var(--text-main);
    overflow-x: hidden;
    font-weight: 500;
}

h1,
h2,
h3,
h4,
h5,
.section-title,
.dish-name,
.btn,
.navbar-brand {
    font-family: 'Noto Sans TC', sans-serif;
    /* Switch to Sans for modern look */
    font-weight: 700 !important;
}

.section-title {
    color: var(--text-main);
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    margin-bottom: 60px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100%;
    height: 8px;
    background: var(--accent-color);
    position: absolute;
    bottom: 5px;
    left: 0;
    z-index: -1;
    border-radius: 10px;
    opacity: 0.6;
}

/* Navbar - Energetic & Bright */
.navbar {
    padding: 15px 0;
    background: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-size: 2rem;
    color: var(--primary-color) !important;
    font-family: 'Zhi Mang Xing', cursive;
}

.nav-link {
    color: var(--text-main) !important;
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 10px;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: var(--primary-color);
    transition: 0.3s;
    margin: 0 auto;
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons - Pop & Bouncy */
.btn {
    border-radius: var(--btn-radius);
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-reserve,
.btn-luxury {
    background: var(--primary-color);
    color: white !important;
    border: none;
    padding: 12px 35px;
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy */
}

.btn-reserve:hover,
.btn-luxury:hover {
    transform: translateY(-3px) scale(1.05);
    background: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
    color: white !important;
}

/* Hero Section */
.hero-wrap {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    /* background: #000; Removed to fix video z-index issue */
    overflow: hidden;
    /* Ensure video doesn't overflow */
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 1;
    /* Video layer */
    transform: translate(-50%, -50%);
    opacity: 1;
    /* Full visibility */
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Ensure text is above video */
}

.hero-title {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 0 var(--primary-color);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    background: var(--accent-color);
    color: var(--text-main);
    padding: 5px 20px;
    display: inline-block;
    transform: rotate(-2deg);
    font-weight: 700;
    box-shadow: 5px 5px 0 white;
}

/* News Section - Cards */
#news-container .card {
    border: none;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: 0.3s;
}

#news-container .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

#news-container img,
#news-container video {
    border-radius: var(--card-radius);
}

/* Menu Cards - Rounded & Fun */
.dish-card,
.menu-card {
    background: white;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-soft);
    border: none;
    overflow: hidden;
    transition: 0.3s;
    height: 100%;
    position: relative;
    /* Fix for absolute positioning of badges */
}

.dish-card:hover,
.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.dish-img,
.card-img-top {
    height: 250px;
    object-fit: cover;
    border-bottom: 5px solid var(--accent-color);
}

.dish-info,
.card-body {
    padding: 25px;
    text-align: center;
    background: white;
}

.dish-name {
    font-size: 1.4rem;
    color: var(--text-main);
    margin-bottom: 10px;
}

.dish-price {
    color: var(--secondary-color);
    font-size: 1.5rem;
    font-weight: 900;
}

/* Badge Style */
.badge-rec {
    background: var(--secondary-color);
    color: white;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 5px 10px rgba(231, 76, 60, 0.3);
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

/* Footer - Clean */
footer {
    background: white;
    padding: 80px 0;
    border-top: 10px solid var(--accent-color);
    color: var(--text-main);
}

.footer-logo {
    color: var(--primary-color) !important;
    font-size: 2.5rem;
    font-family: 'Zhi Mang Xing', cursive;
}

.footer-phone {
    color: var(--text-main);
    font-weight: 900;
    font-size: 1.5rem;
    /* Decreased from 2rem */
}

.social-icon {
    color: var(--primary-color);
    font-size: 3rem;
    /* Increased from 2rem */
    margin: 0 15px;
    /* Increased margin for spacing */
    transition: 0.3s;
}

.social-icon:hover {
    color: var(--secondary-color);
    transform: scale(1.2);
}

/* Utility */
.text-gold {
    color: var(--primary-color) !important;
}

.bg-light-yellow {
    background-color: var(--light-bg);
}
