body {
    font-family: Arial, sans-serif;
}

.cover-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
}

.cover {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    background: #ddd;
    cursor: grab;
}

.cover img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    user-select: none;
}




/* search page css start here */
.hero {
    position: relative;
    height: 55vh;
    background: url('https://images.unsplash.com/photo-1511671782779-c97d3d27a1d4') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* SEARCH BOX */
.search-box {
    margin-top: 25px;
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 15px;
    border-radius: 8px;
    border: none;
    font-size: 1rem;
    width: 78%;
}

.search-box button {
    padding: 15px 25px;
    background: #ff4d4d;
    border: none;
    color: #fff;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
}

.search-box button:hover {
    background: #e84343;
}

/* RESULTS */
.results {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.results h2 {
    margin-bottom: 25px;
    font-size: 1.8rem;
}

/* BAND GRID */
.band-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 25px;
}

.band-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.band-card:hover {
    transform: translateY(-6px);
}

.band-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.band-info {
    padding: 15px;
}

.band-info h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.band-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.band-info a {
    text-decoration: none;
    color: #ff4d4d;
    font-weight: 600;
}


/* search page css end here */
