        :root {
            --primary-red: #c43828;
            --dark-bg: #050505;
            --card-bg: #1a1a1a;
            --text-gray: #b0b0b0;
        }

        body {
            background-color: var(--dark-bg);
            color: white;
            font-family: 'Roboto', sans-serif;
            overflow-x: hidden;
        }

        a {
            color: inherit !important;
            text-decoration: none;
        }

        h1, h2, h3, .nav-link, .btn {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
        }

        /* Navbar */
        .navbar {
            background: rgba(0,0,0,0.9);
            border-bottom: 1px solid #333;
        }
        .nav-link { color: white !important; margin: 0 15px; font-size: 1.4rem; }
        .nav-link:hover { color: var(--primary-red) !important; }

        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/background.jpg');
            background-size: cover;
            min-height: 80vh;
            display: flex;
            align-items: center;
        }

        .hero-title { font-size: 5rem; line-height: 0.9; color: white; font-family: 'Protest Revolution';}
        .hero-subtitle { color: var(--primary-red); letter-spacing: 2px; }

        /* Quick Links */
        .feature-card {
            background: var(--card-bg);
            border: 1px solid #333;
            transition: 0.3s;
            overflow: hidden;
            position: relative;
        }
        .feature-card img { height: 200px; object-fit: cover; width: 100%; opacity: 0.7; }
        .feature-card:hover { border-color: var(--primary-red); }

        .feature-card button {
            border: 1px solid var(--primary-red);
        }

        .feature-card h2 {
            text-decoration: none !important;
            color: #fff;
            font-size: 1.5rem;
        }
        
        /* Sections */
        section { padding: 80px 0; }
        .red-box { background: var(--primary-red); padding: 40px; }

        
        .catering-section {
            background-image: url('img/background.jpg'); 
            background-attachment: fixed; /* This makes the image fixed */
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
            padding: 100px 0;
            position: relative;
        }

        /* The Red Overlay Box */
        .catering-box {
            background-color: rgba(180, 20, 30, 0.9); /* Deep Red with slight transparency */
            border-radius: 40px; /* Highly rounded corners like the image */
            padding: 60px;
            color: white;
            max-width: 600px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .catering-box h2 {
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* Outline Button to match the image */
        .btn-outline-white {
            border: 2px solid white;
            color: white;
            font-weight: bold;
            padding: 10px 30px;
            transition: 0.3s;
        }

        .btn-outline-white:hover {
            background-color: white;
            color: #b4141e;
        }

        /* Responsive adjustments for mobile */
        @media (max-width: 768px) {
            .catering-section {
                background-attachment: scroll; /* Fixed bg often breaks on mobile, scroll is safer */
                padding: 50px 20px;
            }
            .catering-box {
                padding: 30px;
                border-radius: 20px;
            }
        }


        .gallery-section {
            padding: 80px 0;
            background-color: #000;
        }

        .section-title {
            color: #fff;
            text-transform: uppercase;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 5px;
        }

        /* The Red Diamonds under the title */
        .dots-container {
            display: flex;
            gap: 8px;
            margin-bottom: 40px;
        }
        .dot {
            width: 8px;
            height: 8px;
            background-color: #ff3131;
            transform: rotate(45deg); /* Makes them diamond shaped */
        }

        /* Image Styling */
        .gallery-item {
            border-radius: 20px; /* High rounding like the image */
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            cursor: pointer;
            opacity: 1; /* Hidden initially for animation */
            transform: translateY(30px); /* Positioned lower initially */
        }

        .gallery-item img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        /* Hover Animation: Zoom + Lift */
        .gallery-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 49, 49, 0.2);
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* On-Load Animation Class (Triggered by jQuery) */
        .animate-in {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }


        /* Location Section Styles */
        .location-section {
            background-color: #000;
        }

        /* Red Diamonds Styling */
        .diamond-container {
            display: flex;
            gap: 8px;
        }
        .location-section .diamond {
            width: 8px;
            height: 8px;
            background-color: #ff3131;
            transform: rotate(45deg);
            display: inline-block;
        }

        /* The Main Dark Card */
        .location-card {
            background-color: #1a1a1a; /* Dark gray to pop against black bg */
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #333;
        }

        /* Map Styling */
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
        }
        .map-container iframe {
            height: 100%;
            min-height: 250px;
        }

        /* Typography & Buttons */
        .location-card h6 {
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        .location-card p {
            font-size: 0.95rem;
            line-height: 1.6;
        }

.btn-outline-light {
  border-color: #444;
  font-size: 1.4rem;
  border-radius: 5px;
  padding: .5rem 1.5rem;
  transition:.5s all;
}

.btn-outline-light:hover {
  color: #000 !important;
}

.fab.fa-instagram {
  font-size: 1.4rem;
}

        .btn-danger {
            background-color: #e31e24;
            border: none;
            border-radius: 5px;
            transition: 0.3s;
        }

        .btn-danger:hover {
            background-color: #ff0000;
            transform: translateY(-2px);
        }

        /* Responsive fixes */
        @media (max-width: 991px) {
            .map-container iframe {
                height: 250px;
            }
        }


    /* ===== Category Container ===== */
    .category {
    max-width: 100%;
    margin: 24px auto;
    padding: 20px 22px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    }

    /* ===== Category Header ===== */
    .category-header h3 {
    margin: 0 0 12px;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: #bbb;
    }

    /* ===== Category Description ===== */
    .category-description {
    margin-bottom: 18px;
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.5;
    font-style: italic;
    }

    /* ===== Menu Items ===== */
    .menu-item {
    padding: 14px 0;
    border-bottom: 1px dashed #222;
    }

    .menu-item:last-child {
    border-bottom: none;
    }

    /* ===== Item Title ===== */
    .item-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 500;
    color: #ddd;
    transition: color 0.2s ease;
    }

    .item-description {
        font-style: italic;
        color: #bbb;
    }

    /* ===== Hover Effect ===== */
    .menu-item:hover .item-title {
    color: #d35400; /* warm restaurant accent */
    }

    @media (max-width: 780px) {
        .fixed-top-xs {
            position: absolute;
            right: 0;
            top: 1.2rem;
        }

        .btn-outline-light {
            border-color: #444;
            font-size: 1.2rem;
            border-radius: 5px;
            padding: .3rem .8rem;
            transition: .5s all;
        }
    }
    /* ===== Responsive ===== */
    @media (max-width: 480px) {
    .category {
        padding: 16px;
        margin: 16px;
    }

    .category-header h3 {
        font-size: 1.35rem;
    }

    .item-title {
        font-size: 1rem;
    }
    }



        /* Footer */
        footer { background: #000; padding: 60px 0; border-top: 1px solid #222; }


