
    :root {
        --primary-color: #d52b1e;
        --secondary-color: #f6c343;
        --dark-color: #212529;
        --light-color: #f8f9fa;
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: var(--dark-color);
    }
    
    .navbar {
        background-color: var(--primary-color);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .navbar-brand img {
        height: 40px;
    }
    
    .nav-link {
        color: white !important;
        font-weight: 500;
        transition: all 0.3s;
    }
    
    .nav-link:hover {
        color: var(--secondary-color) !important;
    }
    
    .hero-section {
        background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('img1.jfif');
        background-size: cover;
        background-position: center;
        color: white;
        padding: 150px 0;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
        font-weight: bold;
        margin-bottom: 20px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }
    
    .hero-section p {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .btn-primary {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        padding: 12px 30px;
        font-weight: 600;
        transition: all 0.3s;
    }
    
    .btn-primary:hover {
        background-color: #b92314;
        border-color: #b92314;
        transform: translateY(-2px);
    }
    
    .section-padding {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 50px;
        text-align: center;
        position: relative;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background-color: var(--primary-color);
    }
    
    .menu-item {
        margin-bottom: 30px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        transition: all 0.3s;
    }
    
    .menu-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }
    
    .menu-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .menu-item-content {
        padding: 20px;
    }
    
    .menu-item-title {
        font-size: 1.5rem;
        font-weight: bold;
        margin-bottom: 10px;
    }
    
    .menu-item-price {
        color: var(--primary-color);
        font-weight: bold;
        font-size: 1.2rem;
    }
    
    .review-card {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        margin-bottom: 30px;
        height: 100%;
    }
    
    .review-stars {
        color: var(--secondary-color);
        margin-bottom: 15px;
    }
    
    .review-text {
        font-style: italic;
        margin-bottom: 20px;
    }
    
    .review-author {
        font-weight: bold;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .contact-info i {
        color: var(--primary-color);
        margin-right: 15px;
        font-size: 1.2rem;
    }
    
    .contact-form {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .form-control, .form-select {
        border-radius: 5px;
        padding: 12px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
    }
    
    .footer {
        background-color: var(--dark-color);
        color: white;
        padding: 50px 0 20px;
    }
    
    .footer-links a {
        color: white;
        text-decoration: none;
        margin-right: 20px;
        transition: color 0.3s;
    }
    
    .footer-links a:hover {
        color: var(--secondary-color);
    }
    
    .social-icons a {
        color: white;
        font-size: 1.5rem;
        margin-right: 15px;
        transition: color 0.3s;
    }
    
    .social-icons a:hover {
        color: var(--secondary-color);
    }
    
    .map-container {
        height: 400px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .famous-spot {
        margin-bottom: 30px;
        text-align: center;
    }
    
    .famous-spot img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 15px;
        transition: transform 0.3s;
    }
    
    .famous-spot:hover img {
        transform: scale(1.05);
    }
    
    .famous-spot h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .rating-badge {
        background-color: var(--secondary-color);
        color: var(--dark-color);
        padding: 5px 10px;
        border-radius: 20px;
        font-weight: bold;
        display: inline-block;
    }
    
    @media (max-width: 768px) {
        .hero-section h1 {
            font-size: 2.5rem;
        }
        
        .hero-section p {
            font-size: 1.2rem;
        }
        
        .section-title {
            font-size: 2rem;
        }
    }
