@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;
}

.slide-container {
    width: 100vw;
    height: 60;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.image-container {
    width: 10vw;
    height: 50vh;
    display: flex;
    animation: slideAnimation 9s infinite ease-in-out;
}

.slider-image {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

.button-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-button {
    display: inline-block;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-button:hover {
    background-color: #888;
}

@keyframes slideAnimation {
    0% { transform: translateX(0); }
    33.33% { transform: translateX(-100vw); }
    66.66% { transform: translateX(-200vw); }
    100% { transform: translateX(0); }
}

.album-button {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #8BABCB;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.album-button:hover {
    background-color: #45a049;
    transform: scale(1.05);
}
.albums-section {
    padding: 90px;
    text-align: center;
    background-color: #547084; 
}

.albums-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #333;
}

.albums-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; 
}

.album {
    width: 320px;
    text-align: center;
    background-color: #d8ece6;
    padding: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.album img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.album h3 {
    font-size: 18px;
    color: #333;
    margin: 5px 0;
}

.album p {
    font-size: 14px;
    color: #666;
}


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) {
    .album-container {
        gap: 20px;
    }

    .album-card {
        width: 200px;
    }
}

@media (max-width: 800px) {
    .site-header {
        flex-direction: column;
        align-items: center;
    }

    .navigation {
        flex-direction: column;
        gap: 15px;
    }

    .album-container {
        gap: 15px;
    }

    .album-card {
        width: 45%;
    }
}

@media (max-width: 600px) {
    .album-container {
        flex-direction: column;
        align-items: center;
    }

    .album-card {
        width: 80%;
    }

    footer .footer-col {
        width: 100%;
    }
}