
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', sans-serif;
    background-color: #f7f3f0;
    color: #333;
    line-height: 1.6;
}

header {
    background-color: #f7c6c7;
    padding: 20px 0;
    text-align: center;
}

header .logo img {
    width: 150px;
}

nav ul {
    list-style: none;
    text-align: center;
    margin-top: 10px;
}

nav ul li {
    display: inline-block;
    margin: 0 20px;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #c6786f;
}

.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('hero-bg.jpg') no-repeat center center/cover;
    color: #fff;
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.hero .btn {
    background: #c6786f;
    color: #fff;
    padding: 12px 25px;
    text-transform: uppercase;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.hero .btn:hover {
    background: #9e5d57;
}

section {
    padding: 60px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #c6786f;
}

.artist-grid, .release-grid, .news-grid, .tour-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.item {
    background: #fff;
    border: 1px solid #ddd;
    padding: 20px;
    border-radius: 10px;
    width: 70%; /* Adjust container size to 70% */
    margin: 0 auto; /* Center the container */
    transition: transform 0.3s;
}

.item img {
    width: 100%; /* Adjust album cover size to fit the container */
    border-radius: 10px;
    margin-bottom: 15px;
}

.item h3 {
    margin-top: 10px;
    font-size: 1.4rem;
    color: #c6786f;
}

.item:hover {
    transform: translateY(-10px);
}

footer {
    background-color: #f7c6c7;
    color: #333;
    text-align: center;
    padding: 20px;
    margin-top: 50px;
}

footer p {
    margin-bottom: 10px;
}

footer .socials {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

footer .socials li {
    margin: 0 10px;
}

footer .socials li a img {
    width: 30px;
    filter: invert(100%);
}
