/* =========================================
   THE CHATITO PROJECT
   Main Website Styles
   ========================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #050608;
  color: #ffffff;
  line-height: 1.6;
}


/* =========================================
   HEADER
   ========================================= */

header {
  background: #071a3d;
  padding: 22px 20px;
  text-align: center;
  border-bottom: 4px solid #f4c542;
}

header img {
  width: 190px;
  max-width: 80%;
}


/* =========================================
   NAVIGATION
   ========================================= */

nav {
  background: #111827;
  padding: 16px 10px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid #333;
}

nav a {
  color: #ffffff;
  text-decoration: none;
  margin: 5px 10px;
  font-weight: bold;
  display: inline-block;
  transition: color 0.2s ease;
}

nav a:hover {
  color: #f4c542;
}


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

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 70px 20px;

  background:
    linear-gradient(
      rgba(7, 26, 61, 0.88),
      rgba(5, 6, 8, 0.95)
    ),
    url("https://thechatitoproject.org/IMG_0096.jpeg")
    center/cover no-repeat;
}

.hero-content {
  max-width: 850px;
}

.eyebrow {
  color: #f4c542;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 15px;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1.08;
  margin: 20px 0;
}

.hero h1 span {
  color: #f4c542;
}

.hero p {
  max-width: 720px;
  margin: 20px auto;
  font-size: 20px;
  color: #eeeeee;
}


/* =========================================
   BUTTONS
   ========================================= */

.buttons {
  margin-top: 35px;
}

.button {
  display: inline-block;
  padding: 14px 25px;
  margin: 7px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: #f4c542;
  color: #050608;
}

.button-blue {
  background: #0878d1;
  color: #ffffff;
}

.button-dark {
  background: #111827;
  color: #ffffff;
  border: 1px solid #555;
}


/* =========================================
   FEATURED PRIORITY EVENT
   CHRISTMAS TOY DRIVE
   ========================================= */

.toy-drive-feature {
  position: relative;

  padding: 90px 20px;

  background:
    linear-gradient(
      135deg,
      #071a3d 0%,
      #081f49 45%,
      #050608 100%
    );

  text-align: center;

  border-top: 6px solid #f4c542;
  border-bottom: 6px solid #f4c542;

  overflow: hidden;
}


/* Decorative glow */

.toy-drive-feature::before {
  content: "";

  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  background: rgba(244, 197, 66, 0.08);

  top: -190px;
  left: -190px;

  pointer-events: none;
}

.toy-drive-feature::after {
  content: "";

  position: absolute;

  width: 380px;
  height: 380px;

  border-radius: 50%;

  background: rgba(8, 120, 209, 0.10);

  bottom: -190px;
  right: -190px;

  pointer-events: none;
}


.toy-drive-feature-container {
  position: relative;
  z-index: 2;

  max-width: 1000px;

  margin: 0 auto;
}


/* =========================================
   PRIORITY BADGE
   ========================================= */

.priority-badge {
  display: inline-block;

  padding: 11px 24px;

  margin-bottom: 20px;

  background: #f4c542;

  color: #050608;

  border-radius: 50px;

  font-size: 14px;

  font-weight: 900;

  letter-spacing: 1.5px;

  box-shadow:
    0 5px 25px rgba(244, 197, 66, 0.20);
}


.toy-drive-date {
  color: #f4c542;

  font-size: 15px;

  font-weight: bold;

  letter-spacing: 4px;

  margin-bottom: 12px;
}


.toy-drive-feature h2 {
  color: #ffffff;

  font-size: clamp(38px, 6vw, 62px);

  line-height: 1.08;

  margin: 10px 0 8px;
}


.toy-drive-feature h3 {
  color: #f4c542;

  font-size: clamp(26px, 4vw, 38px);

  line-height: 1.2;

  margin: 5px 0 22px;
}


.toy-drive-lead {
  max-width: 800px;

  margin: 0 auto 18px;

  font-size: 23px;

  font-weight: bold;

  color: #ffffff;
}


.toy-drive-message {
  max-width: 800px;

  margin: 0 auto 15px;

  font-size: 18px;

  line-height: 1.8;

  color: #dddddd;
}


/* =========================================
   AMAZON PRIORITY BOX
   ========================================= */

