/* assets/style.css */

/* Update in assets/style.css */
:root {
    --gold: #d4af37;
    --dark: #1a1a1a;
    --light: #f4f4f4;
}

.fas { margin-right: 5px; }

:root {
    --gold: #d4af37;       /* Elegant accent color */
    --dark: #1a1a1a;       /* Deep background */
    --light: #f4f4f4;      /* Text color */
    --overlay: rgba(0, 0, 0, 0.6); /* For text readability over images */
}

body {
    margin: 0;
    font-family: 'Playfair Display', serif; /* Classic, elegant font */
    background-color: var(--dark);
    color: var(--light);
    padding-bottom: 80px; /* Space for sticky player */
}

h1, h2, h3 { font-weight: normal; letter-spacing: 1px; }
a { text-decoration: none; color: inherit; transition: 0.3s; }

/* NAVIGATION */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #000;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.logo { font-size: 1.5rem; font-weight: bold; color: var(--gold); }
.nav-links a { margin-left: 20px; font-size: 0.9rem; text-transform: uppercase; }
.nav-links a:hover { color: var(--gold); }
.btn-book {
    border: 1px solid var(--gold);
    padding: 8px 15px;
    color: var(--gold);
}
.btn-book:hover { background: var(--gold); color: #000; }

/* HERO SECTION */
.hero {
    height: 85vh;
    background: linear-gradient(var(--overlay), var(--overlay)), url('https://images.unsplash.com/photo-1518609878373-06d740f60d8b?q=80&w=2070'); /* Placeholder Violin Image */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero h1 { font-size: 3.5rem; margin-bottom: 10px; }
.hero p { font-size: 1.2rem; margin-bottom: 30px; font-style: italic; }
.cta-btn {
    background: var(--gold);
    color: #000;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
}


/* Gigs / Events Section */
.events-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-card {
    background: #1a1a1a;
    border-left: 4px solid var(--gold); /* Gold accent line */
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-radius: 4px;
    transition: transform 0.2s;
}

.event-card:hover {
    transform: translateX(5px);
    background: #252525;
}

/* The Date Box (Oct 24) */
.event-date {
    background: #333;
    padding: 10px 15px;
    text-align: center;
    border-radius: 4px;
    min-width: 60px;
}
.event-date .month { display: block; font-size: 0.8rem; text-transform: uppercase; color: var(--gold); }
.event-date .day { display: block; font-size: 1.5rem; font-weight: bold; color: #fff; }

.event-info { flex: 1; }
.event-info h3 { margin: 0 0 5px; font-size: 1.2rem; color: #fff; }
.event-info p { margin: 0; font-size: 0.9rem; color: #aaa; }

.btn-ticket {
    padding: 8px 15px;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 30px;
    font-size: 0.85rem;
    white-space: nowrap;
}
.btn-ticket:hover { background: var(--gold); color: #000; }
.free-entry { font-size: 0.85rem; color: #777; font-style: italic; white-space: nowrap; }

/* Mobile Stack */
@media (max-width: 600px) {
    .event-card { flex-direction: column; text-align: center; align-items: stretch; }
    .event-action { margin-top: 10px; }
}

/* TESTIMONIALS SLIDER (Simple CSS Grid) */
.testimonials { padding: 60px 10%; text-align: center; background: #222; }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.quote-card {
    background: #333;
    padding: 20px;
    border-left: 3px solid var(--gold);
    font-style: italic;
}

/* STICKY FOOTER PLAYER */
.sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    border-top: 1px solid #333;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}
.player-controls { display: flex; align-items: center; gap: 15px; }
.now-playing { font-size: 0.9rem; margin-right: 20px; color: var(--gold); }
audio { height: 30px; width: 300px; }

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    .hero h1 { font-size: 2.5rem; }
    .nav-links { display: none; } /* Simplified for demo */
}