/* Reset CSS Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0 !important;
    padding: 0 !important;
}

#home {
    background-color: black;
}

/* NAV style */
.nav {
    list-style: none;
    display: flex;
    font-size: 60px;
    font-family: "Tangerine", cursive;
    gap: 60px;
    background-color: rgba(255, 255, 255, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px !important;
    margin: 0 !important;
}

/* Eliminar cualquier padding de Bootstrap en el navbar */
.navbar, .navbar * {
    padding: 0 !important;
    margin: 0 !important;
}

/* Excepción para el menú hamburguesa */
.navbar .menu-toggle {
    padding: 5px !important;
    margin-right: 20px !important;
}

.navbar .menu-toggle span {
    margin: 3px 0 !important;
}

.navbar .header {
    margin: 0 !important;
}

.header {
    background: linear-gradient(90deg, rgba(0, 146, 70, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(196, 39, 39, 1) 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 125px;
    position: relative;
    z-index: 1200;
    padding: 0 20px !important;
    margin: 0 !important;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    margin-left: 5px;
}

.nav li {
    margin-left: 0;
}

.Markers {
    text-decoration: none;
    color: rgb(186, 48, 48);
    font-weight: bold;
}   

.Markers:hover {
    color: rgb(0, 0, 0);
    text-decoration: underline;
    border-radius: 8px;
    border: 4px solid rgb(231, 50, 50);
}

.Instagram {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    margin-left: 20px;
    background-color: rgb(0, 0, 0);
    border-radius: 50%;
    padding: 8px; 
}

/* Menú Hamburguesa */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    margin-right: 20px;
    z-index: 1100;
    position: relative;
    padding: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: rgb(141, 9, 9);
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Responsive Navigation */
@media (max-width: 900px) {
    .nav {
        position: fixed;
        top: 125px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 125px);
        background: linear-gradient(180deg, rgba(0, 146, 70, 0.95) 0%, rgba(255, 255, 255, 0.95) 50%, rgba(196, 39, 39, 0.95) 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 50px;
        z-index: 1000;
        backdrop-filter: blur(10px);
    }

    .nav.active {
        left: 0;
    }

    .nav li {
        margin: 20px 0;
        margin-left: 0;
    }

    .Markers {
        font-size: 45px;
        padding: 10px 20px;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .Markers:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.05);
    }

    .menu-toggle {
        display: flex;
        padding: 5px !important;
        margin: 0 !important;
        position: relative !important;
    }

    .menu-toggle span {
        padding: 0 !important;
        margin: 3px 0 !important;
    }

    .Instagram {
        margin-left: 20px;
    }

    .header {
        justify-content: space-between;
        padding: 0 10px;
    }
}

#home {
    background-color: black;
}


/* Hero Main */
.overlay {
    position: static;
    background-color: rgba(0, 0, 0, 0.6);
}
.hero {
    background-image: url(../IMG/Inicio/Ristorante\ Cieri.jpg);
    background-size: cover;
    background-position: center;
    height: 35cm;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Títulos del Hero */
.Titulo {
    font-size: 130px;
    color: crimson;
    font-family: "Fleur De Leah", cursive;
    text-shadow: 
        3px 3px 6px rgba(0, 0, 0, 0.8),
        -2px -2px 4px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(220, 20, 60, 0.3);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1));
    padding: 20px 40px;
    border-radius: 15px;
    backdrop-filter: blur(2px);
    margin-bottom: 10px;
}

.Subtitulo {
    font-size: 75px;
    color: crimson;
    font-family: "Fleur De Leah", cursive;
    font-weight: lighter;
    text-shadow: 
        2px 2px 4px rgba(0, 0, 0, 0.8),
        -1px -1px 2px rgba(0, 0, 0, 0.6),
        0 0 15px rgba(220, 20, 60, 0.2);
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
    padding: 15px 30px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
}

/* Sobre nosotros */
.Info {
    color: white;
    text-align: center;
    padding: 50px 20px;
    font-size: 20px;
    font-family: Arial, sans-serif;
    margin-top: 20px;
}

