body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(#4a5ccf, #6f7bd8);
    color: #fff;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.nav {
    list-style: none;
    display: flex;
    gap: 15px;
}

.nav a {
    text-decoration: none;
    background: #ff9e94;
    padding: 8px 14px;
    border-radius: 20px;
    color: #000;
    font-size: 12px;
}
.hero {
    padding: 80px 40px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
     gap: 40px;
}

.hero-text {
    max-width: 500px;
}

.hero-image {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.hero-image img {
    width: 200%;
    max-width: 900px; 
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    object-fit: cover;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-text span {
    font-size: 28px;
}

.artists {
    background: #eee;
    color: #000;
    text-align: center;
    padding: 60px 20px;
}

.artist-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.artist img {
    width: 180px;
    height: 180px;
    border-radius: 12px;
}

.btn {
    background: #4a5ccf;
    color: #fff;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
}

.info {
    padding: 60px 20px;
    text-align: center;
}

.info-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: #fff;
    color: #000;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
}

.card a {
    display: block;
    margin-top: 10px;
}

.signup {
    background: #eee;
    color: #000;
    text-align: center;
    padding: 60px 20px;
}

.form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

input {
    padding: 10px;
    width: 250px;
    border-radius: 20px;
    border: none;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    background: #ff9e94;
}

footer {
    text-align: center;
    padding: 30px;
}

.footer-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0;
}

.footer-nav a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
}