/* ============================================================================
   NOT FOR ATTRIBUTION — Editorial Brutalist Design
   CSS Stylesheet
   ============================================================================ */

/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Source+Serif+4:wght@700;900&family=Inter:wght@400;500&family=JetBrains+Mono:wght@400&display=swap');

/* ============================================================================
   1. RESET & BASE STYLES
   ============================================================================ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #0A0A0A;
  background-color: #F5F0E8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================================
   2. NAVIGATION
   ============================================================================ */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: transparent;
  transition: all 0.3s ease;
}

nav.scrolled {
  background-color: rgba(245, 240, 232, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

nav.scrolled .nav-logo,
nav.scrolled .nav-links a {
  color: #0A0A0A;
}

.nav-logo {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: #FAFAF7;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #FAFAF7;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1A1F3A;
}

@media (max-width: 900px) {
  nav {
    padding: 1.5rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .nav-links a {
    font-size: 0.75rem;
  }
}

/* ============================================================================
   3. HERO SECTION (Home Page)
   ============================================================================ */

.hero {
  height: 100vh;
  background-color: #000000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
}

.hero-content {
  padding: 4rem;
  color: #FAFAF7;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.hero-title {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(4rem, 8vw, 8rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  color: #FAFAF7;
}

.hero-cta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hero-image {
  width: 100%;
  height: 100%;
  background-color: #1A1F3A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: #F5F0E8;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    padding: 2rem;
    min-height: 60vh;
    justify-content: center;
  }

  .hero-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

  .hero-image {
    min-height: 40vh;
  }

  .hero-cta {
    flex-direction: column;
  }
}

/* ============================================================================
   4. BUTTONS
   ============================================================================ */

.btn-primary,
.btn-outline,
.btn-submit {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background-color: #FAFAF7;
  color: #000000;
}

.btn-primary:hover {
  background-color: #F5F0E8;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: #FAFAF7;
  border: 2px solid #FAFAF7;
}

.btn-outline:hover {
  background-color: #FAFAF7;
  color: #000000;
  transform: translateY(-2px);
}

.btn-submit {
  background-color: #0A0A0A;
  color: #FAFAF7;
  width: 100%;
  padding: 1.2rem;
}

.btn-submit:hover {
  background-color: #1A1F3A;
  transform: translateY(-2px);
}

/* ============================================================================
   5. REDACTION BAR
   ============================================================================ */

.redact-bar {
  position: relative;
  display: inline-block;
}

.redact-bar span {
  visibility: hidden;
}

.redact-bar::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1.2em;
  background-color: #FFFFFF;
  transform: translateY(-50%);
  z-index: 1;
}

/* ============================================================================
   6. SECTION DIVIDER
   ============================================================================ */

.section-divider {
  width: 100%;
  height: auto;
  overflow: hidden;
  background-color: #F5F0E8;
}

.section-divider img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
}

.section-divider.dark {
  background-color: #000000;
}

.section-divider.dark img {
  opacity: 0.3;
  filter: invert(1);
}

/* ============================================================================
   7. EDITORIAL SECTION
   ============================================================================ */

.editorial-section {
  background-color: #F5F0E8;
  padding: 6rem 2rem;
}

.editorial-content {
  max-width: 1100px;
  margin: 0 auto;
}

.pullquote-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #1A1F3A;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #0A0A0A;
  display: inline-block;
}

.pullquote {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #0A0A0A;
}

.pullquote span[data-nowrap] {
  white-space: nowrap;
  text-decoration: underline;
}