#Ristorante {
    font-weight: bold;
    color: crimson;
    font-family: "Fleur De Leah", cursive;
    font-size: 28px;
}

/* Imagen de servicios */
.servicio {
    width: 100%;
    text-align: center;
}

.servicio img {
    width: 525px;
    height: 525px;
}

/* Carousel */
.carousel-section img {
    width: 65%;
    height: 700px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive carousel */
@media (max-width: 768px) {
    .carousel-section img {
        width: 90%;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .carousel-section img {
        width: 95%;
        height: 300px;
    }
}

.carousel-items {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
}

/* Footer */
.footer {
    background-color: rgb(0, 146, 70);
    color: white;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    font-size: 20px;
    font-family: Arial, sans-serif;
    margin-top: 20px;
    min-height: 350px;
}

.footer-Display {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding: 40px 20px;
    gap: 6cm;
    min-height: 350px;
}

#mapa-footer {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#mapa-footer iframe {
    width: 600px !important;
    height: 300px !important;
    border: 0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#horario-footer {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.Horario-titulo {
    text-align: center;
    font-size: 28px;
    color: rgb(255, 255, 255);
    margin-top: 0px;
    margin-bottom: 15px;
}

.Horario-lista {
    list-style: none;
    padding: 0;
    text-align: center;
    font-size: 20px;
    color: rgb(255, 255, 255);
    margin-top: 10px;
}

/* Formularios */
.form-box {
    background-color: beige;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    margin: 40px auto;
    font-family: "BBH Sans Bogle", sans-serif;
}

.form-box h1 {
    text-align: center;
    margin-bottom: 30px;
    color: rgb(146, 0, 0);
    font-size: 48px;
    font-weight: bold;
}

.form-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: rgb(146, 0, 0);
}

.form-box label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: bold;
    color: rgb(146, 0, 0);
    font-size: 24px;
}

.text-container {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    margin-top: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    background-color: #fff;
    color: #333;
}

.text-container:focus {
    outline: none;
    border-color: #c42727;
    box-shadow: 0 0 5px rgba(196, 39, 39, 0.3);
}

.form-box input[type="submit"]:hover {
    background: #a01d1d;
}

/* WhatsApp */
.whatsapp {
    position: fixed;
    width: 5%;
    height: 5%;
    bottom: 10px;
    right: 10px;
}

/* Formulario de Contacto */
#contacto-title {
    text-align: center;
    font-size: 50px;
    color: rgb(146, 0, 0);
    font-weight: bold;
    margin-bottom: 40px;
}

.contacto-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: rgb(146, 0, 0);
    font-size: 24px;
}

.contacto-form {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background-color: beige;
    border-radius: 12px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(0, 0, 0, 0.1),
        0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    text-align: center;
    flex-direction: column;
    min-height: auto;
    font-size: 25px;
    font-family: "BBH Sans Bogle", sans-serif;
    font-weight: normal;
}

#formCont {
    gap: 15px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0;
}

#name, #email, #message {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

#name:focus, #email:focus, #message:focus {
    outline: none;
    border-color: #c42727;
    box-shadow: 0 0 5px rgba(196, 39, 39, 0.3);
}

#message {
    height: 120px;
    resize: vertical;
    padding: 12px;
    font-family: Arial, sans-serif;
    line-height: 1.4;
    border: 2px solid #ddd;
    background-color: #fff;
    border-radius: 6px;
    box-sizing: border-box;
}
.form-buttons {
    padding-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Carta */
.fonts {
    font-family: "Tangerine", cursive;
    font-size: 25px;
    color: rgb(255, 98, 0);
    margin-bottom: 10px;
}

#carta-título {
    color: rgb(255, 98, 0);
    

}

#carta-subtítulo {
    color: #000000;


}

.container {
    background-color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 5cm;
    border-style: dotted;
    border-color: #c42727;
    width: 800px;
    max-width: 90%; 
    margin: 40px auto; 
    padding: 30px 40px; 
    box-sizing: border-box;
    display: block;
    position: relative; 
}