.amazon-priority-box {

  max-width: 850px;

  margin: 45px auto 0;

  padding: 40px;

  display: flex;

  align-items: center;

  gap: 30px;

  text-align: left;

  background:
    linear-gradient(
      145deg,
      #111827,
      #0c1424
    );

  border: 4px solid #f4c542;

  border-radius: 22px;

  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.55);

  position: relative;

  overflow: hidden;
}


/* Gold accent line */

.amazon-priority-box::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 6px;

  background: #f4c542;
}


/* =========================================
   AMAZON GIFT ICON
   ========================================= */

.amazon-gift-icon {

  flex: 0 0 95px;

  width: 95px;
  height: 95px;

  display: flex;

  align-items: center;
  justify-content: center;

  background: #f4c542;

  color: #050608;

  border-radius: 50%;

  font-size: 48px;

  box-shadow:
    0 8px 25px rgba(244, 197, 66, 0.18);
}


.amazon-priority-content {
  flex: 1;
}


.amazon-small-heading {

  color: #f4c542;

  font-size: 13px;

  font-weight: 900;

  letter-spacing: 2.5px;

  margin-bottom: 7px;
}


.amazon-priority-content h4 {

  color: #ffffff;

  font-size: 30px;

  line-height: 1.2;

  margin: 0 0 10px;
}


.amazon-priority-content p {

  color: #cccccc;

  font-size: 17px;

  margin: 0 0 22px;

  line-height: 1.65;
}


/* =========================================
   AMAZON REGISTRY BUTTON
   ========================================= */

.amazon-registry-button {

  display: block;

  width: 100%;

  padding: 19px 22px;

  background: #f4c542;

  color: #050608;

  text-align: center;

  text-decoration: none;

  border-radius: 11px;

  font-size: 18px;

  font-weight: 900;

  letter-spacing: 0.4px;

  border: 3px solid #f4c542;

  box-shadow:
    0 8px 25px rgba(244, 197, 66, 0.18);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}


.amazon-registry-button:hover {

  transform: translateY(-4px);

  background: #ffffff;

  color: #071a3d;

  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.45);
}


.amazon-note {

  margin-top: 16px;

  text-align: center;

  color: #f4c542;

  font-weight: bold;

  font-size: 15px;
}


.toy-drive-thank-you {

  max-width: 760px;

  margin: 30px auto 0;

  color: #cccccc;

  font-size: 16px;

  font-style: italic;

  line-height: 1.7;
}


/* =========================================
   GENERAL SECTIONS
   ========================================= */

.section {
  max-width: 1100px;
  margin: auto;
  padding: 75px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 45px;
}

.section-title h2 {
  color: #f4c542;
  font-size: 38px;
  margin-bottom: 10px;
}

.section-title p {
  max-width: 700px;
  margin: auto;
  color: #cccccc;
}


/* =========================================
   ABOUT / REMEMBERING CARLOS
   ========================================= */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.about-photo img {
  width: 100%;
  display: block;
  border-radius: 18px;
  border: 3px solid #f4c542;
}

.about-text h2 {
  font-size: 35px;
  margin-top: 0;
}

.about-text p {
  color: #dddddd;
}

.quote {
  margin-top: 25px;
  padding: 20px;
  border-left: 4px solid #f4c542;
  background: #111827;
  font-size: 20px;
  font-weight: bold;
}


/* =========================================
   WHY WE ARE HERE CARDS
   ========================================= */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: #111827;
  padding: 30px 24px;
  border-radius: 15px;
  border-top: 4px solid #f4c542;
}

.card h3 {
  color: #f4c542;
  font-size: 23px;
}

.card p {
  color: #cccccc;
}


/* =========================================
   BACK-TO-SCHOOL EVENT
   ========================================= */

.event-section {
  background: #071a3d;
  padding: 80px 20px;
  border-top: 3px solid #f4c542;
  border-bottom: 3px solid #f4c542;
}

.event-container {
  max-width: 1100px;
  margin: 0 auto;
}

.event-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px;
}

.event-eyebrow {
  color: #f4c542;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.event-header h2 {
  color: #ffffff;
  font-size: 42px;
  margin: 10px 0 20px;
}

.event-intro,
.event-text {
  color: #dddddd;
  font-size: 18px;
  line-height: 1.7;
}


/* =========================================
   202 FAMILIES STAT
   ========================================= */

.event-stat {
  margin: 30px auto;
  padding: 25px;
  max-width: 300px;
  background: #111827;
  border-radius: 15px;
  border: 2px solid #f4c542;
  text-align: center;
}

