      body {
            margin: 0;
            padding: 0;
            background-color: #000; /* Fondo negro */
            font-family: Arial, sans-serif;
        }

        .social-section {
            margin-top: 50px;
            text-align: center;
            padding: 20px;
        }
        .social-section h2 {
            color: #fff;
            letter-spacing: 1px;
            text-align: center;
        }
        .social-icons {
            margin-top: 20px;
        }
        .social-icons a {
            margin: 0 15px;
            display: inline-block;
        }
        .social-icons img {
            width: 40px;
            height: 40px;
            
        }


        /* reservaciones  */

        .container {
            width: 80%;
            margin: 0 auto;
            padding: 20px;
        }

         .container p{
            color: white;
        }


        h2 {
            color: orange;
            text-align: left;
        }
        p.centered {
            text-align: center;
            margin-top: 10px;
        }
        hr {
            border: 0;
            height: 1px;
            background-color: white;
            margin: 20px 0;
        }

        form {
            display: flex;
            flex-direction: column;
        }
        input, textarea, select {
            padding: 10px;
            margin-bottom: 20px;
            border: none;
            border-radius: 5px;
            background-color: #222;
            color: white;
        }
        input[type="email"]:invalid {
            border: 1px solid red;
        }
        label {
            margin-bottom: 5px;
        }
        .btn {
            padding: 10px;
            background-color: orange;
            border: none;
            cursor: pointer;
            color: black;
            font-size: 16px;
        }
        .contact-info, .special-requests, .hours {
            margin-bottom: 20px;
        }
        .contact-info h3, .special-requests h3, .hours h3 {
            margin-bottom: 10px;
        }
        .footer {
            margin-top: 20px;
            font-size: 12px;
        }
        a {
            color: orange;
            text-decoration: none;
        }

        /* Flexbox for desktop view */
        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
        }
        .contact-form, .info-wrapper {
            width: 48%;
        }

        /* Mobile view - one column layout */
        @media (max-width: 768px) {
            .contact-form, .info-wrapper {
                width: 100%;
            }
        }



                /* Mapa responsive */
        .map-container {
            width: 100%;
            height: 400px;
            margin-bottom: 20px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }