/* Appalachian Folk Music Website Styles */

:root {
    --primary-color: #2C2C2C;
    --secondary-color: #4A4A4A;
    --accent-color: #6B6B6B;
    --text-color: #E0E0E0;
    --bg-color: #1A1A1A;
    --light-bg: #2A2A2A;
    --border-color: #3A3A3A;
    --dark-gray: #1A1A1A;
    --medium-gray: #2A2A2A;
    --light-gray: #3A3A3A;
}

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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(60, 60, 60, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(50, 50, 50, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(70, 70, 70, 0.2) 0%, transparent 50%);
    background-size: 400px 400px, 500px 500px, 350px 350px;
    background-position: 0 0, 200px 200px, 100px 100px;
    line-height: 1.6;
    position: relative;
}

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

body > * {
    position: relative;
    z-index: 1;
}

a:visited {
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--primary-color);
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(60, 60, 60, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(50, 50, 50, 0.4) 0%, transparent 50%);
    background-size: 300px 300px, 400px 400px;
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    border-bottom: 1px solid rgba(100, 100, 100, 0.2);
    position: relative;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.05) 10px, rgba(0, 0, 0, 0.05) 20px);
    pointer-events: none;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo img {
    height: 70px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    border-radius: 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #B0B0B0;
}

.nav-menu a:visited {
    color: #fff;
}

.social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social a {
    color: #fff;
    display: inline-block;
    transition: opacity 0.3s;
}

.social a:hover {
    opacity: 0.7;
}

/* Main Content */
main {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
    background: var(--primary-color);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(70, 70, 70, 0.5) 0%, transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(60, 60, 60, 0.5) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(50, 50, 50, 0.3) 0%, transparent 80%);
    background-size: 600px 600px, 700px 700px, 800px 800px;
    background-position: 0 0, 300px 300px, 150px 150px;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(100, 100, 100, 0.2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 15px, rgba(0, 0, 0, 0.03) 15px, rgba(0, 0, 0, 0.03) 16px),
        repeating-linear-gradient(90deg, transparent, transparent 15px, rgba(0, 0, 0, 0.03) 15px, rgba(0, 0, 0, 0.03) 16px);
    pointer-events: none;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.description {
    font-size: 1.2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(70, 70, 70, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(60, 60, 60, 0.4) 0%, transparent 50%);
    background-size: 400px 400px, 500px 500px;
    color: #fff;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(100, 100, 100, 0.2);
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(0, 0, 0, 0.04) 12px, rgba(0, 0, 0, 0.04) 24px);
    pointer-events: none;
}

.page-header h1 {
    font-size: 2.5rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

/* Intro Section */
.intro {
    padding: 3rem 0;
    background-color: var(--light-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(60, 60, 60, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(50, 50, 50, 0.2) 0%, transparent 50%);
    background-size: 500px 500px, 600px 600px;
    position: relative;
}

.intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 20px, rgba(0, 0, 0, 0.02) 20px, rgba(0, 0, 0, 0.02) 21px);
    pointer-events: none;
}

.intro h2 {
    color: #D0D0D0;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.intro p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.intro a {
    color: #B0B0B0;
    text-decoration: underline;
}

.intro a:hover {
    color: #fff;
}

.intro a:visited {
    color: #fff;
}

.home-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.home-image-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    background-color: var(--light-bg);
}

.home-image-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.home-image-item:first-child img {
    height: auto;
}

.home-image-item:not(:first-child) img {
    height: 100%;
    object-fit: cover;
}

.home-image-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .home-image-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Instruments Grid */
.instruments {
    padding: 3rem 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(60, 60, 60, 0.15) 0%, transparent 70%);
    background-size: 800px 800px;
}

.instruments h2 {
    color: #D0D0D0;
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2rem;
}

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

.instrument-item {
    background-color: var(--light-bg);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(70, 70, 70, 0.3) 0%, transparent 70%);
    padding: 2rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.instrument-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0, 0, 0, 0.05) 8px, rgba(0, 0, 0, 0.05) 16px);
    border-radius: 5px;
    pointer-events: none;
}

.instrument-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.instrument-item h3 {
    color: #D0D0D0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Shows */
.shows {
    padding: 3rem 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(60, 60, 60, 0.15) 0%, transparent 70%);
    background-size: 800px 800px;
}

.shows-list {
    max-width: 800px;
    margin: 0 auto;
}

.show-item {
    background-color: var(--light-bg);
    background-image: 
        radial-gradient(circle at 10% 50%, rgba(70, 70, 70, 0.2) 0%, transparent 50%);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--accent-color);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    position: relative;
}

