:root {
            --primary-color: #ff4757; /* Appetizing Red */
            --secondary-color: #2f3542;
            --light-bg: #f1f2f6;
            --dark-bg: #1e272e;
        }

        html, body {
            padding: 0;
            margin: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;

            
        }

        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
        }

        /* --- Navbar --- */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            overflow-x: hidden;
        }
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
        }
        .nav-link {
            color: var(--secondary-color);
            font-weight: 500;
            margin-left: 15px;
            transition: 0.3s;
        }
        .nav-link:hover {
            color: var(--primary-color);
        }

        .navbar-toggler{
            padding: 4px 8px;
            line-height: 1;
            border: none;
        }

        .navbar-toggler:focus{
            box-shadow: none;

        }   

        .navbar-toggler-icon{
            width: 30px;
            height: 30px;
        }
        .btn-custom {
            background-color: var(--primary-color);
            color: white;
            border-radius: 30px;
            padding: 8px 25px;
            transition: 0.3s;
        }
        .btn-custom:hover {
            background-color: #e84118;
            color: white;
            transform: translateY(-2px);
        }

        /* --- Hero Section --- */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
        }
        .hero span {
            color: var(--primary-color);
        }

        @media screen and (max-width: 768px) {
            .container span{
                font-size: 40px;
            }
        }

        /* --- Section Styling --- */
        section {
            padding: 80px 0;
        }
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            width: 70px;
            height: 3px;
            background: var(--primary-color);
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }

        /* --- Services --- */
        .service-card {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            transition: 0.3s;
            height: 100%;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        .service-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* --- Menu / Prices --- */
        .price-card {
            border: none;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: 0.3s;
        }
        

        .price-card:hover {
            transform: scale(1.02);
        }
        .price-img {
            height: 200px;
            object-fit: cover;
        }
        .price-tag {
            background: var(--primary-color);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-weight: bold;
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 15px;
        }

        @media screen and (max-width:768px) {
            .price-tag{
                font-size: 15px !important;
            }
        }


        /* --- Reviews --- */
        .reviews-section {
            background-color: var(--light-bg);
        }
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
        }
        .client-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 15px;
            border: 3px solid var(--primary-color);
        }

        /* --- Contact --- */
        .contact-section {
            background: var(--dark-bg);
            color: white;
        }
        .contact-section h2 {
            color: white;
        }
        .form-control {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: white;
            padding: 15px;
        }
        .form-control:focus {
            background: rgba(255,255,255,0.15);
            color: white;
            border-color: var(--primary-color);
            box-shadow: none;
        }
        .form-control::placeholder{
            color: white;
        }

        /* --- Footer --- */
        footer {
            background: #111;
            color: #aaa;
            padding: 20px 0;
            text-align: center;
        }