@charset "UTF-8";
/* style.css */

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #000;
}

header .logo img {
    height: 75px;
    width: auto;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    text-decoration: none;
    color: #fff;
    font-family: 'Marcellus SC', serif;
}

.hero {
    position: relative;
    text-align: center;
    color: white;
}

.hero img {
    width: 100%;
    height: auto;
}

.hero h1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cantata One', serif;
    font-size: 4rem;
}

.hero .subtitle {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Marcellus', serif;
    font-size: 1.5rem;
}

.about {
    padding: 120px 20px;
    background-color: #ff007f;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about h2 {
    font-family: 'Marcellus SC', serif;
    text-align: center;
	font-size: 3em;
    margin-bottom: 40px;
}

.about-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.about-content img {
    width: 100%;
    max-width: 400px;
    margin-bottom: 20px;
}

.about-content p {
    text-align: justify;
    line-height: 1.6;
}

.discography {
    padding: 50px;
    background-color: #000;
    text-align: center;
}

.discography h2 {
    font-family: 'Marcellus SC', serif;
    margin-bottom: 30px;
	font-size: 3em;
}

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

.discography .album {
    width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}

.discography .album img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease; 
}

.discography .album:hover img {
    transform: scale(1.1); 
}

.discography .album:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); 
}

.discography .album p {
    font-family: 'Inter', sans-serif;
    color: #808080;
}

.albums {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.album {
    text-align: center;
    width: calc(16.66% - 20px);
    transition: transform 0.3s ease;
}

.album img {
    width: 100%;
    height: auto;
}

.album p {
    margin-top: 10px;
    color: gray;
}

.album:hover {
    transform: scale(1.2);
}

.gallery {
    padding: 50px;
    background-color: #fff;
    color: #000;
    text-align: center;
}

.gallery h2 {
    font-family: 'Marcellus SC', serif;
    margin-bottom: 30px;
    font-size: 3em;
}

.gallery .photos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.gallery .photos img {
    width: calc(33.333% - 20px);
    height: auto;
    object-fit: cover;
    transition: filter 0.3s ease;
    filter: saturate(100%);
}

.gallery .photos img:hover {
    filter: saturate(150%);
}

@media (max-width: 768px) {
    .gallery .photos img {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .gallery .photos img {
        width: 100%; 
    }
}

.contact {
    padding: 60px 20px;
    background: url('images/contact.jpg') no-repeat center center;
    background-size: cover;
    color: white;
}

.contact h2 {
    font-family: 'Marcellus SC', serif;
    text-align: center;
	font-size: 3em;
    margin-bottom: 40px;
}

.contact form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.contact input,
.contact textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact button {
    padding: 10px 20px;
    border: none;
    background-color: #ff007f;
    color: white;
    cursor: pointer;
}

footer {
    padding: 20px;
    background-color: #000;
    text-align: center;
    color: #fff;
    font-family: 'Marcellus SC', serif; 
}

footer .footer-copy {
    font-family: 'Inter', sans-serif; 
    font-size: 1rem; 
    margin-top: 10px; 
}

footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px; 
    margin: 20px 0; 
}

footer .social-icons a {
    display: flex;
    align-items: center; 
}

footer .social-icons img {
    width: 24px; 
    height: auto;
}

footer a {
    text-decoration: none;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
    }

    header nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

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

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

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

    .contact form {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .album {
        width: calc(33.33% - 20px); 
    }

    .photos img {
        width: calc(50% - 20px); 
    }
}











