/* =====================
   VARIABLES
===================== */
/* =====================
   TYPOGRAPHY
===================== */
@font-face {
  font-family: "Merriweather";
  src: url("../typography/Merriweather-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "Nunito";
  src: url("../typography/Nunito-Regular.ttf") format("truetype");
  font-weight: 400;
}
/* =====================
   RESET & BASE STYLES
===================== */
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  border: none;
  transition: all 0.3s ease;
  list-style: none;
  text-decoration: none;
  font-family: "Nunito";
}

body {
  background-color: #2d2c2d;
  overflow-x: hidden;
  color: #e4f1f5;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
picture,
video,
canvas,
svg {
  width: 100%;
}

/* =====================
   MIXINS
===================== */
/* =====================
   UTILITIES
===================== */
.bold {
  font-weight: 600;
}

.italic {
  font-style: italic;
}

.underline {
  text-decoration: underline;
}

.green-text {
  color: rgb(22, 148, 22);
}

.red-text {
  color: red;
}

.important-text {
  color: #db3451;
}

.hidden {
  opacity: 0;
  scale: 0.8;
}

.shown {
  opacity: 1;
  scale: 1;
}

hr {
  width: 100%;
  background-color: #2d2c2d;
  height: 2px;
}

/* =====================
   BUTTONS
===================== */
.btn {
  padding: 0.7rem 1.6rem;
  border-radius: 35px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  background: #222222;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  color: #e4f1f5;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.btn:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px) scale(1.03);
}
.btn:active {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 6px 6px 14px rgba(0, 0, 0, 0.2), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
  transform: scale(0.95);
}
@media screen and (min-width: 700px) {
  .btn {
    max-width: 250px;
  }
}

.ghost-btn {
  background: transparent;
  border: solid 2px #2d2c2d;
  color: #2d2c2d;
  transition: all 0.3s ease;
  background: #222222;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  color: #e4f1f5;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.ghost-btn:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px) scale(1.03);
}
.ghost-btn:active {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 6px 6px 14px rgba(0, 0, 0, 0.2), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
  transform: scale(0.95);
}
.ghost-btn:hover {
  box-shadow: 0 4px 12px rgba(228, 241, 245, 0.3);
  transform: translateY(-2px);
}
.ghost-btn:active {
  transform: scale(0.95);
  box-shadow: none;
}

/* =====================
   LAYOUT UTILITIES
===================== */
.body-content {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
}

section {
  padding: 1rem;
  max-width: 1200px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.section-title {
  color: #e4f1f5;
  text-transform: uppercase;
  font-size: 2rem;
  font-family: "Merriweather";
  letter-spacing: 2px;
  width: 100%;
  text-align: center;
  margin-bottom: 1rem;
}

.section-description {
  width: 100%;
  max-width: 700px;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  width: 100%;
}
@media screen and (min-width: 700px) {
  .two-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}

.show-up,
.show-down,
.show-left,
.show-right,
.bounce-in,
.rotate-left,
.rotate-right {
  opacity: 0;
}

.animated {
  opacity: 1;
}
.animated.show-up {
  animation: showUp 0.5s forwards;
}
.animated.show-down {
  animation: showDown 0.5s forwards;
}
.animated.show-left {
  animation: showLeft 0.5s forwards;
}
.animated.show-right {
  animation: showRight 0.5s forwards;
}
.animated.bounce-in {
  animation: bounceIn 0.5s forwards;
}
.animated.rotate-left {
  animation: rotateLeft 0.5s forwards;
}
.animated.rotate-right {
  animation: rotateRight 0.5s forwards;
}

/* ---------------------
   Keyframes
--------------------- */
@keyframes showUp {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes showDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes showLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes showRight {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.2);
    opacity: 1;
  }
  80% {
    transform: scale(0.95);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes rotateLeft {
  0% {
    transform: translateX(-100%) rotate(-45deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
@keyframes rotateRight {
  0% {
    transform: translateX(100%) rotate(45deg);
    opacity: 0;
  }
  100% {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: bold;
  max-height: 60px;
  z-index: 1000;
  overflow: hidden;
  background: #222222;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  color: #e4f1f5;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0;
}
.nav:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px) scale(1.03);
}
.nav:active {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 6px 6px 14px rgba(0, 0, 0, 0.2), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
  transform: scale(0.95);
}
@media screen and (min-width: 700px) {
  .nav {
    flex-direction: row;
    max-height: 70px;
  }
}
.nav .nav-icon-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .nav-icon-wrapper {
  display: flex;
  gap: 10px;
  align-items: center;
  text-wrap: nowrap;
}
.nav .nav-icon-wrapper .nav-icon {
  width: 100%;
  max-width: 40px;
}
@media screen and (min-width: 700px) {
  .nav .nav-icon-wrapper .nav-icon {
    max-width: 50px;
  }
}
.nav .nav-icon-wrapper .nav-title {
  font-size: 1.8rem;
  font-family: "Merriweather";
}
.nav .nav-links {
  display: none;
}
@media screen and (min-width: 700px) {
  .nav .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
}

.toggle-btn {
  background: none;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 35px;
  height: 30px;
  padding: 5px;
}
@media screen and (min-width: 700px) {
  .toggle-btn {
    display: none;
  }
}
.toggle-btn .bar {
  height: 3px;
  width: 100%;
  background-color: #db3451;
  border-radius: 2px;
}
.toggle-btn.toggled .bar:first-child {
  transform: rotate(45deg) translate(5px, 5px);
}
.toggle-btn.toggled .bar:last-child {
  transform: rotate(-45deg) translate(5px, -5px);
}
.toggle-btn.toggled .bar:nth-child(2) {
  opacity: 0;
}

.bottom-panel {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60vh;
  transform: translateY(100%);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #222222;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  color: #e4f1f5;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.bottom-panel:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px) scale(1.03);
}
.bottom-panel:active {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 6px 6px 14px rgba(0, 0, 0, 0.2), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
  transform: scale(0.95);
}
@media screen and (min-width: 700px) {
  .bottom-panel {
    display: none;
  }
}

.bottom-panel-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.bottom-panel-links .panel-link {
  font-size: 1.5rem;
}

.footer {
  background: #222222;
  color: #e4f1f5;
  padding: 3rem 1.5rem;
  font-family: "Merriweather", serif;
  text-align: center;
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
  align-items: center;
}
.footer .footer-column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer .footer-column h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer .footer-logo {
  max-width: 100px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}
.footer .footer-logo:hover {
  transform: scale(1.05);
}
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.footer .footer-links ul a {
  font-size: 0.95rem;
}
.footer .footer-social .social-media {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.footer .footer-social .social-media .social-link {
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3rem;
  background: #222222;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  color: #e4f1f5;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.footer .footer-social .social-media .social-link:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px) scale(1.03);
}
.footer .footer-social .social-media .social-link:active {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 6px 6px 14px rgba(0, 0, 0, 0.2), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
  transform: scale(0.95);
}
.footer .footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(45, 44, 45, 0.2);
  text-align: center;
  font-weight: 600;
}
.footer .footer-bottom .copyright {
  font-size: 0.9rem;
  color: rgb(83.6797752809, 81.8202247191, 83.6797752809);
  margin-top: 0.5rem;
}

/* =====================
   HEADER
===================== */
.header {
  height: 100vh;
  background: url("../assets/header.jpg");
  background-position: left top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.header::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.7) 90%);
  pointer-events: none;
}
@media screen and (min-width: 700px) {
  .header {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
}

.header-content {
  z-index: 2;
  padding: 2rem;
  width: 100%;
  color: #e4f1f5;
  text-align: left;
}
@media screen and (min-width: 700px) {
  .header-content {
    text-align: left;
    width: 45%;
  }
}

.header-title {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-family: "Merriweather";
}

.header-subtitle {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.cta-section {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media screen and (min-width: 700px) {
  .cta-section {
    justify-content: flex-start;
  }
}

/* =====================
   INSIGHTS SECTION
===================== */
.insights-section {
  margin-top: 2rem;
}

.insights-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
  width: 100%;
}

.insight-card {
  background: #222222;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  color: #e4f1f5;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  aspect-ratio: 1;
  border-radius: 15px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: default;
}
.insight-card:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px) scale(1.03);
}
.insight-card:active {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 6px 6px 14px rgba(0, 0, 0, 0.2), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
  transform: scale(0.95);
}
.insight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 6px 6px 14px rgba(0, 0, 0, 0.2), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
}
@media screen and (min-width: 700px) {
  .insight-card {
    padding: 1.5rem;
  }
}

.insight-header {
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  align-items: center;
}

.insight-icon {
  width: 100%;
  max-width: 30px;
  border-radius: 100dvh;
  padding: 0.3rem;
  box-shadow: inset 3px 3px 6px rgba(0, 0, 0, 0.25), inset -3px -3px 6px rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 700px) {
  .insight-icon {
    max-width: 50px;
  }
}

.insight-title {
  font-size: 1.3rem;
  font-weight: 600;
}

.insight-number {
  font-size: 2.5rem;
  font-weight: 800;
  align-self: flex-end;
  font-family: "Merriweather";
  letter-spacing: 1.5px;
}

/* =====================
   BEHAVIOR SECTION
===================== */
.behavior-section {
  background-color: #222222;
  padding-block: 3rem;
  max-width: none;
  width: 100%;
}

.accordion {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
}
@media screen and (min-width: 700px) {
  .accordion {
    grid-template-columns: repeat(3, 1fr);
  }
}

.accordion-item {
  background: #222222;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  color: #e4f1f5;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  background-color: #2d2c2d;
  overflow: hidden;
  max-width: 350px;
}
.accordion-item:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px) scale(1.03);
}
.accordion-item:active {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 6px 6px 14px rgba(0, 0, 0, 0.2), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
  transform: scale(0.95);
}
.accordion-item .accordion-header {
  width: 100%;
  padding: 1.2rem 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  background: none;
  color: #e4f1f5;
}
.accordion-item .accordion-header .accordion-icon {
  max-width: 40px;
}
.accordion-item .accordion-header .accordion-plus-icon {
  font-size: 1.5rem;
}
.accordion-item .accordion-header.active .accordion-plus-icon {
  transform: rotate(45deg);
}
.accordion-item .accordion-content {
  max-height: 0px;
  overflow: hidden;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.accordion-item .accordion-content img {
  border-radius: 15px;
}
.accordion-item .accordion-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: #e4f1f5;
  margin-bottom: 1rem;
}
.accordion-item.open .accordion-content {
  padding: 1rem;
  max-height: 500px;
}

