 * {
            margin: 0;
            padding: 0;
            font-family: Verdana, Geneva, Tahoma, sans-serif;
            color: black;
            box-sizing: border-box;
        }

        body{
            background-color: bisque;
            
        }

        /* Header */
        header {
            width: 100%;
            height: 100px;
            background-color: bisque;
            border-bottom: 3px solid grey;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        nav {
            display: flex;
            align-items: center;
            float: left;
        }

        h3#brand {
            font-family: Arial, Helvetica, sans-serif;
            color: white;
            margin-left: 10px;
            text-shadow:
                -1px -1px 0 black,
                1px -1px 0 black,
                -1px 1px 0 black,
                1px 1px 0 black;
        }

        img#logo {
            height: 50px;
        }

        ul#sezione-menu {
            list-style: none;
            display: flex;
            gap: 30px;
            margin-right: 20px;
        }

        li.menu {
            position: relative;
            display: inline;
        }

        a.menu-link {
            text-decoration: none;
        }

        a.menu-link:hover {
            color: red;
        }

        /* Sezione Prenotazione */
        #sezione-prenotazione {
            width: 100%;
            min-height: 600px;
            background-color: bisque;
            padding: 50px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .container-prenota {
            max-width: 800px;
            width: 100%;
            background: white;
            border: 5px solid grey;
            padding: 40px;
            border-radius: 10px;
            margin-top: 100px;
        }

        .container-prenota h1 {
            text-align: center;
            margin-bottom: 30px;
            color: black;
            font-size: 2.5em;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: bold;
            font-size: 1.1em;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid grey;
            border-radius: 5px;
            font-size: 1em;
            background: azure;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }

        .form-row {
            display: flex;
            gap: 20px;
        }

        .form-row .form-group {
            flex: 1;
        }

        .btn-prenota {
            width: 100%;
            height: 50px;
            margin-top: 20px;
            color: black;
            border: 2px solid black;
            background: azure;
            cursor: pointer;
            font-size: 1.2em;
            font-weight: bold;
            border-radius: 5px;
            transition: all 0.3s;
        }

        .btn-prenota:hover {
            background: bisque;
            transform: scale(1.02);
        }

        .info-box {
            background: #f0f0f0;
            border-left: 4px solid grey;
            padding: 15px;
            margin-bottom: 30px;
            border-radius: 5px;
        }

        .info-box h3 {
            margin-bottom: 10px;
        }

        .info-box p {
            line-height: 1.6;
            color: #333;
        }

        /* Footer */


        #messaggio-conferma {
            display: none;
            background: #4CAF50;
            color: white;
            padding: 15px;
            border-radius: 5px;
            text-align: center;
            margin-top: 20px;
        }

        @media (max-width: 768px) {
            .form-row {
                flex-direction: column;
            }

            ul#sezione-menu {
                flex-direction: column;
                gap: 10px;
            }

            header {
                height: auto;
                padding: 15px;
            }
        }