.event-stat strong {
  display: block;
  color: #f4c542;
  font-size: 52px;
  line-height: 1;
}

.event-stat span {
  display: block;
  margin-top: 8px;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* =========================================
   EVENT PHOTO GALLERY
   ========================================= */

.event-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.event-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #333;
  display: block;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease;
}

.event-gallery img:hover {
  transform: scale(1.02);
  border-color: #f4c542;
}


/* =========================================
   DONATION SECTION
   ========================================= */

.donation-section {
  background: #111827;
  padding: 75px 20px;
  text-align: center;
  border-top: 3px solid #f4c542;
  border-bottom: 3px solid #f4c542;
}

.donation-section .section-title {
  max-width: 800px;
  margin: 0 auto 35px;
}

.donation-section h2 {
  color: #f4c542;
  font-size: 38px;
  margin-bottom: 10px;
}

.donation-section p {
  color: #dddddd;
  font-size: 18px;
}


/* =========================================
   FINAL CALL TO ACTION
   ========================================= */

.cta {
  text-align: center;
  background: #071a3d;
  padding: 75px 20px;
  border-top: 3px solid #f4c542;
  border-bottom: 3px solid #f4c542;
}

.cta h2 {
  font-size: 40px;
  margin-top: 0;
}

.cta p {
  max-width: 700px;
  margin: 15px auto 25px;
  color: #dddddd;
  font-size: 18px;
}


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

footer {
  background: #111827;
  text-align: center;
  padding: 35px 20px;
  color: #aaaaaa;
}

footer strong {
  color: #f4c542;
}


/* =========================================
   TABLET
   ========================================= */

@media (max-width: 800px) {

  .about-grid {
    grid-template-columns: 1fr;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .event-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: 600px;
  }

  .amazon-priority-box {
    flex-direction: column;
    text-align: center;
    padding: 35px 28px;
  }

  .amazon-priority-content {
    width: 100%;
  }

  .amazon-priority-content h4 {
    font-size: 28px;
  }

}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 500px) {

  nav {
    padding: 13px 6px;
  }

  nav a {
    margin: 4px 5px;
    font-size: 13px;
  }


  /* HERO */

  .hero {
    min-height: 590px;
    padding: 55px 18px;
  }

  .hero p {
    font-size: 17px;
  }


  /* GENERAL */

  .section {
    padding: 55px 18px;
  }


  /* CTA */

  .cta h2 {
    font-size: 32px;
  }


  /* DONATION */

  .donation-section h2 {
    font-size: 32px;
  }


  /* EVENT */

  .event-section {
    padding: 60px 15px;
  }

  .event-header h2 {
    font-size: 32px;
  }

  .event-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .event-gallery img {
    height: auto;
  }


  /* =====================================
     TOY DRIVE MOBILE
     ===================================== */

  .toy-drive-feature {
    padding: 65px 15px 70px;
    border-top-width: 5px;
    border-bottom-width: 5px;
  }

  .priority-badge {
    font-size: 11px;
    padding: 9px 14px;
    letter-spacing: 1px;
  }

  .toy-drive-date {
    font-size: 12px;
    letter-spacing: 3px;
  }

  .toy-drive-feature h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .toy-drive-feature h3 {
    font-size: 25px;
    line-height: 1.2;
  }

  .toy-drive-lead {
    font-size: 19px;
    line-height: 1.5;
  }

  .toy-drive-message {
    font-size: 16px;
    line-height: 1.7;
  }


  /* AMAZON BOX */

  .amazon-priority-box {
    margin-top: 32px;

    padding: 30px 18px;

    gap: 17px;

    border-width: 3px;

    border-radius: 18px;
  }


  .amazon-gift-icon {
    width: 78px;
    height: 78px;

    flex-basis: 78px;

    font-size: 38px;
  }


  .amazon-small-heading {
    font-size: 11px;
    letter-spacing: 2px;
  }


  .amazon-priority-content h4 {
    font-size: 24px;
    line-height: 1.25;
  }


  .amazon-priority-content p {
    font-size: 15px;
    line-height: 1.6;
  }


  /* AMAZON BUTTON */

  .amazon-registry-button {
    font-size: 15px;

    padding: 17px 10px;

    line-height: 1.35;

    border-width: 2px;
  }


  .amazon-note {
    font-size: 14px;
  }


  .toy-drive-thank-you {
    font-size: 15px;
    padding: 0 8px;
  }

}
