@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    overflow-y: scroll;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to right, #ff6a9b, #b43b9b, #4a2c7f);
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

header {
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s, border-bottom 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: #ffeb3b;
    border-bottom: 2px solid #ffeb3b;
}

main {
    padding: 20px;
}

h1, h2, h3, h4 {
    text-align: center;
}

.intro, .backstory, .album-cover, .listen {
    margin-bottom: 20px;
}

.album-info {
    margin: 20px 0;
}

.tracklist {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
    padding: 20px;
}

.album-art .grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 20px;
}

.album-art .grid-item {
    text-align: center;
}

.album-art .grid-item img {
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.album-art .grid-item img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.album-info{
    text-align: center;
}

.merch {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.merch-header {
    text-align: left;
    max-width: 400px; 
}

.merch-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.merch-header p {
    font-size: 1rem;
    line-height: 1.5;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.merch .item {
    text-align: center;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 15px;
    background-color: rgba(0, 0, 0, 0.7);
    transition: transform 0.3s, box-shadow 0.3s;
}

.merch .item img {
    width: 100%;
    max-width: 150px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.merch .item:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.add-to-cart {
    background-color: #ff6a9b;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.add-to-cart:hover {
    background-color: #e54a79;
}

button {
    font-size: 16px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.img-responsive {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.img-responsive:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.img-album-cover {
    width: 300px;
    height: auto;
}

.img-merch-item {
    width: 200px;
    height: auto;
}

.album-cover-frame {
    width: 1080px;
    height: 1080px;
    border: 10px solid #fff;
    margin: 0 auto;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.album-cover-frame img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
}

.flexbox-container {
    border: 2px solid #fff;
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 1200px;
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section-line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    margin: 30px 0;
}

.flex-item {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    overflow: hidden;
    background-color: #222;
    color: #fff;
    padding: 15px;
}

.audio-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

audio {
    max-width: 100%;
    width: 400px;
}
