/* Template 35 - Bold Magazine Editorial */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Work+Sans:wght@400;500;600&display=swap");

:root {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2a2a2a;
  --accent-red: #ff2e2e;
  --accent-gold: #ffd700;

  --text-primary: #ffffff;
  --text-secondary: #cccccc;
  --text-muted: #888888;
}

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

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

body {
  font-family: "Work Sans", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  font-weight: 400;
  overflow-x: hidden;
}

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

.site-header {
  background: var(--bg-primary);
  border-bottom: 3px solid var(--accent-red);
  padding: 2rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.site-logo a {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.site-logo a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 4px;
  background: var(--accent-red);
  transition: width 0.3s ease;
}

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

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

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

.site-nav a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--accent-red);
  transition: height 0.3s ease;
}

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

.site-nav a:hover::before {
  height: 100%;
}

.section.head {
  padding: 10rem 0;
  text-align: left;
  position: relative;
  border-left: 10px solid var(--accent-red);
  padding-left: 3rem;
  margin: 3rem 0;
}

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  line-height: 1.1;
  text-transform: uppercase;
}

.section.head h1::first-letter {
  font-size: 1.5em;
  color: var(--accent-red);
}

.section.head p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 700px;
  line-height: 1.8;
}

.section {
  padding: 5rem 0;
}

.section header {
  text-align: left;
  margin-bottom: 4rem;
  border-left: 6px solid var(--accent-gold);
  padding-left: 2rem;
}

.section header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text-primary);
  text-transform: uppercase;
}

.section header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
}

.footer {
  background: var(--bg-secondary);
  padding: 4rem 0 1rem;
  border-top: 3px solid var(--accent-red);
  margin-top: 5rem;
}

.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;
  font-weight: 600;
  letter-spacing: 1px;
}

.footer-links a:hover {
  color: var(--accent-red);
}

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

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

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  opacity: 0;
  animation: floatIn 0.8s 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.7rem;
  color: var(--accent-gold);
  margin-top: 15px;
  margin-bottom: 10px;
  text-align: left;
  font-family: "Playfair Display", serif;
  font-weight: 900;
  text-transform: uppercase;
}