.editorial-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.editorial-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.credibility-line {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1A1F3A;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .editorial-section {
    padding: 4rem 1.5rem;
  }

  .pullquote {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
  }

  .editorial-text {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================================================
   8. ATMOSPHERE SECTION
   ============================================================================ */

.atmosphere-section {
  background-color: #FAFAF7;
  padding: 6rem 2rem;
  text-align: center;
}

.atmosphere-headline {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
  color: #0A0A0A;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.atmosphere-subheading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #1A1F3A;
}

@media (max-width: 900px) {
  .atmosphere-section {
    padding: 4rem 1.5rem;
  }

  .atmosphere-headline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
}

/* ============================================================================
   9. CTA SECTION
   ============================================================================ */

.cta-section {
  background-color: #0A0A0A;
  padding: 6rem 2rem;
  text-align: center;
  color: #FAFAF7;
}

.cta-tagline {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .cta-section {
    padding: 4rem 1.5rem;
  }

  .cta-tagline {
    font-size: clamp(1.5rem, 3vw, 2rem);
  }
}

/* ============================================================================
   10. FOOTER
   ============================================================================ */

footer {
  background-color: #0A0A0A;
  color: #FAFAF7;
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-location {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-credit {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  text-align: right;
}

@media (max-width: 900px) {
  footer {
    flex-direction: column;
    text-align: center;
  }

  .footer-credit {
    text-align: center;
  }
}

/* ============================================================================
   11. PAGE HEADER (About/Inner Pages)
   ============================================================================ */

.page-header {
  min-height: 70vh;
  background-color: #000000;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  color: #FAFAF7;
  padding: 8rem 4rem 4rem;
}

.page-header-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}

.page-header-title {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 900;
  line-height: 1;
  color: #FAFAF7;
}

.page-header-image {
  width: 100%;
  height: 100%;
  background-color: #1A1F3A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  color: #F5F0E8;
  min-height: 400px;
}

@media (max-width: 900px) {
  .page-header {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 6rem 2rem 2rem;
  }

  .page-header-title {
    font-size: clamp(2.5rem, 7vw, 4rem);
  }

  .page-header-image {
    min-height: 300px;
  }
}

/* ============================================================================
   12. MISSION SECTION
   ============================================================================ */

.mission-section {
  background-color: #F5F0E8;
  padding: 6rem 2rem;
}

.mission-content {
  max-width: 1100px;
  margin: 0 auto;
}

.mission-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .mission-section {
    padding: 4rem 1.5rem;
  }

  .mission-text {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ============================================================================
   13. EVENING TIMELINE
   ============================================================================ */

.evening-timeline {
  background-color: #F5F0E8;
  padding: 6rem 2rem;
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.timeline-container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #0A0A0A;
}

.timeline-item {
  margin-bottom: 3rem;
  position: relative;
  padding-left: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.5rem;
  width: 1rem;
  height: 1rem;
  background-color: #0A0A0A;
  border-radius: 50%;
  transform: translateX(-50%);
}

.timeline-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1A1F3A;
  margin-bottom: 0.5rem;
}

.timeline-description {
  font-family: 'Source Serif 4', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #0A0A0A;
}

@media (max-width: 900px) {
  .evening-timeline {
    padding: 4rem 1.5rem;
  }

  .timeline-container {
    padding-left: 2rem;
  }

  .timeline-item {
    padding-left: 1.5rem;
  }

  .timeline-item::before {
    left: -1.75rem;
    width: 0.8rem;
    height: 0.8rem;
  }
}

/* ============================================================================
   14. RULES BAND
   ============================================================================ */

.rules-band {
  background-color: #0A0A0A;
  padding: 4rem 2rem;
  text-align: center;
  color: #FAFAF7;
}

.rules-text {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.4;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .rules-band {
    padding: 3rem 1.5rem;
  }

  .rules-text {
    font-size: clamp(1rem, 2vw, 1.5rem);
  }
}

/* ============================================================================
   15. THE ROOM SECTION
   ============================================================================ */

.the-room-section {
  background-color: #F5F0E8;
  padding: 6rem 2rem;
}

.the-room-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.the-room-text h2 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #0A0A0A;
}

.the-room-text p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.the-room-image {
  width: 100%;
  aspect-ratio: 1;
  background-color: #FAFAF7;
  border: 1px solid #0A0A0A;
}

@media (max-width: 900px) {
  .the-room-section {
    padding: 4rem 1.5rem;
  }

  .the-room-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================================
   16. FOUNDING COMMITTEE
   ============================================================================ */

.founding-committee {
  background-color: #FAFAF7;
  padding: 6rem 2rem;
}

.committee-headline {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 4rem;
  color: #0A0A0A;
}

.committee-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.committee-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.committee-portrait {
  width: 100%;
  aspect-ratio: 1;
  background-color: #F5F0E8;
  border: 1px solid #0A0A0A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #1A1F3A;
}

.committee-name {
  font-family: 'Source Serif 4', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #0A0A0A;
}

.committee-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #1A1F3A;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .founding-committee {
    padding: 4rem 1.5rem;
  }

  .committee-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ============================================================================
   17. COLLABORATORS SECTION
   ============================================================================ */

.collaborators-section {
  background-color: #FAFAF7;
  padding: 6rem 2rem;
  text-align: center;
}

.collaborators-headline {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  margin-bottom: 3rem;
  color: #0A0A0A;
}

.collaborators-list {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1A1F3A;
  max-width: 600px;
  margin: 0 auto;
  line-height: 2;
}

@media (max-width: 900px) {
  .collaborators-section {
    padding: 4rem 1.5rem;
  }
}

/* ============================================================================
   18. EVENTS PAGE — TAROT CARD GRID
   ============================================================================ */

.events-page {
  background-color: #0A0A0A;
  padding: 6rem 2rem;
  min-height: 100vh;
}

.events-headline {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #FAFAF7;
  text-align: center;
  margin-bottom: 4rem;
}

.tarot-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.tarot-card {
  aspect-ratio: 2/3;
  background-color: #FAFAF7;
  border: 1px solid #FAFAF7;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
}

.tarot-card:hover {
  transform: translateY(-4px);
}

.tarot-card.featured {
  grid-column: span 1;
  aspect-ratio: auto;
  min-height: 600px;
}

.tarot-hairline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #0A0A0A;
  pointer-events: none;
  padding: 12px;
  box-sizing: border-box;
}

.tarot-hairline::before,
.tarot-hairline::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid #0A0A0A;
}

