:root{
    --color1: #0B6E4F;
    --color2: #DD7596;
    --color3: #073B3A;
    --color4: #D4A373;
    --color5: #4F6272;
    --font-dark: #000000;
    --font-light: #ffffff;
    --font-alt: #E8D8C4;
    --font-gold: #D4A373;
    --common-font: "Arial", sans-serif;font-weight: 400;
    font-style: normal;;
    --hero-font: "Noto Serif", serif, sans-serif; font-weight: 800;
    font-style: normal;;
    --hero-sub-font: "Arial", sans-serif; font-weight: 100;
    font-style: normal;;
    --header-font: "Noto Serif", serif, sans-serif; font-weight: 400;
    font-style: normal;;
    --paragraph-font: "Arial", sans-serif;font-weight: 400; font-style: normal;;
    --footer-font: "Arial", sans-serif; font-weight: 400;
    font-style: normal;;
    --container-padding: 20px;
  }
/* body */
body{
    margin: 0;
    box-sizing: border-box;
    font-family: var(--common-font);
    color: var(--font-light);
    vertical-align: middle;
    background-color: var(--font-alt);
}
/* Text */
h1{
    font-family: var(--hero-font);
    color: var(--font-alt);
    font-style: normal;
    font-size: 4.4rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}
h1::after {
    content: '';
    display: block;
    width: 150px;
    height: 5px;
    background-color: var(--color4);
    margin-top: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
@media screen and (max-width: 768px) {
    h1 {
        font-family: var(--hero-font);
        font-style: normal;
        font-size: 2.4rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
    }
    
  }

  /* Global Heading Styling */
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--header-font);
    position: relative;
    margin-bottom: 20px;
    color: var(--font-dark);
  }
  
  h2::after, h3::after, h4::after, h5::after, h6::after {
    content: '';
    display: block;
    width: 50px;
    height: 5px;
    background-color: var(--color4);
    margin-top: 10px;
  }
  p{
    font-family: var(--paragraph-font);
    color: var(--font-light);
    font-style: normal;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: var(--font-dark);
  }

  p.info{
    font-family: var(--header-font);
    color: var(--font-dark);
    font-style: italic;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  a{
    color: var(--font-gold);
    font-family: var(--header-font);
    transition: all .3s ease-in;
    background-position: right bottom;
  }

  a:hover{
    text-decoration: underline;
  }

  ol, ul{
    margin: 20px 40px;
}

/* Hide at mobile view */
@media screen and (max-width: 900px) {
  .hide {
      display: none;
  }  
}

/* Add a container around the image */
.image-container {
  position: relative;
  display: inline-block;
}

/* img */
.img-em {
  width: 100%;
  height: auto;
  position: relative;
  top: 85px;
  left: 25%;
  bottom: 0px;
  border-radius: 0 0 45% 25%;
  mask-image: linear-gradient(to bottom, black 100%, transparent 100%);
  z-index: 100;
}


/* Add circles using pseudo-elements */
.image-container::before,
.image-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.75;
}

.image-container::before {
    width: 100%;
    height: 85%;
    background-color: var(--color4);
    top: 10%;
    left: 5%;
    overflow: hidden;

}

.image-container::after {
    width: 100%;
    height: 85%;
    background-color: var(--color2);
    bottom: -50%;
    right: -15%;
    overflow: hidden;
    mask-image: linear-gradient(to bottom, black 10%, transparent 100%);

}
/* Hero */
.hero {
  background: rgb(18,19,19);
  background: linear-gradient(130deg, rgba(18,19,19,1) 0%, rgba(7,59,58,1) 50%, rgba(11,110,79,1) 100%);
  box-shadow: 0 2px 4px #171717;
  align-content: center;
  text-align: center;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  flex-direction: column; /* Stack content vertically */
  margin-top: -100px;
  padding-top: 100px;
  padding-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero p{ font-family: var(--paragraph-font);
  color: var(--font-alt);
  font-style: normal;
  font-size: 2.2rem;
}

.hero p.content{
  font-family: var(--paragraph-font);
  color: var(--font-light);
  font-style: normal;
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--font-alt);

}

.hero p.info{
  font-family: var(--header-font);
  color: var(--font-alt);
  font-style: italic;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.hero h1{
  font-family: var(--hero-font);
  color: var(--font-alt);
  font-style: normal;
  font-size: 4.4rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);}

