/* ====================================================
   MENTAL INSANITY MASTER CSS
   Author: CJ Jordan
   Last Updated: 1/17/2026 3:45am
   Purpose: Global styles for MentalInsanity.com
==================================================== */

/* ========== GLOBAL RESET & STRUCTURE ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Prevent horizontal scrolling */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  background-color: #0a0a0a;
  color: #c1b49a;
  font-family: 'IM Fell English SC', serif;
  line-height: 1.6;
  background-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');
}

/* ========== HEADER & NAVIGATION ========== */
header {
  background-color: #0a0a0a;
  padding: 1rem;
  text-align: center;
  border-bottom: 2px solid #660000;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.5rem;
}

nav a {
  text-decoration: none;
  color: #c1b49a;
  font-weight: bold;
  font-family: 'Cinzel', serif;
  transition: all 0.3s ease;
}

nav a:hover,
nav a.active {
  color: #ff1a1a;
  text-shadow: 0 0 5px #b30000, 0 0 15px #ff0000;
}

/* ========== HERO SECTION ========== */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 4rem 2rem;
}

.hero-text {
  max-width: 700px;
  text-align: center;
  overflow-wrap: break-word;
}

.hero-image {
  width: 100%;
  max-width: 400px; /* Desktop cap */
  height: auto;
  display: block;
  border: 2px solid #330000;
  box-shadow: 0 0 20px #b30000;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #ff1a1a;
  text-shadow: 0 0 10px #b30000, 0 0 20px #ff0000;
  font-family: 'Cinzel', serif;
}

.hero-text p {
  font-size: 1.1rem;
  margin: 0.5rem auto;
}

/* ========== LARGE SCREEN BOOST ========== */
@media (min-width: 1200px) {
  .hero-image {
    max-width: 500px; /* Slightly bigger on wide monitors */
  }
}

/* ========== CONTENT SECTIONS ========== */
.content-section {
  padding: 3rem 2rem;
  border-top: 1px solid #330000;
  text-align: center;
}

.content-section h2 {
  color: #ff1a1a;
  margin-bottom: 1rem;
  text-shadow: 0 0 5px #b30000;
  font-family: 'Cinzel', serif;
}

/* ========== FOOTER ========== */
footer {
  background-color: #0a0a0a;
  text-align: center;
  padding: 1rem;
  border-top: 2px solid #660000;
  margin-top: 2rem;
  font-size: 0.9rem;
}

.note {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

/* ========== CONTACT LINE ========== */
.contact-line {
  font-size: 0.9rem;
  color: #c1b49a;
  margin-bottom: 0.5rem;
}

.contact-line a {
  color: #ff1a1a;
  text-decoration: none;
  font-weight: bold;
}

.contact-line a:hover {
  text-decoration: underline;
}

/* ========== DONATE SECTION ========== */
.donate-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #0a0a0a;
}

.donate-card {
  background-color: #111;
  border: 1px solid #330000;
  box-shadow: 0 0 20px #66000088;
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 12px;
}

.donate-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  color: #ff1a1a;
  text-shadow: 0 0 8px #b30000;
  margin-bottom: 1rem;
}

.donate-desc {
  font-size: 1.05rem;
  color: #c1b49a;
  margin-bottom: 1.5rem;
}

.donate-button {
  display: inline-block;
  background-color: #1a0000;
  color: #ff1a1a;
  font-weight: bold;
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid #b30000;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px #b30000;
  transition: all 0.2s ease;
}

.donate-button:hover {
  background-color: #330000;
  color: #fff;
  text-shadow: 0 0 10px #ff1a1a;
}

.donate-quick {
  margin-bottom: 1rem;
}

.donate-quick a {
  margin: 0 0.4rem;
  color: #ff1a1a;
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.2s;
}

.donate-quick a:hover {
  color: #fff;
}

.donate-note {
  font-size: 0.85rem;
  color: #887c6f;
  font-style: italic;
}

/* ========== MOBILE OPTIMIZATION ========== */
@media (max-width: 768px) {
  body {
    font-size: 1rem;
    padding: 1rem;
  }

  nav ul {
    flex-direction: column;
    gap: 1rem;
  }

  nav a {
    padding: 0.5rem 0;
  }

  .hero-container {
    flex-direction: column;
    align-items: center;
  }

  .hero-text {
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-image {
    max-width: 100%;
  }

  .content-section {
    padding: 2rem 1rem;
  }

  .donate-card {
    padding: 1.5rem;
  }
}

/* ================================
   DEBUG TOOLS – COMMENT TO DISABLE
================================ */
/*
* {
  outline: 1px solid red;
}
*/