#carta-título {
    color: rgb(10, 155, 30); 
    font-family: "Tangerine";
    font-size: 60px;
    font-weight: cursive;
}

#carta-subtítulo {
    color: rgb(255, 98, 0); 
    font-family: "Tangerine";
    font-size: 45px;
    font-weight: cursive;
}

.card {
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    max-width: 400px;
    margin-top: 60px;
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    margin: 20px;
    padding: 10px;
}

.item-nombre {
    font-weight: 500;
    font-size: 1.1em;
}

.item-precio {
    font-weight: bold;
    color: #c42727;
    font-size: 1.1em;
}
.cards-title {
    font-size: 32px;
    color: #c42727;
    text-align: center;
    margin-bottom: 20px;
    font-family: "Tangerine", cursive;
    background-color: rgb(0, 146, 70);
}
.Food-section {
    font-size: 28px;
    color: #c42727;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
}
.section-title {
    font-size: 50px;
    color: #ffffff;
    text-align: center;
    font-family: "Tangerine", cursive;
    background-color: rgb(0, 146, 70);
    padding: 15px;

}

.img-food {
    width: 300px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin-left: auto;
    position: relative;
}

#message {
    height: 100px;
    resize: vertical;
}


fieldset {
    border: 2px solid white;
    border-radius: 5px;
    padding: 15px;
    margin: 20px 0;
}

legend {
    font-weight: bold;
    color: rgb(146, 0, 0);
    padding: 0 10px;
}

.satisfaction-options {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}

.satisfaction-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
}

.satisfaction-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
}

.satisfaction-option label {
    font-size: 14px;
    color: rgb(146, 0, 0);
    text-align: center;
    margin: 0;
}

/* Botones */
.button-container {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

.text-container {
    flex: 1;
}

/* Botones de formularios */
input[type="submit"], 
input[type="button"], 
button[type="submit"],
.btn-primary {
    background: #c42727;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    padding: 12px 20px;
    transition: background 0.2s;
}

input[type="submit"]:hover, 
input[type="button"]:hover, 
button[type="submit"]:hover,
.btn-primary:hover {
    background: #a01d1d;
}

/* Botones de reset/limpiar - Estilo unificado */
input[type="reset"],
button[type="reset"],
.btn-secondary {
    background: #666;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    padding: 12px 20px;
    transition: background 0.2s;
}

input[type="reset"]:hover,
button[type="reset"]:hover,
.btn-secondary:hover {
    background: #555;
}

/* Cartas */
.section-title {
    font-size: 50px;
    color: #ffffff;
    text-align: center;
    font-family: "Tangerine", cursive;
    background-color: rgb(0, 146, 70);
    padding: 15px;
}

.Food-section {
    font-size: 28px;
    color: #c42727;
    text-align: center;
    margin-bottom: 20px;
    padding: 10px;
}

.img-food {
    width: 300px;
    height: 200px;
    border-radius: 8px;
    object-fit: cover;
    margin-left: 20px;
    position: relative;
}

.cards-container {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
}

/* Responsive Cards */
@media (max-width: 768px) {
    .cards-container {
        flex-wrap: wrap;
        width: 100%;
        display: center;

    }
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-Display {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 20px 10px;
    }

    #mapa-footer {
        max-width: 100%;
        width: 100%;
        order: 1;
    }

    #mapa-footer iframe {
        width: 100% !important;
        max-width: 400px !important;
        height: 250px !important;
        margin: 0 auto;
        display: block;
    }

    #horario-footer {
        max-width: 100%;
        width: 100%;
        text-align: center;
        order: 2;
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .footer {
        min-height: auto;
        padding: 20px 0;
    }
}

@media (max-width: 480px) {
    .footer-Display {
        padding: 15px 5px;
        gap: 20px;
    }

    #mapa-footer iframe {
        width: 95% !important;
        max-width: 350px !important;
        height: 200px !important;
    }

    .Horario-titulo {
        font-size: 24px;
        margin-top: 20px;
    }

    .Horario-lista {
        font-size: 18px;
    }
}
