/* styles.css */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.video-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('placeholder.PNG') center center no-repeat;
    background-size: cover;
    z-index: -1;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none; /* Ocultar el video inicialmente */
}

.content-saltillo {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blank-space {
    width: 200px;
}

.texto1, .texto2 {
    font-size: 80px;
    font-family: "Josefin Sans", sans-serif;
    font-weight: 100;
    letter-spacing: 10px;
}

footer {
    position: fixed;
    z-index: 1;
    bottom: 0;
    width: 100%;
    height: 100px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: height 0.3s;
}

.footer-content {
    text-align: center;
}

.contact-icon {
    color: white;
    text-decoration: none;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    opacity: 0.5;
}

.emailtext {
    font-size: 18px;
    font-family: "Josefin Sans", sans-serif;
    opacity: 0.8;
    font-weight: 100;
    color: white;
    text-decoration: none;
    margin-bottom: 10px;
}

.emailtext:hover {
    color: rgb(173, 99, 241);
}

@media (max-width: 1024px) {
    footer {
        height: 110px;
    }

    .contact-icon {
        font-size: 40px;
    }

    .emailtext {
        font-size: 35px;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    footer {
        height: 100px;
    }

    .contact-icon {
        font-size: 30px;
    }

    .emailtext {
        font-size: 30px;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 5px;
    }

    .content h1 {
        font-size: 1.2em;
    }

    .content p {
        font-size: 0.9em;
    }

    footer {
        height: 70px;
    }

    .contact-icon {
        font-size: 20px;
    }

    .emailtext {
        font-size: 20px;
    }
}