.show-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(0, 0, 0, 0.03) 18px, rgba(0, 0, 0, 0.03) 19px);
    border-radius: 5px;
    pointer-events: none;
}

.show-date {
    margin-bottom: 1rem;
}

.date {
    font-size: 1.2rem;
    font-weight: bold;
    color: #B0B0B0;
    position: relative;
    z-index: 1;
}

.show-details h3 {
    color: #D0D0D0;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.show-item a,
.shows a {
    color: #B0B0B0;
    text-decoration: underline;
}

.show-item a:hover,
.shows a:hover {
    color: #fff;
}

.show-item a:visited,
.shows a:visited {
    color: #fff;
}

/* Media */
.media {
    padding: 3rem 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(60, 60, 60, 0.15) 0%, transparent 70%);
    background-size: 800px 800px;
}

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

.media-section h2 {
    color: #D0D0D0;
    margin-bottom: 2rem;
    font-size: 2rem;
}

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

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

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background-color: var(--light-bg);
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 5px;
}

.video-wrapper video {
    object-fit: contain;
    background-color: #000;
}

.audio-player-wrapper {
    cursor: pointer;
    position: relative;
}

.audio-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.audio-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.audio-play-button:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.audio-play-button svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin-left: 4px; /* Slight offset to center the play icon visually */
}

.audio-play-button.playing svg {
    display: none;
}

.audio-play-button.playing::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border-left: 4px solid var(--primary-color);
    border-right: 4px solid var(--primary-color);
    box-sizing: border-box;
}

.audio-player {
    display: none;
}

.media-placeholder {
    background-color: var(--light-bg);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(70, 70, 70, 0.2) 0%, transparent 70%);
    padding: 3rem;
    border: 2px dashed var(--border-color);
    border-radius: 5px;
    text-align: center;
    color: var(--text-color);
    opacity: 0.8;
    position: relative;
}

.media-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.04) 10px, rgba(0, 0, 0, 0.04) 20px);
    border-radius: 5px;
    pointer-events: none;
}

.streaming-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .streaming-links {
        flex-direction: row;
        max-width: 100%;
        gap: 1.5rem;
    }
    
    .streaming-link {
        flex: 1;
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

.streaming-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    background-color: var(--light-bg);
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(70, 70, 70, 0.3) 0%, transparent 70%);
    padding: 1.5rem 2rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    min-width: 0;
}

.streaming-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0, 0, 0, 0.05) 8px, rgba(0, 0, 0, 0.05) 16px);
    border-radius: 5px;
    pointer-events: none;
}

.streaming-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
    background-color: var(--medium-gray);
}

.streaming-link svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.streaming-link span {
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* Bio */
.bio {
    padding: 3rem 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(60, 60, 60, 0.15) 0%, transparent 70%);
    background-size: 800px 800px;
}

.bio-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-bg);
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(70, 70, 70, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(60, 60, 60, 0.3) 0%, transparent 60%);
    background-size: 400px 400px, 500px 500px;
    padding: 2.5rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
}

.bio-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 25px, rgba(0, 0, 0, 0.03) 25px, rgba(0, 0, 0, 0.03) 26px);
    border-radius: 5px;
    pointer-events: none;
}

.bio-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
    position: relative;
    z-index: 1;
}

.bio-content a {
    color: #B0B0B0;
    text-decoration: underline;
}

.bio-content a:hover {
    color: #fff;
}

.bio-content a:visited {
    color: #fff;
}

/* Contact */
.contact {
    padding: 3rem 0;
    background-image: 
        radial-gradient(circle at 50% 50%, rgba(60, 60, 60, 0.15) 0%, transparent 70%);
    background-size: 800px 800px;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-bg);
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(70, 70, 70, 0.3) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(60, 60, 60, 0.3) 0%, transparent 60%);
    background-size: 400px 400px, 500px 500px;
    padding: 2.5rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    position: relative;
}

.contact-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 25px, rgba(0, 0, 0, 0.03) 25px, rgba(0, 0, 0, 0.03) 26px);
    border-radius: 5px;
    pointer-events: none;
}

.contact-content > p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.contact-item {
    text-align: center;
}

.contact-item h3 {
    color: #D0D0D0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-item a {
    color: #B0B0B0;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-item a:visited {
    color: #fff;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    background-image: 
        radial-gradient(circle at 30% 30%, rgba(60, 60, 60, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(50, 50, 50, 0.4) 0%, transparent 50%);
    background-size: 300px 300px, 400px 400px;
    color: #fff;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(100, 100, 100, 0.2);
    position: relative;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.05) 10px, rgba(0, 0, 0, 0.05) 20px);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    color: #fff;
    display: inline-block;
    transition: opacity 0.3s;
}

.footer-social a:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