.hero h1::after {
  content: '';
  display: none;
  width: 90%;
  height: 5px;
  background-color: var(--color4);
  margin-top: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

@media screen and (max-width: 900px) {
  .hero h1{
    font-family: var(--hero-font);
    color: var(--font-alt);
    font-style: normal;
    font-size: 2.4rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);}
}

/* Navigation */
.nav {
  position: relative; /* Make the nav stick to the top */
  top: 0; /* Align it to the top of the screen */
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center; /* Center the menu horizontally */
  align-items: center;
  background: transparent; /* Add a semi-transparent background */
  font-family: var(--header-font);
  z-index: 1000;
}
.nav::after {
  content: '';
  display: block;
  width: 60%; /* Set the border width to 75% */
  margin: 0 auto; /* Center the border */
  border-bottom: 2px solid var(--color4); /* Add the border */
}
@media screen and (max-width: 576px) {
.nav::after {
  content: '';
  display: none;
  width: 60%; /* Set the border width to 75% */
  margin: 0 auto; /* Center the border */
  border-bottom: 2px solid var(--color4); /* Add the border */
}
}

.menu {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 1.1rem;
  padding: 5px;
}

.menu li a {
  color: white;
  text-decoration: none;
  transition: all .3s ease-in;
  background-position: left bottom;
  width: 70px;

}

.menu li a:hover {
  width: 70px;
  height: auto;
  background-color: transparent;
  margin-top: 0px;
  background-position: left bottom;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 3px solid var(--color4); /* Add bottom border */
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
}



/* Footer */
footer {
  background: rgb(18,19,19);
  background: linear-gradient(130deg, rgba(18,19,19,1) 0%, rgba(7,59,58,1) 50%, rgba(11,110,79,1) 100%);
  color: #fff;
  padding: 20px 0;
  overflow: hidden;
  width: auto;
}

footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  padding-bottom: 20px;
}

footer h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--font-light);
}

footer p, footer ul, footer a {
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0;
}

footer ul {
  list-style: none;
  padding: 0;
}

footer ul li {
  margin-bottom: 5px;
}

footer a:hover {
  text-decoration: underline;
}

hr{
  margin-bottom: 20px;
}

.footer .logo {
  width:40px;
  height:auto;
}

/* Crisis section in footer */

.crisis{
  font-style: normal;
  font-size: 1.2rem;
  background-color: var(--font-alt);
  border-radius: 30px;
  border: .5px solid var(--font-dark);
  margin-top: 20px;
  box-shadow: 0 2px 4px #171717;
  width: 80%;
}
.crisis h3{
color: var(--font-dark);
}
.crisis p{
  color: var(--font-dark);
  }

.crisis a{
  color: var(--font-dark);
  }

/* Media query for mobile view */
@media screen and (max-width: 768px) {
  .image-container {
      display: block;
      width: 100%;
      text-align: center;
  }

  .image-container img {
      width: 70%;
      height: auto;
      top: 10px;
      left: 10%;
      border-radius: 0;
      mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  }

  .image-container::before {
      width: 20%;
      height: 20%;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
  }

  .image-container::after {
      width: 150px;
      height: 150px;
      bottom: -5%;
      right: 80%;
      transform: translateX(50%);
  }
}

/*button*/
button{
    margin-top: 20px;
    margin-bottom: 10px;
    background-color: var(--color4);
    color: var(--font-light);
    padding: 10px 40px;
    border-radius: 40px;
    cursor: pointer;
    font-family: var(--hero-font);
    font-weight: 800;
    font-style: normal;
    font-size: 1.2rem;
    transition: background-color 0.3s ease,box-shadow 0.3s ease;
    border: none;
    outline: none;
}
button:hover {
    background-color: #b08860;
    box-shadow: 0 2px 4px #171717;

}

/* Accordion */
/* Core styles/functionality */
.tab {
  position: relative;
}
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}
.tab input:checked ~ .tab__content {
  max-height: 50rem;
}

/* Visual styles */
.accordion {
  border: 2px solid;
  border-radius: 0.5rem;
  overflow: hidden;    
  border: #b08860 .5px solid;
  background-color: #d8c9b6;
  columns: var(--font-dark);
}
.tab__label,
.tab__close {
  display: flex;
  background: var(--color4);
  cursor: pointer;
  font-family: var(--header-font);
  font-weight: 600;
  box-shadow: 0 1px 2px #171717;
}
.tab__label {
  justify-content: space-between;
  padding: 1rem;
}
.tab__label::after {
  content: "\2795";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
  color: var(--font-light);
}
.tab input:checked + .tab__label::after {
  content: "\2796";

}
.tab__content p {
  margin: 0;
  padding: 1rem;
  color: var(--font-dark);
  line-height: 1.2;
}
.tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}
.accordion--radio {
  --theme: var(--secondary);
}