/* =====================
   MYTHOLOGY SECTION
===================== */
.mythology-section {
  text-align: center;
  max-width: none;
  padding: 0;
}
.mythology-section .section-description {
  padding: 1rem;
}
.mythology-section .norse {
  background-image: url("../assets/cultures/norse.jpg");
  background-position: right;
}
.mythology-section .native {
  background-image: url("../assets/cultures/native-american.jpg");
}
.mythology-section .celtic {
  background-image: url("../assets/cultures/celtic.jpg");
}
.mythology-section .greek-roman {
  background-image: url("../assets/cultures/greek-roman.jpg");
}
.mythology-section .asian {
  background-image: url("../assets/cultures/asian.jpg");
}

.mythology-container {
  width: 100%;
  aspect-ratio: 3/4;
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
}
@media screen and (min-width: 700px) {
  .mythology-container {
    aspect-ratio: 2;
  }
}

.mythology-feature {
  scroll-snap-align: start;
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e4f1f5;
  background-size: cover;
  background-position: center;
  overflow-y: hidden;
  background-position: top;
}
.mythology-feature .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.mythology-feature .content {
  position: relative;
  max-width: 700px;
  padding: 2rem;
  text-align: center;
}
.mythology-feature .content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.mythology-feature .content p {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* =====================
   CONSERVATION SECTION
===================== */
.conservation-section {
  text-align: center;
}
.conservation-section .conservation-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.conservation-section .conservation-card {
  background: #222222;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  color: #e4f1f5;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  border-radius: 15px;
  position: relative;
  text-align: left;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.conservation-section .conservation-card:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px) scale(1.03);
}
.conservation-section .conservation-card:active {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 6px 6px 14px rgba(0, 0, 0, 0.2), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
  transform: scale(0.95);
}
.conservation-section .conservation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 6px 6px 14px rgba(0, 0, 0, 0.2), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
}
.conservation-section .conservation-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
}
.conservation-section .conservation-card .conservation-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.conservation-section .conservation-card .conservation-text {
  font-size: 1.1rem;
  line-height: 1.5;
  /* .highlight {
  	font-weight: 700;
  	color: $accent-color;
  } */
}
.conservation-section .conservation-card:nth-child(1)::before {
  background: #3b82f6;
}
.conservation-section .conservation-card:nth-child(2)::before {
  background: #f97316;
}
.conservation-section .conservation-card:nth-child(3)::before {
  background: #22c55e;
}
.conservation-section .conservation-card:nth-child(4)::before {
  background: #a855f7;
}
.conservation-section .conservation-card:nth-child(5)::before {
  background: #eab308;
}
.conservation-section .conservation-card:nth-child(6)::before {
  background: #ec4899;
}

