@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Inter:wght@300;400;500&display=swap');

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

:root {
    --deep-ink: #1a1f36;
    --soft-cream: #f8f5f0;
    --warm-stone: #e8e2d9;
    --muted-rose: #c9a99a;
    --faded-sage: #9aab9f;
    --light-grey: #b8b5b0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: var(--deep-ink);
    background-color: var(--soft-cream);
    font-size: 16px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

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

.site-header {
    padding: 2rem 0;
    border-bottom: 1px solid var(--warm-stone);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
}

.logo-link svg {
    height: 32px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.main-nav a:hover {
    opacity: 0.6;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--deep-ink);
    margin: 5px 0;
    transition: 0.3s;
}

.intro-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--soft-cream) 0%, var(--warm-stone) 100%);
}

.intro-section h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.intro-section p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--light-grey);
    font-size: 1.05rem;
}

.content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-heading {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--warm-stone);
}

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.post-item {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid var(--warm-stone);
}

.post-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.post-date {
    font-size: 0.8rem;
    color: var(--light-grey);
    letter-spacing: 0.03em;
}

.post-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0.5rem 0 1rem;
    line-height: 1.3;
}

.post-title a:hover {
    color: var(--muted-rose);
    opacity: 1;
}

.post-excerpt {
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.post-excerpt p {
    margin-bottom: 0.8rem;
}

.post-excerpt a {
    color: var(--muted-rose);
    border-bottom: 1px solid var(--muted-rose);
}

.post-excerpt a:hover {
    opacity: 0.8;
}

.read-more {
    font-size: 0.85rem;
    color: var(--muted-rose);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.read-more:hover {
    opacity: 0.8;
}

.post-media {
    margin: 1.5rem 0;
}

.post-media img {
    border-radius: 4px;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: var(--deep-ink);
    border-radius: 4px;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.site-footer {
    background: var(--deep-ink);
    color: var(--soft-cream);
    padding: 3rem 2rem;
    margin-top: 2rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.footer-nav a {
    font-size: 0.85rem;
    opacity: 0.7;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 0.8rem;
    opacity: 0.5;
}

.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-ink);
    color: var(--soft-cream);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.85rem;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.visible {
    transform: translateY(0);
}

.cookie-notice p {
    margin: 0;
    opacity: 0.9;
}

.cookie-btn {
    background: var(--soft-cream);
    color: var(--deep-ink);
    border: none;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        padding-top: 1.5rem;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .intro-section {
        padding: 3rem 1.5rem;
    }
    
    .intro-section h1 {
        font-size: 2rem;
    }
    
    .content-wrapper {
        padding: 2.5rem 1.5rem;
    }
    
    .post-title {
        font-size: 1.4rem;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .cookie-notice {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem;
    }
}

.shows-intro {
    margin-bottom: 3rem;
    color: var(--light-grey);
}

.shows-section {
    margin-bottom: 3rem;
}

.shows-year {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: var(--muted-rose);
}

.shows-list {
    list-style: none;
}

.show-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--warm-stone);
    align-items: baseline;
}

.show-date {
    font-size: 0.85rem;
    color: var(--light-grey);
}

.show-venue {
    font-weight: 400;
}

.show-info {
    font-size: 0.85rem;
    color: var(--light-grey);
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.album-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.album-cover {
    aspect-ratio: 1;
    background: var(--warm-stone);
    display: flex;
    align-items: center;
    justify-content: center;
}

.album-cover svg {
    width: 60%;
    height: auto;
    opacity: 0.3;
}

.album-info {
    padding: 1.5rem;
}

.album-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.album-year {
    font-size: 0.85rem;
    color: var(--light-grey);
    margin-bottom: 1rem;
}

.album-tracks {
    list-style: none;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.album-tracks li {
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--warm-stone);
}

.album-tracks li:last-child {
    border-bottom: none;
}

.album-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.album-links a {
    font-size: 0.8rem;
    color: var(--muted-rose);
    border: 1px solid var(--muted-rose);
    padding: 0.4rem 0.8rem;
    border-radius: 3px;
    transition: all 0.2s;
}

.album-links a:hover {
    background: var(--muted-rose);
    color: #fff;
    opacity: 1;
}

.band-intro {
    margin-bottom: 3rem;
    max-width: 700px;
}

.band-intro p {
    margin-bottom: 1rem;
    color: #4a4a4a;
}

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

.member-card {
    text-align: center;
}

.member-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: var(--warm-stone);
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo svg {
    width: 50%;
    opacity: 0.3;
}

.member-name {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.member-role {
    font-size: 0.85rem;
    color: var(--light-grey);
}

.contact-content {
    max-width: 600px;
}

.contact-content p {
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.contact-info {
    background: #fff;
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    color: var(--muted-rose);
}

.error-page {
    text-align: center;
    padding: 5rem 2rem;
}

.error-page h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 6rem;
    font-weight: 400;
    color: var(--warm-stone);
    margin-bottom: 1rem;
}

.error-page p {
    margin-bottom: 2rem;
    color: var(--light-grey);
}

.error-page a {
    color: var(--muted-rose);
    border-bottom: 1px solid var(--muted-rose);
}

.blog-post {
    max-width: 720px;
}

.post-header {
    margin-bottom: 2.5rem;
}

.post-header .post-date {
    display: block;
    margin-bottom: 0.5rem;
}

.post-header .post-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

.post-body {
    font-size: 1.05rem;
    line-height: 1.8;
}

.post-body p {
    margin-bottom: 1.5rem;
}

.post-body h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
}

.post-body a {
    color: var(--muted-rose);
    border-bottom: 1px solid var(--muted-rose);
}

.post-body a:hover {
    opacity: 0.8;
}

.post-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--warm-stone);
}

.back-link {
    font-size: 0.9rem;
    color: var(--light-grey);
}

.back-link:hover {
    color: var(--muted-rose);
}

@media (max-width: 768px) {
    .show-item {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }
    
    .show-info {
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    .intro-section h1 {
        font-size: 1.7rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
    }
}
