body {
    background: url('../img/fondo.jpeg') no-repeat center center fixed;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    position: relative;
}

body::before {
    content: "";
    background-color: #08a635(0, 57, 48, 0.5); 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.menu-container {
    background-color: #000000d4;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}
.menu-header {
    background-color: #ffffff;
    color: #000000;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.menu-header h1 {
    margin: 0;
    font-size: 1.8em;
    font-weight: bold;
}

.menu-header a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-header a:hover {
    color: #000000;
}

@media (max-width: 768px) {
    .menu-header h1 {
        font-size: 1.5em;
    }
}

.menu-header h1 {
    text-align: center;
}

.menu-categories ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.menu-category {
    padding: 15px;
    border: 2px solid #000000;
    border-radius: 5px;
    color: #08a635;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Times New Roman', serif; 
    font-weight: bold; 
    margin: 15px;
    background-color: white;
}

.menu-category:hover {
    color: #000000;
    border-color: #000000;
}

.menu-category:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.5);
}

.menu-category:hover {
    color: #000000  ;
}

.menu-item {
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.menu-item p {
    font-weight: normal;
    font-size: 1em;
    margin: 5px 0;
    font-family: 'Times New Roman', serif; 
    font-weight: bold; 
    color: #ffffff;
}

.menu-logo {
    display: block;
    margin: 0 auto;
    width: 100px;
    font-family: 'Times New Roman', serif; 
    font-weight: bold; 
}

.menu-items > .menu-item {
    display: inline-block;
    width: calc(33.33% - 20px);
    margin-right: 20px;
    vertical-align: top;
}
.linea {
    border-top: 2px solid;
    animation: changeColor 1s infinite alternate; 

   
}

.categoria-description {
  
    text-align: center;
    font-family: 'Times New Roman', serif;
    animation: changeColor 1s infinite alternate; 
}

@keyframes changeColor {
    from {
        color: #ffffff; 
    }
    to {
        color: #08a635; 
    }
}

/*Logim */
.login-container {
    max-width: 400px;
    margin: 0 auto;
}

.login-header {
    background-color: #000000;
    color: #fff;
    padding: 10px;
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-family: 'Times New Roman', serif; 
    font-weight: bold; 
}

.login-form {
    background-color: #fff;
    border-radius: 0 0 10px 10px;
    padding: 20px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.login-form .form-group {
    margin-bottom: 20px;
}

button[type="submit"] {
    background-color: #08a635;
    border-color: #08a635;
    color: #000000;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #08a635;
    border-color: #08a635;
}

.modal-dialog {
    max-width: 600px;
}

.modal-content {
    background-color: #000000;
    border-radius: 10px;
}

.modal-header {
    border-bottom: none;
    background-color: #08a635;
    color: #ffffff;
    border-radius: 10px 10px 0 0;
}

.modal-title {
    text-align: center;
    font-family: 'Times New Roman', serif; 
    font-weight: bold;
}

.modal-body {
    padding: 30px;
}

.modal-body img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.modal-body p {
    font-weight: normal;
    font-size: 1em;
    margin: 10px 0;
    font-family: 'Times New Roman', serif; 
    font-weight: bold; 
    color: #ffffff;
    text-align: center;
}

.menu-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

@media (max-width: 576px) {
    .menu-items > .menu-item {
        width: 100%; 
        margin-right: 0;
    }
}

#g-load {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}
.load {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #08a635; 
    border-top: 3px solid transparent;
    position: relative;
    animation: rotate 0.8s linear infinite; 
}

@keyframes rotate {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
    color: #333;
}

.popup-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999; 
    display: none; 
}

@media (max-width: 767px) {
    .popup {
        width: 90%;
    }
}

.reservacion-button {
    margin-top: 20px; 
    text-align: center;
    display: flex;
    justify-content: center; 
}
.reservacion-form {
    text-align: center;
}
.btn-reservacion {
    margin: 0 5px; 
    padding: 5px 10px;
    background-color: #000000;
    border: 1px solid #000000;
    color: #08a635;
    border-radius: 5px;
    font-family: 'Times New Roman', serif; 
    font-weight: bold; 
    font-size: 1em;
    text-decoration: none;
    transition: background 0.3s ease; 
    margin-top: 20px; 
}

.btn-reservacion:hover {
    background: linear-gradient(45deg, #010101, #08a635); 
    border-color: #08a635;
    color: #ffffff; 
    transform: scale(1.05); 
}

.btn-cargar-informacion {
    padding: 2px 62px;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #000000;
    border-radius: 5px;
    font-size: 1em;
    text-decoration: none;
    transition: background 0.3s ease;
    cursor: pointer;
    margin-left: 10px; 
}

.btn-cargar-informacion:hover {
    background: linear-gradient(45deg, #ffffff, #08a635);
    border-color: #000000;
    color: #000000;
    transform: scale(1.05);
}

.cargar-info {
    max-width: 300px;
    margin: 0 auto;
    text-align: center; 
}

.input-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
}

form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"],
input[type="time"],
input[type="number"],
textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #272526;
    border-radius: 5px;
}

textarea {
    resize: vertical;
}

button[type="submit"] {
    padding: 10px 10px;
    background-color: #000000;
    border: 1px solid #020202;
    color: #08a635;
    border-radius: 5px;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    font-size: 1em;
    text-decoration: none;
    transition: background 0.3s ease;
    display: block;
    margin: 0 auto;
    cursor: pointer;
}

button[type="submit"]:hover {
    background: linear-gradient(45deg, #000000, #08a635);
    border-color: #272526;
    color: #000000;
    transform: scale(1.05);
}


.form-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.form-row {
    width: 48%; 
    margin-bottom: 20px;
    display: inline-block;
}

.form-group {
    margin-bottom: 15px;
}

@media (max-width: 767px) {
    form {
        max-width: 100%; 
    }

    .form-row {
        width: 100%; 
    }
}

.footer {
    color: white;
        
    }