:root {
    --verde-limon: #32cd32;
    --naranja: #ffa500;
    --rojo: #ff0000;
    --negro: #010101;
    --blanco: #ffffff;
    --azul: #5564eb;
}

body {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
}

.hero {
    /*background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/montana.jpg') no-repeat center center fixed;*/
    background-size: cover;
    text-align: center;
    padding: 50px 20px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    color: #32cd32;
    animation: fadeInDown 1s forwards;
}

.hero h2 {
    font-size: 3rem;
    font-weight: bold;
    padding: 10px 10px;
    color: #32cd32;
    animation: fadeInDown 1s forwards;
}

.hero p {
    font-size: 1.5rem;
    margin-top: 20px;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.5s;
}

.navbar {
    background-color: var(--verde-limon);
}

.navbar-brand {
    color: var(--blanco);
}

.btn-whatsapp {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background-color: var(--verde-limon);
    color: var(--blanco);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    text-decoration: none; /* Elimina el subrayado */
}

.btn-whatsapp:hover {
    transform: scale(1.1);
}

.btn-phone {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--negro);
    color: var(--blanco);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    text-decoration: none; /* Elimina el subrayado */
}

.btn-phone:hover {
    transform: scale(1.1);
}

.btn-facebook{
    position: fixed;
    bottom: 150px;
    right: 20px;
    background-color: var(--azul);
    color: var(--blanco);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
    text-decoration: none; /* Elimina el subrayado */
}

.btn-facebook:hover{
    transform: scale(1.1);
}

footer {
    background-color: var(--negro);
    color: var(--blanco);
    padding: 20px 0;
    text-align: center;
}

/* Estilo para que la imagen llene el card */
.card {
    width: 100%;
    /* Ocupa todo el ancho de la columna */
    height: 100%;
    /* Altura fija para las cards */
    overflow: hidden;
    /* Recorta la imagen si sobresale */
}

.cardo {
    width: 100%;
    /* Ocupa todo el ancho de la columna */
    height: 200px;
    /* Altura fija para las cards */
    overflow: hidden;
    /* Recorta la imagen si sobresale */
}

.card-img-top {
    width: 100%;
    /* La imagen ocupa todo el ancho */
    height: 100%;
    /* La imagen ocupa toda la altura */
    object-fit: cover;
    /* Recorta la imagen para llenar el card sin deformarse */
}

.bg-blur {
    backdrop-filter: blur(10px);
    /* Efecto de desenfoque */
    -webkit-backdrop-filter: blur(10px);
    /* Soporte para navegadores basados en WebKit */
    background-color: rgba(255, 255, 255, 0.5);
    /* Transparencia con color de fondo */
    border-radius: 8px;
    /* Bordes redondeados opcionales */
    padding: 20px;
    /* Espaciado interno opcional */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Sombra para mayor visibilidad */
}

/* Custom bullets */
.custom-bullet {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 10px;
    background-color: #f39c12;
    border-radius: 50%;
}

/* Section background */
section#platillos {
    background: linear-gradient(to bottom, #f7f8fa, #ffffff);
}

/* Headings */
h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
}

h4 {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
}

/* List items */
ul {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

/* Animations */
[data-aos] {
    transition: all 0.5s ease-in-out;
}

section#platillos {
    background-image: url('https://restaurantverdelimon.com/img/pozole.jpg');
    /* Ruta de la imagen */
    background-size: cover;
    /* Asegura que la imagen cubra todo el área */
    background-position: center;
    /* Centra la imagen */
    background-repeat: no-repeat;
    /* Evita que se repita */
    padding: 50px 0;
    /* Añade espacio interno para que el contenido no esté pegado */
    color: #fff;
    /* Cambia el color del texto para que sea legible sobre la imagen */
}

/* Asegura que el contenido esté encima del overlay */
section#platillos .container {
    position: relative;
    z-index: 2;
}