/* Arrow animation 
.tab input:not(:checked) + .tab__label:hover::after {
  animation: bounce .5s infinite;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-.25rem);
  }
} */


/*container*/
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}
/*responsive breakpoints*/
  @media (min-width: 768px) {
    .container {
    max-width: 720px;
    margin-right: 30px;
    margin-left: 30px;
    }
  }
  
  @media (min-width: 992px) {
    .container {
    max-width: 960px;
    margin-right: 30px;
    margin-left: 30px;
    }
  }
  
  @media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    margin-right: 30px;
    margin-left: 30px;
    }
  }

  /* Row: Defines a flex container for layout rows */
  .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
  }
  
  /* Columns */
  /* Applies column styles for responsive grid layout */
  [class*='col-'] {
    position: relative;
    width: 100%;
    padding: 20px;
    margin: 0 10px;
  }
  
  /* Extra small devices column widths */
  .col-xs-1 { width: 8.33%; }
  .col-xs-2 { width: 16.66%; }
  .col-xs-3 { width: 25%; }
  .col-xs-4 { width: 33.33%; }
  .col-xs-5 { width: 41.66%; }
  .col-xs-6 { width: 50%; }
  .col-xs-7 { width: 58.33%; }
  .col-xs-8 { width: 66.66%; }
  .col-xs-9 { width: 75%; }
  .col-xs-10 { width: 83.33%; }
  .col-xs-11 { width: 91.66%; }
  .col-xs-12 { width: 100%; }
  .col-xs-12 { width: 100%; }
  /* Shared column widths */
  [class*='col-'] {
    position: relative;
    width: 100%;
    padding: 10px;
  }

  .col-1 { width: 8.33%; }
  .col-2 { width: 16.66%; }
  .col-3 { width: 25%; }
  .col-4 { width: 33.33%; }
  .col-5 { width: 41.66%; }
  .col-6 { width: 50%; }
  .col-7 { width: 58.33%; }
  .col-8 { width: 66.66%; }
  .col-9 { width: 75%; }
  .col-10 { width: 83.33%; }
  .col-11 { width: 91.66%; }
  .col-12 { width: 100%; }

  /* Small devices (tablets) */
  @media (min-width: 576px) {
    [class*='col-sm-'] {
      padding: 20px;
    }
  }
  
  /* Medium devices (desktops) */
  @media (min-width: 768px) {
    .col-md-1 { width: 8.33%; }
    .col-md-2 { width: 16.66%; }
    .col-md-3 { width: 25%; }
    .col-md-4 { width: 33.33%; }
    .col-md-5 { width: 41.66%; }
    .col-md-6 { width: 50%; }
    .col-md-7 { width: 58.33%; }
    .col-md-8 { width: 66.66%; }
    .col-md-9 { width: 75%; }
    .col-md-10 { width: 83.33%; }
    .col-md-11 { width: 91.66%; }
    .col-md-12 { width: 100%; }
  }
  
  /* Large devices (large desktops) */
  @media (min-width: 992px) {
    .col-lg-1 { width: 8.33%; }
    .col-lg-2 { width: 16.66%; }
    .col-lg-3 { width: 25%; }
    .col-lg-4 { width: 33.33%; }
    .col-lg-5 { width: 41.66%; }
    .col-lg-6 { width: 50%; }
    .col-lg-7 { width: 58.33%; }
    .col-lg-8 { width: 66.66%; }
    .col-lg-9 { width: 75%; }
    .col-lg-10 { width: 83.33%; }
    .col-lg-11 { width: 91.66%; }
    .col-lg-12 { width: 100%; }
  }
  
  /* Extra large devices (extra large desktops) */
  @media (min-width: 1200px) {
    .col-xl-1 { width: 8.33%; }
    .col-xl-2 { width: 16.66%; }
    .col-xl-3 { width: 25%; }
    .col-xl-4 { width: 33.33%; }
    .col-xl-5 { width: 41.66%; }
    .col-xl-6 { width: 50%; }
    .col-xl-7 { width: 58.33%; }
    .col-xl-8 { width: 66.66%; }
    .col-xl-9 { width: 75%; }
    .col-xl-10 { width: 83.33%; }
    .col-xl-11 { width: 91.66%; }
    .col-xl-12 { width: 100%; }
  }
  
/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}