/* Import Merriweather Sans Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');

/* CSS Variables */
:root {
    --main-bg-color: #000000;
    --main-text-color: #fff;
    --accent-color: #66ff96;
    --accent-hover-color: #9633c9;
    --text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.45);
    --title-color: #ffffff;
    /* 26FF9C */
}

/* Preload Background Image */
.link-preload {
    display: none;
    background-image: url('../imagenes/FaunaFuturaBackground.gif');
}

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "Space Grotesk", serif;
    font-size: 16px;
    line-height: 1.5;
    color: #fff;
    background-color: #000000;
}


/* Background Image */
.background-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    opacity: 1;
    background-image: url('../imagenes/FaunaFuturaBackground.gif');
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
}

.sello-title,
.redes-baussy {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--title-color);
}

.icons-section {
    padding-top: 20px;
    padding-bottom: 20px;
}

.social-media-section {
    padding-bottom: 20px;
}

.somos {
    padding-top: 20px;
    padding-bottom: 20px;
}

.mas-info {
    padding-top: 40px;
}

.footertext {
    padding-top: 20px;
}

/* Responsive Background Image for Small Screens */
@media (max-width: 768px) {
    .background-image {
        background-position: top left;
    }
}

/* Content Styles */
.content {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 2);
    /*  0.45 */
}

.white-text a {
    color: var(--accent-color);
    text-decoration-color: var(--accent-color);
}

.white-text a:hover {
    color: var(--accent-hover-color);
    text-decoration-color: var(--accent-color);
}

.header-image {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}




.header-image img:hover {
    opacity: 0.4;
}

.header-image {
    transition: opacity 0.5s;
}

.header-image:hover {
    opacity: 0.4;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

/*****************************/

.title {
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--title-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.45);
    animation: appear 2s forwards;
}


@keyframes appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.text {
    font-size: 18px;
    color: #fff;
}

/* Link Image Overlay Effect */
a.content-image {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: auto;
}

a.content-image::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 0%;
    background-color: var(--accent-color);
    mix-blend-mode: color;
    opacity: 0;
    transition: opacity 0.5s;
}

a.content-image:hover::before {
    width: 100%;
    /* Change width to 100% on hover */
    height: 99.5%;
    /* Change height to 100% on hover */
    opacity: 0.6;
    /* Adjust opacity on hover */
}

/* Responsive Styles 768px*/
@media (max-width: 768px) {
    .content {
        margin: 20px auto;
        padding: 10px;
    }

    .title {
        font-size: 24px;
    }

    .text {
        font-size: 16px;
    }

    .header-image {
        margin-top: 10px;
        /* Add space above the header image */
    }

    a.header-image {
        margin-top: 10px;
        /* Add space above the header image */
    }



    a.content-image {
        position: relative;
        display: inline-block;
        overflow: hidden;
        width: auto;
    }

    a.content-image::before {
        content: '';
        position: absolute;
        width: 70%;
        /* 70% */
        height: 0%;
        background-color: var(var(--accent-color));
        mix-blend-mode: multiply;
        opacity: 0;
        transition: opacity 0.5s;
    }

    a.content-image:hover::before {
        width: 70%;
        /* Change width to 100% on hover */
        height: 98%;
        /* Change height to 100% on hover */
        opacity: 0.6;
        /* Adjust opacity on hover */
    }

}

@media (max-width: 480px) {
    .content {
        margin: 10px auto;
        padding: 5px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .title {
        font-size: 26px;
    }

    .text {
        font-size: 14px;
    }

    .header-image {
        margin-top: 10px;
        /* Add space above the header image */
    }

    .icons-section {
        padding-top: 5px;
        padding-bottom: 5px;
    }
}

a {
    text-decoration: none;
    color: var(--accent-color);
}

a:visited {
    color: var(--accent-color);
}

a:hover {
    color: var(--accent-hover-color);
}

.social-media img:hover {
    opacity: 0.4;
}

.social-icon {
    transition: opacity 0.5s;
}

.social-icon:hover {
    opacity: 0.4;
}

@keyframes fade {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0.4;
    }
}

.content-image {
    width: 100%;
    /*60 */
}

/* Media query for cellphone versions */
@media only screen and (max-width: 768px) {
    .content-image {
        width: 100%;
    }
}
