@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Modak&family=Poppins:wght@400;500;600;700;800;900&display=swap');

/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-transform: none;
    background-color: var(--light);
    color: var(--dark);
}

:root {
    --primary: #336600; 
    --secondary: #99cc66;
    --light: #f5f5f5;
    --dark: #14141f;
    --yellow: #ffcc33;
    --orange: #ff9900;
    --grem: #907c46;
}

.bg-cover{
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
.fondo-navbar {
    background-color: var(--dark);
    width: 100%;
    height: 50px;
    margin-top: -50px;
}

/*icono de historia*/

.fa-history {
    width: 150px;
    height: 150px;
    color: #2e032c;
}
h1{
    color: var(--primary);
}
h2{
    color: var(--primary);
}


.fa-bullseye{
    color: var(--primary);
}
.fa-eye{
    color: var(--primary);
}
.fa-hand-holding-heart{
    color: var(--primary);
}
.card-body .icon-circle{
    background-color: var(--primary);
    color: var(--light);
}
.container .row .card .icon-circle{
    background-color: var(--primary);
    color: var(--light);
}

/*secction de galeria*/
.gallery-item {
    overflow: hidden;
}
.gallery-item img {
    transition: transform 0.3s ease;
}
.gallery-item:hover img {
    transform: scale(1.1);
}
.gallery-title {
    transition: opacity 0.3s ease;
    opacity: 0;
}
.gallery-item:hover .gallery-title {
    opacity: 1;
}