@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&display=swap');

body {
    font-family: 'Noto Sans TC', sans-serif;
}

/* Custom Gold Color for Accents matching the theme */
.text-gold-600 {
    color: #d4af37;
}
.bg-gold-600 {
    background-color: #d4af37;
}
.hover\:bg-gold-700:hover {
    background-color: #b4941f;
}
.border-gold-600 {
    border-color: #d4af37;
}

/* Hero Section Gradient */
.hero-bg {
    background: linear-gradient(rgba(0, 60, 30, 0.8), rgba(0, 60, 30, 0.8)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: all 0.3s ease-in-out;
    max-height: 0;
    overflow: hidden;
}
#mobile-menu.open {
    max-height: 400px;
}
