/* ===========================
   Base & Reset
   =========================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

:root {
  --dark-bg: rgba(15, 15, 15, 0.95);
  --spacing: 350px;
  font-family: brandon-grotesque, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* ===========================
   Canvas (ThreeJS background)
   =========================== */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ===========================
   Typography
   =========================== */
h1, h2, h3, blockquote {
  font-family: elevon, sans-serif;
  font-weight: 700;
  font-style: normal;
}

h2 {
  margin-top: 50px;
}

p.small {
  font-size: 10px;
}

a {
  text-decoration: none;
  color: yellow;
  font-weight: bold;
}

a:hover {
  color: orange;
  font-weight: bolder;
}

/* ===========================
   Layout — Main Grid
   =========================== */
main {
  width: 100%;
  color: white;
  min-height: 100vh;
  z-index: 99;
  position: absolute;
  margin: 0 auto;
  padding: 120px 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

/* ===========================
   Header
   =========================== */
header {
  background: var(--dark-bg);
  grid-column: 2 / span 5;
  font-size: 2.5rem;
  padding: 2rem;
  margin-bottom: var(--spacing);
}

/* ===========================
   Sections
   =========================== */
section {
  grid-column: 2 / 8;
  padding: 1.5rem 2rem;
  background: var(--dark-bg);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: var(--spacing);
}

.left {
  grid-column: 6 / 12;
}

.content-container {
  margin-top: 50px;
}

/* ===========================
   Blockquote
   =========================== */
blockquote {
  margin: 0;
  padding: 0;
  grid-column: 2 / span 9;
  margin-bottom: var(--spacing);
}

blockquote p {
  color: black;
  background-color: white;
  font-size: 5rem;
  display: inline;
  line-height: 1.3;
  margin-top: 50px;
}

blockquote a {
  color: rgb(112, 0, 173);
}

/* ===========================
   Donate Section
   =========================== */
.donate-section {
  text-align: center;
}

.donate-btn-wrapper {
  margin: 2rem 0 1rem;
}

.paypal-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0070ba;
  color: #ffffff !important;
  font-family: brandon-grotesque, sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(0, 112, 186, 0.4);
  letter-spacing: 0.5px;
}

.paypal-btn:hover {
  background: #005ea6;
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 112, 186, 0.6);
}

.paypal-icon {
  font-size: 1.4rem;
}

/* ===========================
   Skills Section
   =========================== */
.skills-section h2 {
  margin-bottom: 2rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
  margin-top: 1rem;
}

.skill-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.skill-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.skill-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.skill-info {
  flex: 1;
  min-width: 0;
}

.skill-info h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.3px;
}

.skill-info p {
  margin: 0 0 0.75rem 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.65);
}

.skill-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.skill-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, #f5c400, #ff8c00);
  transition: width 0.6s ease;
}

/* ===========================
   Mobile — Full Responsive
   =========================== */
@media (max-width: 768px) {
  :root {
    --spacing: 120px;
  }

  main {
    grid-template-columns: 1fr;
    padding: 40px 0 80px;
  }

  header {
    grid-column: 1 / -1;
    font-size: 1.6rem;
    padding: 1.5rem;
    margin-bottom: var(--spacing);
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 8px;
  }

  section {
    grid-column: 1 / -1;
    font-size: 1rem;
    padding: 1.2rem 1.2rem;
    margin-bottom: var(--spacing);
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 8px;
    line-height: 1.7;
  }

  .left {
    grid-column: 1 / -1;
    margin-left: 1rem;
    margin-right: 1rem;
    border-radius: 8px;
  }

  blockquote {
    grid-column: 1 / -1;
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: var(--spacing);
  }

  blockquote p {
    font-size: 2rem;
    line-height: 1.4;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.4rem;
    margin-top: 30px;
  }

  h3 {
    font-size: 1.1rem;
  }

  .paypal-btn {
    font-size: 1rem;
    padding: 14px 28px;
  }

  ul {
    padding-left: 1.2rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .skill-icon {
    font-size: 1.6rem;
  }

  .skill-info h3 {
    font-size: 0.95rem;
  }

  .skill-info p {
    font-size: 0.82rem;
  }
}

@media (max-width: 480px) {
  header {
    font-size: 1.3rem;
  }

  blockquote p {
    font-size: 1.5rem;
  }

  .paypal-btn {
    font-size: 0.95rem;
    padding: 12px 22px;
  }
}
