/* =====================================================
   LIFE ON LAND - FINAL PROJECT SHOWCASE
   EMPATHIZE COLOR STYLE
===================================================== */


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

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: #edf6f1 !important;

  color: #26382b !important;

  font-family:
    Arial,
    Helvetica,
    sans-serif;

  line-height: 1.6;
}


/* =====================================================
   PAGE CONTAINER
===================================================== */

.container {
  width: 90%;

  max-width: 1100px;

  margin: 40px auto;
}


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

.page-header {
  background: #2b6d40 !important;

  color: #ffffff !important;

  text-align: center;

  padding: 35px 20px;

  border-radius: 14px;

  margin-bottom: 30px;

  box-shadow:
    0 4px 12px
    rgba(35, 82, 52, 0.15);
}


.page-header h1 {
  margin: 0 0 10px;

  font-size: 38px;

  color: #ffffff !important;
}


.page-header p {
  margin: 0;

  font-size: 18px;

  color: #ffffff !important;
}


/* =====================================================
   SECTION CARDS
===================================================== */

.section {
  background: #ffffff !important;

  padding: 28px;

  margin-bottom: 25px;

  border-left:
    6px solid #7db58d !important;

  border-radius: 10px;

  box-shadow:
    0 3px 10px
    rgba(35, 82, 52, 0.10);
}


/* =====================================================
   SECTION HEADINGS
===================================================== */

.section h2 {
  color: #2d7148 !important;

  margin-top: 0;

  margin-bottom: 18px;

  font-size: 28px;

  border-bottom:
    2px solid #9bc8a8;

  padding-bottom: 10px;
}


.section h3 {
  color: #17633f !important;

  margin-top: 22px;

  margin-bottom: 8px;
}


.section p {
  margin-bottom: 15px;

  color: #26382b !important;
}


.section ul {
  padding-left: 25px;
}


.section li {
  margin-bottom: 8px;

  color: #26382b !important;
}


/* =====================================================
   HIGHLIGHT BOX
===================================================== */

.highlight {
  background: #eef7f1 !important;

  border-left:
    5px solid #7db58d !important;

  padding: 18px;

  margin: 18px 0;

  border-radius: 6px;
}


.highlight strong {
  color: #17633f !important;
}


.highlight p {
  color: #26382b !important;
}


/* =====================================================
   DESIGN THINKING
===================================================== */

.design-thinking {
  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 15px;

  margin-top: 20px;
}


.stage {
  background: #f4f9f5 !important;

  padding: 18px;

  border-radius: 10px;

  text-align: center;

  border:
    2px solid #a9cfb5 !important;
}


.stage h3 {
  margin-top: 0;

  color: #28683d !important;
}


.stage p {
  color: #3c5146 !important;
}


/* =====================================================
   FEATURES
===================================================== */

.features {
  display: grid;

  grid-template-columns:
    repeat(3, 1fr);

  gap: 18px;

  margin-top: 20px;
}


.feature-card {
  background: #f4f9f5 !important;

  padding: 20px;

  border-radius: 10px;

  border:
    2px solid #a9cfb5 !important;

  text-align: center;
}


.feature-card h3 {
  margin-top: 0;

  color: #17633f !important;
}


.feature-card p {
  color: #3c5146 !important;
}


.feature-icon {
  font-size: 38px;

  margin-bottom: 8px;
}


/* =====================================================
   PRESENTATION OUTLINE
===================================================== */

.presentation-item {
  background: #f8fbf9 !important;

  border:
    1px solid #d3e5da !important;

  padding: 18px;

  margin-bottom: 14px;

  border-radius: 8px;
}


.presentation-item strong {
  color: #28683d !important;

  font-size: 18px;
}


.presentation-item p {
  color: #26382b !important;
}


/* =====================================================
   PROTOTYPE BUTTON
===================================================== */

.prototype-button {
  display: inline-block;

  background: #28683d !important;

  color: #ffffff !important;

  text-decoration: none;

  padding: 12px 24px;

  border-radius: 7px;

  font-weight: bold;

  margin-top: 10px;

  transition:
    0.3s ease;
}


.prototype-button:hover {
  background: #1f5331 !important;

  transform:
    translateY(-2px);
}


/* =====================================================
   LINKS
===================================================== */

a {
  color: #286f49 !important;

  font-weight: bold;
}


a:hover {
  color: #174b31 !important;
}


/* =====================================================
   CLOSING MESSAGE
===================================================== */

.closing {
  background: #2b6d40 !important;

  color: #ffffff !important;

  text-align: center;

  padding: 30px;

  border-radius: 12px;

  margin-top: 30px;
}


.closing h2 {
  margin-top: 0;

  color: #ffffff !important;
}


.closing p {
  color: #ffffff !important;
}


.quote {
  font-size: 22px;

  font-weight: bold;

  font-style: italic;

  margin: 20px auto;

  max-width: 850px;

  color: #ffffff !important;
}


/* =====================================================
   RESPONSIVE - TABLET
===================================================== */

@media (max-width: 900px) {

  .design-thinking {
    grid-template-columns:
      repeat(2, 1fr);
  }


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

}


/* =====================================================
   RESPONSIVE - MOBILE
===================================================== */

@media (max-width: 600px) {

  .container {
    width: 94%;

    margin: 20px auto;
  }


  .page-header {
    padding:
      30px 15px;
  }


  .page-header h1 {
    font-size: 30px;
  }


  .page-header p {
    font-size: 16px;
  }


  .section {
    padding: 20px;
  }


  .section h2 {
    font-size: 24px;
  }


  .design-thinking {
    grid-template-columns: 1fr;
  }


  .quote {
    font-size: 18px;
  }

}