        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        header {
            background: #FFA500;
            color: white;
            padding: 20px 50px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 20px;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            transition:  color 0.3s;
}

nav a:hover {
     color: #000000;
}
        .hero {
            background: linear-gradient(rgba(0,0,0,0.5),
                        rgba(0,0,0,0.5)),
                        url('https://images.unsplash.com/photo-1559847844-d721426d6edc?auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            height: 80vh;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 15px;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 20px;
        }

        .btn {
            display: inline-block;
            background: #ff7b00;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 5px;
        }

        section {
            padding: 60px 10%;
        }

        h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #003b5c;
        }

        .about,
        .contact {
            text-align: center;
        }

        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
            gap: 20px;
        }

        .menu-item {
            background: #f4f4f4;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        .menu-item h3 {
            color: #ff7b00;
            margin-bottom: 10px;
        }

        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .feature-box {
            background: #003b5c;
            color: white;
            padding: 20px;
            border-radius: 10px;
            width: 250px;
            text-align: center;
        }

        footer {
            background: #003b5c;
            color: white;
            text-align: center;
            padding: 20px;
        }

        @media(max-width:768px){
            header{
                flex-direction: column;
            }

            nav ul{
                margin-top:10px;
                flex-wrap: wrap;
                justify-content:center;
            }

            .hero-content h1{
                font-size:2rem;
            }
        }
