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

/* Album Image Animations */
@keyframes albumFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.02);
    }
}

@keyframes albumPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.95;
        transform: scale(1.01);
    }
}

@keyframes albumRotate {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(1deg);
    }
    50% {
        transform: rotate(0deg);
    }
    75% {
        transform: rotate(-1deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes albumGlow {
    0%, 100% {
        box-shadow: 0 0 0px rgba(30, 58, 95, 0);
    }
    50% {
        box-shadow: 0 0 15px rgba(30, 58, 95, 0.3);
    }
}

body {
    font-family: 'Righteous', cursive;
    background: #faf8f0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100' height='100' filter='url(%23noise)' opacity='0.4'/%3E%3C/svg%3E"),
        repeating-linear-gradient(0deg, transparent, transparent 1px, rgba(0,0,0,0.03) 1px, rgba(0,0,0,0.03) 2px),
        repeating-linear-gradient(90deg, transparent, transparent 1px, rgba(0,0,0,0.03) 1px, rgba(0,0,0,0.03) 2px),
        radial-gradient(circle at 20% 30%, rgba(255,255,240,0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255,248,220,0.15) 0%, transparent 50%);
    background-size: 200px 200px, 4px 4px, 4px 4px, 100% 100%, 100% 100%;
    color: #333;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(0,0,0,0.01) 2px, rgba(0,0,0,0.01) 4px),
        repeating-linear-gradient(-45deg, transparent, transparent 2px, rgba(0,0,0,0.01) 2px, rgba(0,0,0,0.01) 4px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

header {
    background: #1e3a5f;
    color: #fff;
    padding: 3em 0;
    text-align: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 3px solid rgba(255, 255, 255, 0.1);
}

.header-content h1 {
    font-family: 'Righteous', cursive;
    font-size: 4em;
    font-weight: 400;
    margin: 0;
    letter-spacing: 4px;
    color: #fff;
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.header-content h1 .simons-text {
    font-family: 'Righteous', cursive;
    font-size: 1em;
    text-transform: none;
    letter-spacing: 4px;
}

main {
    padding: 4em 2em;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#artwork-and-releases h2 {
    text-align: center;
    color: #1e3a5f;
    font-family: 'Righteous', cursive;
    font-size: 3em;
    margin-bottom: 2em;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 400;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5em;
    margin-top: 2em;
}

.album-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 2px solid rgba(0, 0, 0, 0.1);
    position: relative;
}

.album-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    border-color: rgba(30, 58, 95, 0.3);
}

.album-artwork {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #faf8f0;
    overflow: hidden;
    z-index: 2;
}

.album-artwork img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

/* Different animations for each album */
.album-card:nth-child(1) .album-artwork img {
    animation-name: albumFloat;
    animation-delay: 0s;
}

.album-card:nth-child(2) .album-artwork img {
    animation-name: albumPulse;
    animation-delay: 0.5s;
}

.album-card:nth-child(3) .album-artwork img {
    animation-name: albumRotate;
    animation-delay: 1s;
}

.album-card:nth-child(4) .album-artwork img {
    animation-name: albumFloat;
    animation-delay: 1.5s;
}

.album-card:nth-child(5) .album-artwork img {
    animation-name: albumPulse;
    animation-delay: 2s;
}

.album-card:nth-child(6) .album-artwork img {
    animation-name: albumRotate;
    animation-delay: 2.5s;
}

.placeholder-artwork {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #faf8f0;
    color: #1e3a5f;
    font-size: 1.2em;
    font-weight: 600;
    font-family: 'Righteous', cursive;
    z-index: 1;
}

.album-info {
    padding: 1.5em;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    background: #fff;
}

.album-info h3 {
    font-family: 'Righteous', cursive;
    font-size: 1.6em;
    margin-bottom: 1em;
    color: #1e3a5f;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.album-link {
    display: inline-block;
    padding: 1em 2.5em;
    background: #1e3a5f;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Righteous', cursive;
    font-weight: 400;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid #1e3a5f;
}

.album-link:hover {
    background: #2a4f7a;
    border-color: #2a4f7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

footer {
    background: #1e3a5f;
    color: #fff;
    padding: 2em 0;
    text-align: center;
    margin-top: 4em;
    position: relative;
    z-index: 2;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    border-top: 3px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-family: 'Righteous', cursive;
    opacity: 0.9;
    text-shadow: none;
    font-size: 1.1em;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.5em;
    }

    main {
        padding: 2em 1em;
    }

    #artwork-and-releases h2 {
        font-size: 2em;
    }

    .album-grid {
        grid-template-columns: 1fr;
        gap: 2em;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2em;
        letter-spacing: 2px;
    }

    .album-info h3 {
        font-size: 1.3em;
    }

    .album-link {
        padding: 0.8em 2em;
        font-size: 0.8em;
    }
}
