@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
    position: relative;
    background: url('img/istockphoto-962891818-612x612.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Orbitron', sans-serif;
    color: #000000;
    min-height: 100vh;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(15px);
    z-index: -1;
}

.navbar {
    background-color: #000000;
    border-bottom: 2px solid #f2ff00;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 10px 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: auto;
}

.navbar-brand img {
    height: 180px;
    width: auto;
    margin-right: 10px;
}

.navbar-toggler {
    position: absolute;
    right: 20px;
    border-color: #f2ff00;
    background-color: transparent;
    transition: box-shadow 0.3s ease;
    border-radius: 50%; /* Hacemos el botón circular */
    padding: 10px;
}

/* Inicialmente, no tiene iluminación */
.navbar-toggler-icon {
    background-color: #efeb7104;
}

/* Iluminación amarilla y giro */
.navbar-toggler.iluminado {
    box-shadow: 0 0 15px 10px rgba(255, 255, 0, 1); /* Resplandor amarillo */
    animation: resplandorGiro 2s linear infinite; /* Animación del resplandor y giro */
}

/* Animación de giro de la luz */
@keyframes resplandorGiro {
    0% {
        box-shadow: 0 0 10px 10px rgba(255, 225, 0, 0.5), 0 0 0 0px rgba(255, 255, 255, 0);
        transform: rotate(0deg); /* Inicio del giro */
    }
    50% {
        box-shadow: 0 0 15px 15px rgb(255, 234, 0), 0 0 5px 5px rgba(255, 255, 255, 1);
        transform: rotate(180deg); /* Medio giro */
    }
    100% {
        box-shadow: 0 0 10px 10px rgba(255, 255, 0, 0.5), 0 0 0 0px rgba(255, 255, 255, 0);
        transform: rotate(360deg); /* Giro completo */
    }
}

/* Efecto de luz amarilla al hacer clic */
.navbar-toggler:active {
    animation: resplandorGiro 2s linear infinite;
}

.nav-link {
    color: #f2ff00 !important;
    font-size: 1.2rem;
}

.menu-title {
    text-align: center;
    color: #fff200d9;
    margin-top: 5px;
    font-size: 3rem;
    text-transform: uppercase;
}

.menu-section {
    padding-bottom: 100px;
}

.menu-section h2 {
    font-size: 2rem;
    color: #f2ff00;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 3px solid #f2ff00;
}

/* Estilos para las tarjetas de productos */
.product-card {
    background: linear-gradient(135deg, rgba(19, 19, 19, 0.2) 0%, rgba(169, 167, 117, 0.153) 100%);
    border-radius: 15px;
    border: 2px solid rgba(242, 255, 0, 0.3);
    padding: 15px;
    margin-bottom: 30px;
    margin-right: 15px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 10px #f2ff00;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: scale(1.15);
}

.product-card img {
    width: 100%;
    height: auto;
    border-bottom: 2px solid #f2ff00;
    margin-bottom: 15px;
}

.product-card h5 {
    color: #fff;
    margin-top: 10px;
    font-size: 1.5rem;
}

.product-card p {
    color: #dcdcdc;
}

.product-card .price {
    color: #f2ff00;
    font-weight: bold;
    font-size: 1.3rem;
}

#total-box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #333;
    border-top: 5px solid #f2ff00;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#total-box h2, #total-box p {
    margin: 0;
}

.reset-gif {
    width: 30px;
    height: auto;
    margin-right: 35px;
    position: relative;
    top: -10px;
}

#reset-btn {
    background-color: #f2ff00;
    border: none;
    padding: 10px 0px;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

#reset-btn:hover {
    background-color: #ffdd00;
}

.content-padding {
    padding-bottom: 80px;
}

@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
    }

    .navbar-brand {
        flex-grow: 0;
        text-align: left;
    }

    .navbar-toggler {
        margin-left: 0;
    }

    .navbar-brand img {
        height: 150px;
    }
}
