body {
    font-family: "Montserrat", serif;
    text-align: center;
    margin-top: 30px;
    color: #fff;
    background-color: #305ba0; 
    background-image: url('resources/fondo.png');
    background-size: contain;
    background-repeat: repeat; 
    background-blend-mode: screen; 
    height: 100vh;
    font-optical-sizing: auto;
    font-weight: lighter;
    font-style: normal;
}

h1 {
    background-color: #4a67a4;
    border-radius: 10px;
    width: 380px;
    justify-self: center;
}

.logo {
    width: 150px;
    height: auto;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.5)); 
    margin-bottom: 30px;
    background-color: #4a67a4;
    border-radius: 30px;
}


button {
    display: block;
    width: 250px;
    margin: 20px auto;
    padding: 15px;
    background-color: #5474b9;
    color: #353935;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

button:hover {
    background-color: #173b7c;
    color: #F9F6EE;
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
/* Social buttons container */
.social-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: -5px; /* Space between buttons */
    margin-top: -15px;
}

/* Social button style */
.social-btn {
    width: 65px; /* Square size */
    height: 65px;
    background-color: #fff; /* Background color */
    border: none; /* Remove default border */
    border-radius: 20px; /* Slight rounding for aesthetics */
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-left: 13px;
    margin-right: 13px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Light shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.social-btn:hover {
    transform: scale(1.1); /* Slightly enlarge */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

/* Logo inside the button */
.social-logo {
    width: 40px; /* Adjust size of the logo */
    height: 40px;
}


.special-btn {
    background-color: #173b7c;
    color: #F9F6EE;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 20px;
}
/* Botón de CUPÓN 30% */
.cupon-btn {
    display: block;
    width: 250px;
    margin: 20px auto;
    padding: 15px 20px;
    background-color: #305ba0; /* Azul vistoso */
    color: white;
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cupon-btn:hover {
    background-color: #0056b3; /* Azul más oscuro en hover */
    transform: translateY(-3px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}

.cupon-btn:active {
    transform: translateY(0);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

/* Media query for desktop screens */
@media (min-width: 768px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr); /* Keep 2 columns as in mobile */
        gap: 10px; /* Maintain the same gap */
        padding: 10px;
    }

    .album-item {
        width: 140px; /* Ensure the same width as mobile */
        height: 350px; /* Maintain the same height */
    }

    .album-item h2 {
        margin-top: 10px; /* Match mobile spacing */
        margin-bottom: 5px;
    }

    .album-item p {
        margin-top: 5px;
        margin-bottom: 5px;
        line-height: 1.2; /* Keep consistent spacing */
    }

    .album-cover {
        width: 100%;
        height: 150px; /* Same as mobile */
        object-fit: cover;
        border-radius: 5px;
    }
}
