:root {
            --primary-color: #8b0000;
            --secondary-color: #d4af37;
            --accent-color: #f5f5dc;
            --dark-color: #2c2c2c;
            --light-color: #f8f9fa;
        }
        body {
            font-family: "Noto Serif SC", "Microsoft YaHei", serif;
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1544025162-d76694265947?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 180px 0 120px;
            position: relative;
        }
        .section-title {
            position: relative;
            margin-bottom: 3rem;
            color: var(--primary-color);
            font-weight: 700;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background-color: var(--secondary-color);
        }
        .section-title.text-center:after {
            left: 50%;
            transform: translateX(-50%);
        }
        .nav-link {
            font-weight: 600;
            color: var(--dark-color) !important;
            transition: all 0.3s ease;
            position: relative;
            padding: 0.5rem 1rem !important;
        }
        .nav-link:hover, .nav-link.active {
            color: var(--primary-color) !important;
        }
        .nav-link:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 1rem;
            right: 1rem;
            height: 2px;
            background-color: var(--primary-color);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }
        .nav-link:hover:after, .nav-link.active:after {
            transform: scaleX(1);
        }
        .navbar-brand {
            font-weight: 800;
            color: var(--primary-color) !important;
            font-size: 1.8rem;
        }
        .card {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            overflow: hidden;
            border-radius: 10px;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        .card-img-top {
            height: 220px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .card:hover .card-img-top {
            transform: scale(1.05);
        }
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-primary:hover {
            background-color: #a00000;
            border-color: #a00000;
            transform: translateY(-2px);
        }
        .btn-outline-primary {
            color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 0.75rem 2rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        .btn-outline-primary:hover {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            transform: translateY(-2px);
        }
        .history-timeline {
            position: relative;
            padding-left: 30px;
        }
        .history-timeline:before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background-color: var(--secondary-color);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 2.5rem;
            padding-left: 30px;
        }
        .timeline-item:before {
            content: '';
            position: absolute;
            left: -38px;
            top: 5px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--secondary-color);
            border: 4px solid white;
            box-shadow: 0 0 0 3px var(--secondary-color);
        }
        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: rgba(139, 0, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--primary-color);
            font-size: 2rem;
        }
        .flink {
            display: inline-block;
            background-color: var(--light-color);
            color: var(--dark-color);
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            margin: 0.5rem;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
        }
        .flink:hover {
            background-color: var(--primary-color);
            color: white;
            transform: translateY(-3px);
            text-decoration: none;
        }
        footer {
            background-color: var(--dark-color);
            color: white;
        }
        .footer-link {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        .footer-link:hover {
            color: white;
            text-decoration: underline;
        }
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        .contact-icon {
            width: 40px;
            height: 40px;
            background-color: rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
            color: var(--secondary-color);
        }
        .menu-item-card {
            border-left: 4px solid var(--secondary-color);
        }
        .testimonial-card {
            border-top: 4px solid var(--primary-color);
        }
        .testimonial-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--secondary-color);
        }
        .bg-light-accent {
            background-color: var(--accent-color);
        }
        .hero-badge {
            display: inline-block;
            background-color: var(--secondary-color);
            color: var(--dark-color);
            padding: 0.5rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            margin-bottom: 1rem;
        }
        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 80px;
            }
            .display-4 {
                font-size: 2.2rem;
            }
            .section-title {
                font-size: 1.8rem;
            }
        }
        .floating-animation {
            animation: floating 3s ease-in-out infinite;
        }
        @keyframes floating {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        .zoom-on-hover {
            transition: transform 0.5s ease;
        }
        .zoom-on-hover:hover {
            transform: scale(1.05);
        }
        .opacity-on-hover {
            opacity: 0.9;
            transition: opacity 0.3s ease;
        }
        .opacity-on-hover:hover {
            opacity: 1;
        }
        .text-justify {
            text-align: justify;
        }
