/* ============================================
   NEUBRUTALISM LANDING PAGE STYLES
   Bold, Raw, and Rebellious Aesthetic
   ============================================ */

:root {
  /* Neubrutalism Color Palette */
  --hot-pink: #FF6B9D;
  --bright-yellow: #FFE135;
  --electric-blue: #00D4FF;
  --pure-black: #000000;
  --pure-white: #FFFFFF;
  --off-white: #FAFAFA;

  /* Typography */
  --font-heading: 'Archivo Black', 'Arial Black', sans-serif;
  --font-body: 'Space Grotesk', 'Arial', sans-serif;

  /* Borders and Shadows */
  --border-thick: 5px solid var(--pure-black);
  --border-medium: 3px solid var(--pure-black);
  --shadow-brutal: 8px 8px 0 var(--pure-black);
  --shadow-brutal-small: 4px 4px 0 var(--pure-black);
  --shadow-brutal-large: 12px 12px 0 var(--pure-black);
}

/* ============================================
   RESET AND BASE STYLES
   ============================================ */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--pure-black);
  background-color: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  letter-spacing: -2px;
}

h2 {
  font-size: 2.25rem;
  letter-spacing: -1px;
  margin-top: 3rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.7;
}

em {
  font-style: italic;
  font-weight: 600;
}

strong {
  font-weight: 700;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  background-color: var(--hot-pink);
  border-bottom: var(--border-thick);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 200px;
  height: 200px;
  background-color: var(--bright-yellow);
  border: var(--border-medium);
  transform: rotate(15deg);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 150px;
  height: 150px;
  background-color: var(--electric-blue);
  border: var(--border-medium);
  transform: rotate(-20deg);
  z-index: 0;
}

.hero-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--pure-white);
  text-shadow: 4px 4px 0 var(--pure-black);
  margin-bottom: 1rem;
  animation: slideInLeft 0.6s ease-out;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--pure-black);
  background-color: var(--bright-yellow);
  padding: 1rem 1.5rem;
  border: var(--border-medium);
  box-shadow: var(--shadow-brutal-small);
  display: inline-block;
  font-weight: 700;
  animation: slideInRight 0.6s ease-out;
}

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

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

/* ============================================
   ARTICLE CONTENT
   ============================================ */

.article-content {
  padding: 4rem 2rem;
  background-color: var(--off-white);
}

.content-container {
  max-width: 800px;
  margin: 0 auto;
}

.intro {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--pure-black);
  background-color: var(--electric-blue);
  padding: 2rem;
  border: var(--border-medium);
  box-shadow: var(--shadow-brutal);
  margin-bottom: 3rem;
}

.closing {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: center;
  color: var(--pure-white);
  background-color: var(--pure-black);
  padding: 2rem;
  border: var(--border-medium);
  box-shadow: var(--shadow-brutal);
  margin-top: 3rem;
}

/* Lists */
ul, ol {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

li {
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Blockquotes */
blockquote {
  background-color: var(--bright-yellow);
  border-left: 8px solid var(--pure-black);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.25rem;
  box-shadow: var(--shadow-brutal-small);
}

/* Code blocks */
code {
  background-color: var(--pure-black);
  color: var(--electric-blue);
  padding: 0.2rem 0.5rem;
  border-radius: 0;
  font-family: 'Courier New', monospace;
  font-size: 1rem;
}

pre {
  background-color: var(--pure-black);
  color: var(--bright-yellow);
  padding: 1.5rem;
  border: var(--border-medium);
  overflow-x: auto;
  margin: 2rem 0;
  box-shadow: var(--shadow-brutal-small);
}

pre code {
  background: none;
  padding: 0;
  color: var(--bright-yellow);
}

/* Tables */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 2rem 0;
  border: var(--border-medium);
  box-shadow: var(--shadow-brutal-small);
}

thead {
  background-color: var(--hot-pink);
}

th {
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  border-bottom: var(--border-medium);
  color: var(--pure-white);
}

td {
  padding: 1rem;
  border-bottom: 2px solid var(--pure-black);
}

tbody tr:nth-child(even) {
  background-color: var(--bright-yellow);
}

tbody tr:nth-child(odd) {
  background-color: var(--pure-white);
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  border: var(--border-medium);
  box-shadow: var(--shadow-brutal-small);
  display: block;
  margin: 2rem 0;
}

/* ============================================
   CALL-TO-ACTION SECTION
   ============================================ */

.cta {
  background-color: var(--bright-yellow);
  border-top: var(--border-thick);
  border-bottom: var(--border-thick);
  padding: 5rem 2rem;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50px;
  width: 100px;
  height: 100px;
  background-color: var(--hot-pink);
  border: var(--border-medium);
  transform: rotate(25deg);
}

.cta-container {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-content {
  background-color: var(--pure-white);
  border: var(--border-thick);
  padding: 3rem;
  box-shadow: var(--shadow-brutal-large);
  text-align: center;
}

.cta-title {
  font-size: 3rem;
  color: var(--hot-pink);
  margin-bottom: 1.5rem;
  text-shadow: 3px 3px 0 var(--pure-black);
}

.cta-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--pure-black);
}

.cta-photo {
  width: 200px;
  height: 200px;
  border-radius: 0;
  border: var(--border-thick);
  box-shadow: var(--shadow-brutal);
  margin: 2rem auto;
  object-fit: cover;
}

.cta-button {
  display: inline-block;
  background-color: var(--electric-blue);
  color: var(--pure-black);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 1.25rem 3rem;
  border: var(--border-thick);
  box-shadow: var(--shadow-brutal);
  text-decoration: none;
  font-weight: 900;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cta-button:hover {
  background-color: var(--hot-pink);
  color: var(--pure-white);
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 var(--pure-black);
}

.cta-button:active {
  transform: translate(8px, 8px);
  box-shadow: 0 0 0 var(--pure-black);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background-color: var(--pure-black);
  color: var(--pure-white);
  padding: 2rem;
  text-align: center;
  border-top: var(--border-thick);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer p {
  margin: 0;
  font-size: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  .cta-title {
    font-size: 2.25rem;
  }

  .cta-content {
    padding: 2rem;
  }

  .cta-button {
    font-size: 1.25rem;
    padding: 1rem 2rem;
  }

  .hero::before,
  .hero::after,
  .cta::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 3rem 1rem;
  }

  .article-content {
    padding: 3rem 1rem;
  }

  .cta {
    padding: 3rem 1rem;
  }

  .intro,
  .closing {
    padding: 1.5rem;
    font-size: 1.125rem;
  }

  .cta-photo {
    width: 150px;
    height: 150px;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .hero::before,
  .hero::after,
  .cta::before {
    display: none;
  }

  .cta-button {
    border: 2px solid black;
  }

  a {
    text-decoration: underline;
  }

  a[href^="http"]:after {
    content: " (" attr(href) ")";
  }
}
