@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 120px; 
    background-color: #ff007f;
    display: flex;
    flex-direction: column; 
    align-items: center; 
}

.about h2 {
    font-family: 'Marcellus SC', serif;
    margin: 80;
    text-align: center; 
    position: relative; 
    transform: translateX(115px); 
	font-size: 3em;
}

.about-content {
    display: flex; 
    flex-direction: row; 
    align-items: center; 
    gap: 35px; 
    max-width: 1200px; 
    width: 100%; 
    justify-content: center; 

}

.about h2 {
    margin-bottom: -80px; 
}

.about img {
    width: 450px;
    height: auto;
    border-radius: 0%;
}

.about p {
    text-align: left;
    font-family: 'Marcellus', serif;
    max-width: 400px;
    margin: 0;
}

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

.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%); 
}

.contact {
    position: relative;
    background-image: url('images/contact.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #ff007f;
    color: #fff;
    min-height: 100vh;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.contact h2 {
    font-family: 'Marcellus SC', serif;
    margin-bottom: 40px;
    font-size: 3em;
    transform: translateX(-380px);
}

.contact form {
    display: flex;
    flex-direction: column;
    transform: translateX(-380px);
    gap: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px;
    max-width: 600px; 
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box; 
}

.contact form input,
.contact form textarea {
    width: 100%;
    padding: 20px;
    border: 2px solid transparent; 
    border-radius: 0; 
    font-size: 1.5em;
    box-sizing: border-box;
}

.contact form textarea {
    height: 200px;
    resize: vertical;
}

.contact form button {
    background-color: #000;
    color: #fff;
    padding: 20px 40px;
    border: 2px solid #000;
    border-radius: 0;
    font-size: 1.5em;
    cursor: pointer;
}

.contact form button:hover {
    background-color: #333;
}

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







