@font-face {
    font-family: "styled-font";
    src: url(/static/fonts/belinda_w00_regular_Regular.ttf) format("truetype");
}

:root {
     --accent-color: #f89320;
    --styling-color: #13248a;
    --background-color: white;
    --dark-gray: #2F2E2E;
    --foreground-color: rgb(214, 0, 0);

    --fs-xl: 3rem;
    --fs-600: 1.50rem;
    --fs-500: 1.25rem;
    --fs-400: 1rem;
 
} 

@media (max-width: 85em) {
    :root {
        --fs-xl: 2rem;
        --fs-600: 1.25rem;
        --fs-500: 0.9rem;
        --fs-400: 0.875rem;
    }
}

@media (max-width: 60em) {
    :root {
        --fs-xl: 2.5rem;
        --fs-600: 1rem;
        --fs-500: 0.8rem;
        --fs-400: 0.5rem;
    }
}



html,
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(white);
    color: var(--styling-color)
}

.hero {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--background-color);
    background-position: center center;
    background-repeat: no-repeat;
}



.navbar-toggler {
    display: block;
    right: 2rem;
    width: 3rem;
    border-color: transparent;
}

#myBtn {
    position: fixed;
    bottom: 20px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
   
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    background-color: var(--accent-color--styling-color);
    background-image: url(/static/icons/chevron_up_g.svg);
    

}

#myBtn img {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
}

#myBtn:hover {
  background-color: var(--accent-color); /* Add a dark-grey background on hover */
  background-image: url(/static/icons/chevron_up_y.svg);
    
}

.arrowed-title {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--styling-color);
    margin: 3rem auto;
}

.arrowed-title img {
    padding: 0 1rem;
    margin: 2rem;
    width: 5rem;
}

.arrowed-title img:nth-of-type(2) {
    rotate: 180deg;
}


.offcanvas {
    display: none;
    background-color: var(--dark-gray) !important;
}

.offcanvas li a {
    color: whitesmoke;
    font-size: var(--fs-600);
}

.offcanvas-body {
    overflow-y: visible;
}

.card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: whitesmoke;
    margin-top: -1rem;
    margin: -5rem auto 1rem auto;
    box-shadow: #2F2E2E 0px 0px 10px 0px;
    color: var(--styling-color);
    font-weight: 600;
    border-radius: 15px;

}

.card img {
    rotate: 90deg;
    width: 4rem;
    height: 100%;
    object-fit: cover;
    padding: 1rem 0;
    margin: -3rem;
}   

.card h1 {
    margin: 0.5rem 0;
}


header {
    width: 100%;
    height: 7rem;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #2F2E2E;
    color: #ccc;
}

  .container {
    position: relative;
    display: inline-block;
    cursor: pointer;
  }
  
  .logo-no-text {
    display: block; /* Hide textless version by default */
    max-width: 50%;
        height: auto;

  }
  
  .logo-with-text {
    display: none; /* Show text version by default */
    max-width: 150%;
    height: auto;
  }

  .group-buttons{
    display: flex;
    flex-direction: row ;
    justify-content: center;
  }
  
  

.logo-container img {
    width: clamp(5rem, 150px, 20rem);    
    object-fit: cover;
}

@media (min-width: 1500px) {
    .logo-no-text {
      display: none; /* Hide text version on large screens */
    }
    
    .logo-with-text {
      display: block; /* Show textless version on large screens */
    }
  }

/* @media (max-width: 60em) {
    .logo-container {
        width: 60px;
        height: 60px;
    }

    .logo-container img {
        width: 55x;
        height: 5px;
    }
} */

#logo-text {
    width: clamp(60px, 2vw, 120px);
    height: clamp(60px, 2vw, 120px);
    font-weight: 600;

}s

.current-page {
    color: var(--accent-color--styling-color) !important;
    font-weight: 600;
}

.dropdown-menu {

    background-color: var(--dark-gray);
}

.dropdown-menu a {
    color: whitesmoke;
    font-weight: 200;
    font-size: clamp(1em, 5vw, 1.2em);
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.dropdown-menu a .dropdown-menu li:hover  {
    color: var(--accent-color) !important;
    transition: all 400ms;
}

.me-auto {
    margin: 0 auto !important;
}

.navbar.scss{
    height: 100px;
}

.container-fluid{
    display: flex;
    justify-content: flex-end !important;
    width: 100%;
    --bs-gutter-x: clamp(2rem, 5vw, 5rem) !important;
}

.navbar-nav{
    color: var(--accent-color);
    height: 100px!important;

}

.navbar-nav li {
    list-style: none;
    margin: auto 0.875em;
    font-size: var(--fs-400);;
}

.nav-link {
    color: var(--styling-color);
    font-weight: 600;
    font-size: clamp(1em, 5vw, 1.2em);
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--accent-color   ) !important;
    transition: all 400ms;
}

.bg-body-tertiary {
    background-color: whitesmoke !important;
    box-shadow: #2F2E2E;

}

.donate_btn {
    display: block;
    background-color: var(--styling-color);
    font-weight: 600;
    font-size: var(--fs-500);
    border: none;
    color:  white ;
    transition: all 400ms;
    margin-left: 0 0;
    padding: 0.5rem 1rem ;
    border-radius: 5px;
    height: auto;
}

.donate_btn:hover {
    background-color: var(--accent-color);
    color: var(--accent-color--styling-color);
    transition: all 400ms;
}


.socials {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    list-style: none;
    margin-top: 1rem;

}


.socials img{
    text-decoration: none;
    width: clamp(2rem, 5vw, 4rem );
    margin: auto 2rem;
}

.social-links:hover {
    cursor: pointer;
    scale: 1.1;
    transition: all 400ms;
}

footer{
    display: flex;
    flex-direction: column;
    background-color: var(--dark-gray);
    width: 100%;
    left: 0;
    margin-top: 2rem;
}

footer div p {
    text-align: center;
    color: #fff;
    padding: 1rem;
}

footer div ul {
    width: 15%;
    margin-right: 30px;
}

.footer-content {
    display: flex;
    justify-content: center;

}


.hero h1 {
    font-size: clamp(3rem, 7vw, 6rem);
    text-align: center;
    width: 50%;
    margin: 0;
}

.styled-font {
    font-family: "styled-font", sans-serif;
    font-size: 3rem;
    color: #ccc;
    text-align: center;
    
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
}

#main {
    display: none;
  transition: margin-left .5s;
  padding: 16px;
}

@media (max-width: 991px) {
    #main {
        display: block;
    }
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.vertical-line {
    width: 100px;
    background-color: var(--accent-color);
    height: 100%;
    margin: 0 2rem;
}

.hamburger {
  display: inline-block;
  height: 26px;
  margin-right: 27px;
  z-index: 1046;
}
  
    
    &.active-menu {
      &:after {
        transform: rotate(-45deg);
        transform-origin: center;
        top: 50%;
      }
      
      &:before {
        transform: rotate(45deg);
        transform-origin: center;
        top: 50%
      }
      
      i {
        opacity: 0;
      }
    }
  }
}

