/* body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    background-color: rgba(128, 128, 128, 0.56);
}
nav {
    background-color: #8b7d6b;
    padding: 10px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: large;
}




h1, h2 {
    background-color: #6c6b8bd4;
    text-align: center;
    color: white;
    width: 100%;
    padding: 10px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.albums {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.album-item {
    text-align: center;
    width: 200px;
}



.album-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

footer {
    background-color: gray;
    text-align: center;
    color: white;
    padding: auto;
    width: 100%;
} */

/* ---------- Global Styles ---------- */
body {
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    background: linear-gradient(135deg, #e0dcd7, #bcb3a4);
    color: #333;
    line-height: 1.6;
    transition: background 0.5s ease;
}

/* ---------- Navigation ---------- */
nav {
    background-color: #8b7d6b;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
    padding: 6px 12px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background: #fff;
    color: #8b7d6b;
    transform: scale(1.1);
}

/* ---------- Headings ---------- */
h1, h2 {
    background-color: rgba(108, 107, 139, 0.85);
    text-align: center;
    color: white;
    width: 100%;
    padding: 15px;
    font-family: 'Lucida Sans', 'Lucida Grande', sans-serif;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    border-radius: 5px;
}

/* ---------- Albums Grid ---------- */
.albums {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 30px 10px;
}

/* ---------- Album Cards ---------- */
.album-item {
    position: relative;
    width: 220px;
    background: rgba(255,255,255,0.9);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.album-item:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.album-item img {
    width: 100%;
    display: block;
    border-radius: 15px 15px 0 0;
    transition: transform 0.3s ease;
}

.album-item img:hover {
    transform: scale(1.05);
}

/* ---------- Album Info Overlay ---------- */
.album-info {
    padding: 10px;
    text-align: center;
}

.album-info h3 {
    margin: 10px 0 5px;
    font-size: 1.2rem;
    color: #333;
}

.album-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

/* ---------- Footer ---------- */
footer {
    background-color: #555;
    color: white;
    text-align: center;
    padding: 20px 10px;
}

footer a {
    color: #ffdd57;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #fff;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
    .albums {
        flex-direction: column;
        align-items: center;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 10px 0;
    }
}