/* =====================
   GALLERY SECTION
===================== */
.gallery-section .section-title,
.gallery-section .section-subtitle {
  color: #2d2c2d;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 150px;
  gap: 0.75rem;
  width: 100%;
}
.gallery-container .btn {
  max-width: none;
}
.gallery-container:hover .gallery-item:not(:hover) {
  filter: grayscale(1);
}
@media screen and (min-width: 700px) {
  .gallery-container {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 1.25rem;
  }
}

.gallery-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 35px;
  cursor: pointer;
  position: relative;
  background: #222222;
  border-radius: 15px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  color: #e4f1f5;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.gallery-item:hover {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 4px 4px 12px rgba(255, 255, 255, 0.04), inset -4px -4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px) scale(1.03);
}
.gallery-item:active {
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.3), inset 6px 6px 14px rgba(0, 0, 0, 0.2), inset -4px -4px 10px rgba(255, 255, 255, 0.05);
  transform: scale(0.95);
}
.gallery-item:hover {
  transform: scale(1.03);
  filter: brightness(1.1) saturate(1.1);
}
.gallery-item:nth-child(1) {
  grid-row: span 2;
}
.gallery-item:nth-child(4) {
  grid-column: span 2;
}
.gallery-item:nth-child(6) {
  grid-row: span 2;
}
@media screen and (min-width: 700px) {
  .gallery-item:nth-child(1) {
    grid-row: auto;
  }
  .gallery-item:nth-child(2) {
    grid-row: span 2;
  }
  .gallery-item:nth-child(3) {
    grid-column: span 2;
  }
  .gallery-item:nth-child(4) {
    grid-column: auto;
  }
  .gallery-item:nth-child(6) {
    display: none;
  }
}

/*# sourceMappingURL=style.css.map */
