/* Template 41 - Midnight Jazz / Smoky Lounge */
@import url('https://fonts.googleapis.com/css2?family=Italiana&family=Josefin+Sans:wght@300;400;500;600&family=Cormorant:wght@300;400;500;600&display=swap');

:root {
    --midnight: #0d0d1a;
    --deep-purple: #1a1625;
    --plum: #2d2438;
    --smoke: #3d3548;
    --violet: #6b5b8c;
    --lavender: #9d8cb8;
    --champagne: #f5e6c8;
    --gold: #c9a227;
    --brass: #b8860b;
    --rose: #c97d7d;
    --cream: #faf6f1;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Cormorant', Georgia, serif;
    line-height: 1.8;
    color: var(--champagne);
    background: var(--midnight);
    font-weight: 400;
    font-size: 1.15rem;
    position: relative;
}

/* Smoky atmosphere overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(107,91,140,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(201,162,39,0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    animation: smokeMove 20s ease-in-out infinite;
}

@keyframes smokeMove {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

/* Header - Elegant jazz club marquee */
.site-header {
    background: transparent;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(201,162,39,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

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

.site-logo a {
    font-family: 'Italiana', serif;
    font-size: 2rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
}

.site-logo a::before {
    content: '\266B';
    position: absolute;
    left: -2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--lavender);
    opacity: 0.6;
}

.site-logo a:hover {
    text-shadow: 0 0 20px rgba(201,162,39,0.5);
}

.site-nav ul {
    list-style: none;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.site-nav a {
    color: var(--lavender);
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: all 0.4s ease;
    position: relative;
}

.site-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.site-nav a:hover {
    color: var(--gold);
}

.site-nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.section.head {
    padding: 7rem 0;
    text-align: center;
    position: relative;
}

.section.head::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section.head h1 {
    font-family: 'Italiana', serif;
    font-size: 4rem;
    font-weight: 400;
    color: var(--champagne);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
}

.section.head h1::first-letter {
    font-size: 5rem;
    color: var(--gold);
}

.section.head p {
    font-size: 1.25rem;
    color: var(--lavender);
    max-width: 700px;
    margin: 0 auto;
    font-style: italic;
    position: relative;
    padding: 0 3rem;
}

.section.head p::before,
.section.head p::after {
    content: '"';
    font-family: 'Italiana', serif;
    font-size: 3rem;
    color: var(--gold);
    position: absolute;
    opacity: 0.5;
}

.section.head p::before {
    left: 0;
    top: -1rem;
}

.section.head p::after {
    right: 0;
    bottom: -2rem;
}

/* Section Styling */
.section {
    padding: 4rem 0;
}

.section header {
    text-align: center;
    margin-bottom: 3rem;
}

.section header h2 {
    font-family: 'Italiana', serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--champagne);
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section header h2::before,
.section header h2::after {
    content: '\2014';
    color: var(--violet);
    margin: 0 1rem;
}

.section header p {
    font-size: 1.1rem;
    color: var(--lavender);
    max-width: 550px;
    margin: 0 auto;
    font-style: italic;
}

body:not(.faq) h3,
:not(section.faq) h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.35rem;
    color: var(--gold);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
}

/* Footer */
.footer {
    background: var(--deep-purple);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid rgba(201,162,39,0.2);
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-about {
    flex: 1;
    max-width: 400px;
}

.footer-tagline {
    color: var(--lavender);
    font-size: 1rem;
    line-height: 1.9;
    font-style: italic;
}

.footer-links ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--champagne);
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.4s ease;
}

.footer-links a:hover {
    color: var(--gold);
    text-shadow: 0 0 10px rgba(201,162,39,0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(157,140,184,0.2);
}

.footer-bottom::before {
    content: '\266B \266A \266B';
    display: block;
    margin-bottom: 1rem;
    color: var(--violet);
    letter-spacing: 1rem;
    font-size: 0.9rem;
}

.copyright a {
    color: var(--smoke);
    font-size: 0.85rem;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: 0.1em;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: jazzFade 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes jazzFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}
