/* Variables globales */
:root {
    --primary-color: #FF6B00;
    --secondary-color: #FFA500;
    --dark-color: #1A1A1A;
}

/* Estilos base */
html, body {
    background-color: var(--dark-color) !important;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: var(--dark-color) !important;
}

main {
    flex: 1;
    margin-bottom: 5px;
}

/* Estilos de encabezado */
header img {
    border-radius: 60%;
}

h2 {
    color: #c00;
}

h5.card-title{
    color: white;
    text-decoration: white;
}

.logo-cuadrado {
    width: 250px; 
    height: auto; 
    object-fit: cover; 
    border-color:rgba(255, 217, 0, 0.918);
    border-radius: 10px; 
    display: block;
    margin: auto;
}

.header-custom {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: white;
}

/* Estilos de tarjetas */
.burger-card {
    background: var(--dark-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.burger-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px 15px 0 0;
}

/* Estilos de botones */
.btn-3d {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    min-height: 60px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: white;
    font-size: 1rem;
}

.btn-3d:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    color: white;
}

.btn-3d:active {
    transform: translateY(4px);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2), 0px 5px 10px rgba(240, 205, 6, 0.897); 
}

.btn-extra {
    background-color: var(--primary-color) !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    font-size: 1rem !important;
    transition: background-color 0.3s !important;
    width: 100% !important;
}

.btn-extra:hover {
    background-color: var(--secondary-color) !important;
    color: white !important;
}

.btn-extra strong {
    color: white;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.5);
}

.btn-warning {
    font-weight: bold !important;
}

.btn-detalles {
    background-color: #007bff !important;
    color: white !important;
    border: none !important;
    transition: background-color 0.3s ease !important;
    width: 100% !important;
    padding: 10px 20px !important;
    font-size: 1rem !important;
}

.btn-detalles:hover {
    background-color: #0056b3 !important;
    color: white !important;
}

.btn-whatsapp {
    background-color: #25D366 !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    font-size: 1rem !important;
    transition: background-color 0.3s !important;
    width: 100% !important;
}

.btn-whatsapp:hover {
    background-color: #128C7E !important;
    color: white !important;
}

.btn-volver {
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    border: none !important;
    padding: 10px 20px !important;
    font-size: 1rem !important;
    transition: background 0.3s !important;
}

.btn-volver:hover {
    background: linear-gradient(to right, var(--secondary-color), var(--primary-color)) !important;
    color: white !important;
}

.menu-img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.Horario {
    font-size: 0.9rem; 
}

/* Estilos para bebidas */
.bebida-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    transition: transform 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bebida-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.bebida-nombre {
    flex: 1;
    margin-right: 15px;
    font-size: 1.25rem;
}

/* Estilos para adiciones */
.adicion-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    transition: transform 0.3s;
    text-align: center;
}

.adicion-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
}

.adicion-imagen {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: rgba(255, 255, 255, 0.05);
}

.adicion-nombre {
    font-size: 1.5rem;
    color: white;
    margin-bottom: 10px;
    text-align: center;
}

/* Estilos compartidos */
.precio {
    color: var(--primary-color);
    font-weight: bold;
    white-space: nowrap;
    font-size: 1.25rem;
}

/* Estilos de instrucciones */
#instrucciones {
    display: none;
    background: rgba(0,0,0,0.8);
    border-radius: 10px;
    padding: 20px;
    margin: 15px 0;
}

#instrucciones.visible {
    display: block;
}

.instrucciones-lista {
    text-align: left;
    padding-left: 20px;
}

.instrucciones-lista li {
    margin-bottom: 10px;
    color: white;
}

.instrucciones-lista ul {
    padding-left: 20px;
    margin-top: 5px;
}

.instrucciones-lista a {
    word-break: break-all;
    text-decoration: underline;
    transition: color 0.3s;
    color: #007bff !important;
}

.instrucciones-lista a:hover {
    color: #0056b3 !important;
}

@media (min-width: 769px) {
    #instrucciones {
        display: none !important;
    }
}

/* Estilos para detalles */
#detalles {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    transition: all 0.3s ease;
}

#detalles p {
    line-height: 1.6;
    font-size: 1rem;
}

/* Media queries */
@media (max-width: 768px) {
    .header-custom {
        padding: 20px 0;
    }
    .header-custom img {
        max-width: 200px !important;
    }
    .burger-card {
        margin: 0 10px;
    }
    .bebida-item {
        padding: 12px;
        margin-bottom: 8px;
    }
    .adicion-item {
        padding: 15px;
        margin-bottom: 15px;
    }
    .adicion-imagen {
        height: 400px;
    }
    .container {
        padding: 0 15px;
    }
    .col-12 {
        padding: 0 5px;
    }
    #instrucciones {
        padding: 15px;
        margin: 10px 0;
    }
    .instrucciones-lista {
        padding-left: 15px;
    }
    .instrucciones-lista li {
        margin-bottom: 8px;
        font-size: 0.95rem;
    }
    #detalles {
        padding: 15px;
    }
    #detalles p {
        font-size: 0.95rem;
    }
    .instrucciones-lista a {
        color: #007bff !important;
        text-decoration: underline;
    }
    
    .instrucciones-lista a:hover {
        color: #0056b3 !important;
    }
}

@media (max-width: 576px) {
    .bebida-item {
        flex-direction: column;
        text-align: center;
        padding: 10px;
    }
    .bebida-nombre {
        margin-right: 0;
        margin-bottom: 5px;
    }
    .adicion-imagen {
        height: 300px;
    }
}