.tarot-hairline::before {
  top: 10px;
  left: 10px;
  border-right: none;
  border-bottom: none;
}

.tarot-hairline::after {
  bottom: 10px;
  right: 10px;
  border-left: none;
  border-top: none;
}

.tarot-image {
  flex: 1;
  background-color: #1A1F3A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  color: #F5F0E8;
}

.tarot-content {
  padding: 1.5rem;
  background-color: #FAFAF7;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.tarot-title {
  font-family: 'Source Serif 4', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.3;
}

.tarot-date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #1A1F3A;
}

@media (max-width: 900px) {
  .events-page {
    padding: 4rem 1.5rem;
  }

  .tarot-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .tarot-card.featured {
    min-height: auto;
  }
}

/* ============================================================================
   19. JOIN PAGE — SPLIT LAYOUT
   ============================================================================ */

.join-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}

.form-side {
  background-color: #F5F0E8;
  padding: 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-side h1 {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 900;
  margin-bottom: 2rem;
  color: #0A0A0A;
}

.form-group {
  margin-bottom: 2rem;
}

.form-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #1A1F3A;
  display: block;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  width: 100%;
  padding: 0.75rem 0;
  border: none;
  border-bottom: 1px solid #0A0A0A;
  background-color: transparent;
  color: #0A0A0A;
  transition: border-color 0.3s ease;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #1A1F3A;
  opacity: 0.6;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-bottom-color: #1A1F3A;
}

.form-textarea {
  resize: none;
  min-height: 100px;
}

.brand-side {
  background-color: #0A0A0A;
  color: #FAFAF7;
  padding: 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  order: 2;
}

.brand-tagline {
  font-family: 'Source Serif 4', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .join-page {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .form-side {
    padding: 4rem 2rem;
    order: 2;
  }

  .brand-side {
    padding: 4rem 2rem;
    order: 1;
    min-height: 50vh;
    justify-content: center;
  }

  .brand-tagline {
    font-size: clamp(2rem, 5vw, 3.5rem);
  }
}

/* ============================================================================
   20. FORM CONFIRMATION (Hidden by default)
   ============================================================================ */

.form-confirmation {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.form-confirmation.show {
  display: flex;
}

.confirmation-content {
  background-color: #FAFAF7;
  padding: 4rem;
  max-width: 600px;
  color: #0A0A0A;
}

.confirmation-content h2 {
  font-family: 'Source Serif 4', serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.confirmation-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.confirmation-close {
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background-color: #0A0A0A;
  color: #FAFAF7;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.confirmation-close:hover {
  background-color: #1A1F3A;
}

/* ============================================================================
   21. UTILITY CLASSES
   ============================================================================ */

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

.text-center {
  text-align: center;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-serif {
  font-family: 'Source Serif 4', serif;
}

.text-mono {
  font-family: 'JetBrains Mono', monospace;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ============================================================================
   22. LINKS & INTERACTIONS
   ============================================================================ */

a {
  color: #1A1F3A;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #0A0A0A;
}

/* ============================================================================
   END OF STYLESHEET
   ============================================================================ */
