body {
    background: #191E29;
    padding-bottom: 0;
}

.mi {
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
    font-size: 60px;
    color: #01C360;
    text-align: center;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: transparent;
    transition: background-color 0.3s ease, border-bottom 0.3s ease;
    z-index: 1000;
}

.navbar:hover {
    background-color: #191E29;
    border-bottom: 1px solid #01C360;
}

.navbar-nav {
    transition: background-color 0.3s ease;
}

@media (max-width: 700px) {
    .navbar-nav {
        background-color: #191E29; /* Fondo cuando es responsive */
    }
}


#dacc {
    width: 150px;
    height: 50px;
    padding: 5px;
}

#nav-link {
    color: #01C360;
    text-decoration: none;
    padding: 10px;
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
}

#nav-link:hover {
    color: #ffffff;
}

#menu {
    width: 45px;
    height: 45px;
    padding: 5px;
}

button.navbar-toggler {
    outline: none;
    box-shadow: none;
    border: none;
}

button.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Contenedor principal */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

/* Diseño de la galería en Grid */
.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Tarjeta de imagen */
.card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    background-color: #191E29; /* Fondo coherente con el tema */
}

/* Imágenes */
.card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Efecto Hover en las imágenes */
.card:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Capa oscura sobre la imagen */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Mostrar la capa al hacer hover */
.card:hover::before {
    opacity: 1;
}

/* Sección de "Likes" */
.card-body {
    position: absolute;
    bottom: 15px;
    left: 15px;
    color: #F2BF00; /* Color coherente con el tema */
    font-weight: bold;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Icono de "Me gusta" */
.material-symbols-outlined {
    font-size: 24px;
    color: #F2BF00; /* Color coherente con el tema */
    transition: transform 0.2s ease-in-out;
}

/* Efecto en el icono al hacer hover */
.card:hover .material-symbols-outlined {
    transform: scale(1.3);
    color: #ff4757;
}

/* Diseño Responsivo */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 90%;
    }
}


.footer-container{
    padding-top: 50px;
}

.text-center {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #191E29;
    border-top: 1px solid #01C360;
    color: #F2BF00;
    text-align: center;
    padding: 10px 0;
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
    font-size: 16px;
}

.text-body {
    color: #fff !important;
    font-family: "Comic Sans MS", "Helvetica Neue", Helvetica, Arial;
    font-size: 16px;
}
