:root {
    --cream: #f2dfc0;
    --navy: #0f3d68;
    --orange: #f28c45;
    --teal: #6f9a98;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream);
    color: var(--navy);
}

.site-header {
    text-align: center;
    padding: 60px 20px 40px;
}

.logo {
    max-width: 320px;
    width: 80%;
    margin-bottom: 20px;
}

h1 {
    font-size: 48px;
    margin: 10px 0;
}

h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    line-height: 1.6;
}

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

section {
    margin: 70px 0;
    text-align: center;
}

.intro p,
.discogs-section p,
.visit p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.button {
    display: inline-block;
    margin-top: 25px;
    padding: 14px 28px;
    background: var(--navy);
    color: var(--cream);
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
}

.button:hover {
    background: var(--orange);
    color: #fff;
}

.cover-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 25px;
    margin-top: 35px;
}

.cover-card {
    text-decoration: none;
    color: var(--navy);
}

.cover-card img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.2s ease;
}

.cover-card:hover img {
    transform: scale(1.04);
}

.cover-card span {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    font-size: 15px;
}

footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
}

.hours{
    max-width:450px;
    margin:40px auto;
}

.hours table{
    width:100%;
    border-collapse:collapse;
    font-size:17px;
}

.hours td{
    padding:10px 0;
    border-bottom:1px solid rgba(15,61,104,.2);
}

.hours td:last-child{
    text-align:right;
    font-weight:bold;
}

.hours h3{
    margin-bottom:20px;
}
.festival-notice{

    background:#0f3d68;

    color:#f2dfc0;

    padding:25px;

    border-radius:12px;

    margin:40px auto;

    max-width:700px;

    text-align:center;

}

.festival-notice h3{

    margin-top:0;

    margin-bottom:15px;

    font-size:28px;

}

.festival-notice p{

    margin:0;

    font-size:18px;

    line-height:1.7;

}
