@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@300..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Parkinsans;
    background-color: #547084;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #8CA3B0;
    padding: 10px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 60px;
    height: auto;
    margin-right: 10px;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navigation a {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #E2E8F0;
}

.user-icon {
    display: flex;
    align-items: center;
}

.user-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
}
.back-button {
    background-color: #8CA3B0;
    color: white;
    font-size: 16px;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 20px; 
    display: inline-block;
    transition: background-color 0.3s ease;
}

.back-button:hover {
    background-color: #547084;
}

.album-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
}
.album-page {
    padding: 50px;
    background-color: #547084;
    display: flex;
    justify-content: center;
    align-items: center;
}

.album-container {
    display: flex;
    gap: 45px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 80%;
}

.album-image img {
    width: 300px;
    height: auto;
    border-radius: 8px;
}

.album-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.album-details h1 {
    font-size: 28px;
    color: #333;
}

.album-details h3, .album-details p {
    font-size: 16px;
    color: #666;
}

.buy-button {
    padding: 10px 20px;
    background-color: #8CA3B0;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #547084;
}

footer {
    background-color: #B5E3D9;
    color: 547084;
    padding: 50px 0;
    margin-top: auto; 
}

.container-footer {
    max-width: 1400px;
    padding: 0 4%;
    margin: 0 auto;
}

.row-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-col {
    width: 25%;
    margin-bottom: 20px;
}

.footer-col h4 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin: 10px 0;
    display: block;
}

.footer-col ul li a:hover {
    padding-left: 10px;
    color: #cecdcd;
}

.form-sub input {
    width: calc(100% - 20px);
    padding: 10px;
    border: 1px solid white;
    background-color: #53c5ac;
    color: white;
    outline: none;
    margin-bottom: 10px;
}

.form-sub button {
    width: 100%;
    padding: 10px;
    border: none;
    background-color: white;
    color: #729aa6;
    cursor: pointer;
    font-weight: bold;
}

.medias-socias a img {
    height: 24px;
    width: 24px;
    object-fit: contain;
}

@media (max-width: 800px) {
    .footer-col {
        width: 50%;
    }
}

@media (max-width: 600px) {
    .footer-col {
        width: 100%;
    }
}
@media (max-width: 1200px) {
    .site-header {
        padding: 10px 15px;
    }

    .navigation {
        gap: 20px;
    }

    .album-detail {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .album-detail img {
        width: 80%;
        max-width: 350px;
        margin: 10px 0;
    }

    .album-detail h1 {
        font-size: 24px;
    }

    .album-detail p {
        font-size: 14px;
    }

    .album-button {
        font-size: 14px;
    }
}

@media (max-width: 800px) {
    .site-header {
        flex-direction: column;
        align-items: center;
    }

    .navigation {
        flex-direction: column;
        gap: 15px;
    }

    .album-detail {
        padding: 20px 10px;
    }

    .album-detail img {
        width: 90%;
        max-width: 280px;
    }

    .album-detail h1 {
        font-size: 22px;
    }

    .album-detail p {
        font-size: 13px;
    }

    .album-button {
        width: 100%;
        font-size: 16px;
    }

    footer .footer-col {
        width: 50%;
    }
}

@media (max-width: 600px) {
    .footer-col {
        width: 100%;
    }

    .album-button {
        width: 100%;
    }

    .album-detail img {
        width: 100%;
        max-width: 100%;
    }
}