@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500&display=swap');

body {
    position: relative;
    background: url('img/istockphoto-1250563523-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: #010101;
    border-bottom: 2px solid #f2ff00;
}

/* Centrar logo en dispositivos móviles */
@media (max-width: 768px) {
    .navbar-brand {
        position: relative;
        display: inline-block;
    }

    .navbar-toggler {
        position: absolute;
        right: 30px;
    }

    .navbar-brand img {
        width: 130px;
        height: auto;
        pointer-events: none;
    }

    /* Definir el área clicable solo en el centro del logo */
    .navbar-brand::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 20px;
        height: 20px;
        background-color: rgba(255, 255, 255, 0);
        pointer-events: all;
        cursor: pointer;
        z-index: 1;
    }
}

.navbar-toggler {
    border-color: #f2ff00;
    background-color: transparent;
    transition: box-shadow 0.3s ease;
    border-radius: 50%;
    padding: 10px;
}

/* Estilos del ícono de menú (hamburger) */
.navbar-toggler-icon {
    background-color: #efeb7104;
    transition: all 0.3s ease;
}

/* Efecto de iluminación para el botón de menú */
.navbar-toggler.iluminado {
    box-shadow: 0 0 15px 10px rgba(255, 255, 0, 1); /* Resplandor */
    animation: resplandorGiro 2s linear infinite;
}

/* 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;
}

.navbar-brand {
    margin-right: 100;
    margin-left: auto;
}

.nav-link {
    color: #f2ff00 !important;
    font-size: 1.2rem;
}

.menu-title {
    text-align: center;
    color: #f2ff00d1;
    margin-top: 9px;
    font-size: 3rem;
    text-transform: uppercase;
}

/* Menu Sections */
.menu-section h2 {
    font-size: 2rem;
    color: #f2ff00;
    text-transform: uppercase;
    margin-bottom: 30px;
    border-bottom: 3px solid #f2ff00;
}

.product-card {
    background: linear-gradient(135deg, rgba(19, 19, 19, 0.092) 0%, rgba(104, 103, 66, 0.201) 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;
}
