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

:root {
  --ink-black: #1a1a1a;
  --red-accent: #e63946;
  --gray-100: #f8f9fa;
  --gray-300: #dee2e6;
  --gray-600: #6c757d;
  --paper-white: #ffffff;
}

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

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

body {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.6;
  color: var(--ink-black);
  background: var(--paper-white);
  font-weight: 400;
  overflow-x: hidden;
}

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

/* Header - Magazine Masthead Style */
.site-header {
  background: var(--paper-white);
  border-bottom: 3px solid var(--ink-black);
  padding: 2rem 0 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-300);
}

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

.site-logo a:hover {
  color: var(--red-accent);
}

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

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

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

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

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

/* Hero Section */
.section.head {
  padding: 7rem 0;
  text-align: center;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-300);
}

.section.head h1 {
  font-family: "Playfair Display", serif;
  font-size: 5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  color: var(--ink-black);
  line-height: 1.1;
  letter-spacing: -2px;
  animation: fadeDown 0.8s ease;
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section.head p {
  font-size: 1.3rem;
  color: var(--gray-600);
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.7;
}

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

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

.section header h2 {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--ink-black);
  letter-spacing: -1px;
}

.section header p {
  font-size: 1.2rem;
  color: var(--gray-600);
  max-width: 600px;
  line-height: 1.7;
}

/* Footer */
.footer {
  background: var(--ink-black);
  padding: 4rem 0 1.5rem;
  border-top: 3px solid var(--red-accent);
  margin-top: 6rem;
  color: var(--paper-white);
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.footer-tagline {
  color: var(--gray-300);
  line-height: 1.8;
  font-size: 1rem;
}

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

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

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
}

.copyright a {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.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-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--ink-black);
  margin-top: 25px;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 700;
}
