/* General Body Styling */
body {
    font-family: 'League Spartan', sans-serif;
    background-color: #3A3A42;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #e6e1e5;
}

/* Header Styling */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: relative;
    z-index: 100;
    background-color: #2a2a2f;
    color: #e6e1e5;
}


#logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

#logo-img {
    width: 25%; /* Ajusta a gusto */
    height: auto;
}

/* Button inside header */
.pill-button {
    display: inline-block;
    padding: 12px 40px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: #e6e1e5;
    background-color: #ed07ac;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.pill-button:hover {
    background-color: #bb0888;
    transform: scale(1.025);
}

/* Main Title Styling */
h1 {
    font-size: 200%;
    color: #ed07ac;
    padding: 100px;
    padding-top: 6%;
    padding-bottom: 4%;
}

/* Container for Boxes */
.box-container {
    display: flex;
    justify-content: center;
    gap: 30px;
}

/* Styling for Boxes */
.box {
    background-color: #e6e1e5;
    width: 400px;
    height: 200px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px;
    transition: transform 0.5s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.box:hover {
    transform: scale(1.025);
}

.box-img {
    width: 80%; /* Adjust size of the logo inside the box */
    height: 80%;
}

.box-img2 {
    height: 40%;
    width: 80%; /* Adjust size of the logo inside the box */
}

/* Asegura que los links dentro de las cajas no afecten las imágenes */
.box a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Elimina bordes o estilos heredados de los <a> */
.box a img {
    width: 80%;
    height: auto;
    object-fit: contain;
    display: block;
}


.box p {
    font-size: 24px;
    color: #3A3A42;
    font-weight: bold;
}

.site-footer {
    background-color: #2a2a2f;
    color: #e6e1e5;
    padding: 30px 20px;
    font-family: 'Poppins', sans-serif;
    margin-top: 20%;
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Logo a la izq, links a la der */
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    width: 100px;
    height: auto;
}

.footer-info {
    text-align: right;
}


.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e6e1e5;
    text-decoration: none;
    margin: 10px;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-copy {
    font-size: 12px;
    color: #aaa;
}




/* Media Queries for Mobile */
@media (max-width: 1000px) {
    .site-header {
        flex-direction: row; /* mantenemos en línea */
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
    }
    
    /* Make the logo smaller for mobile */
    #logo-img {
        width: 50%; /* Reduce the size of the logo on smaller screens */
        z-index: 1;
    }

    /* Button Styling */
    .pill-button {
        display: inline-block;
        padding: 12px 40px;
        font-size: 10px;
        font-family: 'Poppins', sans-serif;
        color: #e6e1e5;
        background-color: #ed07ac;
        border-radius: 50px;
        white-space: nowrap;
        top: 40px; /* Match the top value of the logo */
        left: auto;
        z-index: 10;
    }

    /* Adjust the main title font size */
    h1 {
        font-size: 150%; /* Smaller title on mobile */
        padding-top: 20%; /* Less padding */
        padding-bottom: 3%;
    }

    /* Adjust box container for mobile */
    .box-container {
        flex-direction: column; /* Stack the boxes vertically on mobile */
        gap: 20px;
        padding-left: 15%;
    }

    /* Adjust the size of the boxes */
    .box {
        width: 70%;   
        height: 100px;
    }

    .box-img {
        width: 80%; 
        height: 100%;
    }
    
    .box-img2 {
        height: 40%;
        width: 75%; 
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-links span {
        display: none;
    }
}

@media (max-width: 10px) {

    /* Further reduce size of boxes on very small screens */
    .box {
        width: 80%; /* Make the box full width */
        height: 180px; /* Reduce height */
    }
}

