@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    background-color: #ffebe8;
    color: #c0392b;
    text-align: center;
}

header {
    padding: 2rem 1rem;
    background-color: #f8a5a5;
    color: white;
    text-align: center;
    border-radius: 0 0 50px 50px;
    font-size: 1.5rem;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.logo-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
}

.description {
    max-width: 800px;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tracks-section {
    max-width: 900px;
    margin: 0rem auto;
    padding: 1rem;
} h2 {
    margin-bottom: 1rem;
}

.slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.track {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-in-out;
}

.cover {
    width: 200px;
    height: 200px;
    border-radius: 25px;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.cover:hover {
    transform: scale(1.05);
}

iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    margin-top: 1rem;
    border-radius: 15px;
    display: none;
}

.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #f8a5a5;
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.prev:hover, .next:hover {
    background: #f69b9b;
    transform: translateY(-50%) scale(1.1);
}

.prev { 
    left: 10px; 
}

.next { 
    right: 10px; 
}

.contact-section {
    margin-bottom: 0.5rem;
}

footer {
    background-color: #f8a5a5;
    color: white;
    padding: 1rem;
    border-radius: 50px 50px 0 0;
    margin-top: 4rem;
} p {
    margin-top: 0.5rem;
}