/* Template 28 - Midnight Jazz / Moody Blues */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Raleway:wght@300;400;500;600&display=swap");

:root {
  --color-primary: #1e3a5f;
  --color-secondary: #2c5f8d;
  --color-accent: #ffd700;
  --color-jazz: #8b0000;
  --bg-primary: #0a0e1a;
  --bg-secondary: #141824;
  --bg-card: #1a1f2e;
  --text-primary: #e8e8e8;
  --text-secondary: #b8b8c0;
  --text-muted: #7a7a8a;
  --border-color: #2c3e50;
}

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

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

body {
  font-family: "Raleway", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
  background-image: radial-gradient(circle at 20% 50%, rgba(44, 95, 141, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 0, 0, 0.1) 0%, transparent 50%);
}

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

/* Header with Jazz Club Aesthetic */
.site-header {
  background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  border-bottom: 2px solid var(--color-accent);
  padding: 1.8rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

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

.site-logo a {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.4s ease;
  font-style: italic;
  text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.site-logo a:hover {
  letter-spacing: 2px;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

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

.site-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.site-nav a::before {
  content: "♪";
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--color-accent);
}

.site-nav a:hover {
  color: var(--color-accent);
  padding-left: 20px;
}

.site-nav a:hover::before {
  opacity: 1;
  left: 0;
}

/* Hero Section with Stage Lighting Effect */
.section.head {
  padding: 8rem 0;
  text-align: center;
  background: radial-gradient(ellipse at center, var(--bg-secondary) 0%, var(--bg-primary) 70%);
  position: relative;
  overflow: hidden;
}

.section.head::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent) 0%, transparent 20%);
  opacity: 0.05;
  animation: spotlight 4s ease-in-out infinite alternate;
}

@keyframes spotlight {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.05;
  }
  100% {
    transform: translateX(-50%) scale(1.1);
    opacity: 0.08;
  }
}

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

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

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

.section header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-style: italic;
}

.section header p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto;
}

/* Footer with Jazz Club Vibe */
.footer {
  background: linear-gradient(180deg, var(--bg-primary) 0%, #000000 100%);
  padding: 3rem 0 1rem;
  border-top: 2px solid var(--color-accent);
  margin-top: 5rem;
  position: relative;
}

.footer::before {
  content: "♫";
  position: absolute;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3rem;
  color: var(--color-accent);
  opacity: 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(--text-secondary);
  line-height: 1.8;
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--color-accent);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.copyright a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Animations */
@keyframes jazzFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.fade-in {
  opacity: 0;
  animation: jazzFadeIn 1s ease forwards;
}

.fade-in:nth-child(1) {
  animation-delay: 0.1s;
}
.fade-in:nth-child(2) {
  animation-delay: 0.2s;
}
.fade-in:nth-child(3) {
  animation-delay: 0.3s;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

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

main {
  flex: 1;
}

body:not(.faq) h3,
:not(section.faq) h3 {
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Playfair Display", serif;
}
