* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fafafa;
}

h1, h2, h3 {
    color: orang;
}

header {
    background-color: black;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header .logo img {
    max-width: 150px;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

header nav ul li {
    margin: 0 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    color: #f39c12;
}

.hero {
    background: url('band\ picture.jpg') no-repeat center/cover;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
}

.hero p {
    font-size: 1.5rem;
    margin: 10px 0;
}

.about {
    padding: 50px 20px;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555;
}

.members {
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.members h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.member-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.member {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
}

.member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 20px;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.member-info p {
    font-size: 1rem;
    color: #777;
}

footer {
    background-color: black;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

footer ul li {
    margin: 0 10px;
}

footer ul li a {
    color: #fff;
    text-decoration: none;
}

footer ul li a:hover {
    color: #f39c12;
}

/* Responsive Design */
@media (max-width: 1024px) {
    header nav ul {
        flex-direction: column;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .members h2 {
        font-size: 2rem;
    }

    .member img {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }

    .about p {
        font-size: 1rem;
    }

    .members h2 {
        font-size: 1.8rem;
    }

    .member-info h3 {
        font-size: 1.3rem;
    }

    footer ul {
        flex-direction: column;
    }
}
