/*Custom Properties*/

*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --ff-primary: "Instrument Sans", serif;
    --ff-secondary: ;

    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semi-bold: 600;
    --fw-bold: 700;

    --fs-900: 5rem;
    --fs-800: 4.5rem;
    --fs-700: 4rem;
    --fs-600: 3.5rem;
    --fs-500: 3rem;
    --fs-400: 2.5rem;
    --fs-300: 1.75rem;
    --fs-250: 1.25rem;
    --fs-200: 1rem;

    --clr-text-primary: #000000;
    --clr-text-secondary: #ffffff;
    --clr-text-dark: #555555;
    --clr-text-light: #A4A4A4;
    --clr-text-link: #7566e3;

    --clr-white: #ffffff;

    --fs-h1: 3rem;
    --fs-h2: 1.5rem;
    --fs-body: 1.5rem;
    --fs-nav: 1.2rem;

    --gap: 5rem;
}

@media (min-width: 20rem){
}

@media (min-width: 800px){

}

@media (min-width: 35em) {

}

@media (min-width: 45em) {
}

/* utility classes */

.fs-900 { font-size: var(--fs-900); }
.fs-800 { font-size: var(--fs-800); }
.fs-700 { font-size: var(--fs-700); }
.fs-600 { font-size: var(--fs-600); }
.fs-500 { font-size: var(--fs-500); }
.fs-400 { font-size: var(--fs-400); }
.fs-300 { font-size: var(--fs-300); }
.fs-200 { font-size: var(--fs-200); }

.fs-900,
.fs-800,
.fs-700,
.fs-600 {
    line-height: 1.1;
}


/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {  
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }

/* make form elements easier to work with */
input,
button,
textarea,
select {
    font: inherit;
}
  

/*General Styles*/

body {
    background-image: url(/imgs/Misc/backgrounds/pyramid\ 1.png);
    background-repeat: no-repeat;
    background-size: cover;

    font-family: var(--ff-primary);
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-body);
    line-height: 1.6;
    margin: 0;
    overflow-x: hidden;

    display: grid;
    grid-template-rows: min-content 1fr;
}

a {
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3 {
    line-height: 1.1;
    margin: 0;
}

h1 { font-size:var(--fs-h1) }
h2 { font-size: var(--fs-h2);}
h3 { font-size: var(--fs-body);}

@media (prefers-reduced-motion: reduce) {  
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}



.flex {
    display: flex;
    gap: var(--gap, 1rem);
}

.grid {
    display: grid;
    gap: var(--gap, 1rem);
}

.container {
    padding-inline: 2em;
    margin-inline: auto;
    max-width: 80rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; /* added line */
  border: 0;
}

/*nav*/

.navbar {
    display: flex;
    background-color: #ffffff;
}

.logo-seccion {
    display: flex;
    margin: auto;
    align-items: center;
    height: 100px;
}

.navbar-logo {
    width: 7.5rem;
    margin-inline: 0 2rem;
}

.navbar-heading > img{
    width: 664px;
    margin: auto;
}

.mobile-nav-toggle {
    display: none;
}

.nav {
    height: 70px;
    background-color: hsla(0,0%,100%, 0.75);
    display: grid;
}

.nav-borders {
    border-top: 10px solid;
    border-bottom: 10px solid;
    border-left: none;
    border-right: none;
    border-image: repeating-linear-gradient(to right, 
        #fca311 0%, #fca311 42px, 
        #2a9d8f 42px, #2a9d8f 84px, 
        #e63946 84px, #e63946 128px);
    border-image-slice: 1;
}

.primary-navigation {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    align-items: center;
}

.primary-navigation a {
    text-decoration: none;
    font-weight: var(--fw-bold);
    font-size: var(--fs-nav);
    color: #A4A4A4;
}

li > a.active {
    color: #555555;
}

.primary-navigation a:hover {
    color: var(--clr-text-link);
}

/*MOBILE LAYOUT*/

@media (max-width: 70rem) {

    header {
        height: 110px;
    }

    .navbar-heading {
        display: none;
    }

    .nav {
        background: none;
    }

    .nav-borders{
        border-bottom: none;
        height: 1px;
    }

    .primary-navigation {
        list-style: none;
        margin: 0;
        height: 100%;
        border: none;
        padding: min(20rem, 10vh) 6rem;
        padding-top: 7rem;
        display:flex;
        align-items: center;
        flex-direction: column;
        background: hsla(0, 0%, 100%, 1);
        position: fixed;
        inset: 0 0 0 10%;
        z-index: 2000;
        transform: translateX(100%);
        transition: transform 100ms ease-in-out;

    }

    .primary-navigation[data-visible="true"] {
        transform: translateX(0);
    }

    .mobile-nav-toggle {
        display: block;
        position: absolute;
        z-index: 3000;
        left: 50rem;
        top: 1rem;
        background: transparent;
        background-image: url(/imgs/Misc/buttons/icon-hamburger.svg);
        background-repeat: no-repeat;
        background-position: center;
        width: 5rem;
        aspect-ratio: 1;
        border: 0;
    }

    .mobile-nav-toggle[aria-expanded="true"] {
        background-image: url(/imgs/Misc/buttons/icon-close.svg);
    }

    .mobile-nav-toggle:focus-visible {
        outline: 5px solid rgb(150, 151, 255);
        outline-offset: 5px;
    }


    .primary-navigation a {
        text-decoration: none;
        font-weight: var(--fw-bold);
        font-size: 3rem;
        color: #555555;
    }

    li > a.active {
        color: #000000;
    }

    @supports (backdrop-filter: blur(1rem)) {
        .primary-navigation {
            background: hsla(0, 0%, 100%, 0.7);
            backdrop-filter: blur(1rem);     
        }
        
    }
}



/* HEADING */

.contact-heading {
    margin: auto;
    margin-top: 2.688rem;
    display: flex;
    flex-direction: column;
    padding: 1rem 2rem;
    box-shadow: 8px 8px .8px hsla(0, 0%, 30%, 0.25);
    background-color: white;
}

.contact-heading > h1 {
    font-size: 64px;
}

.contact-heading > h3 {
    font-size: 38px;
    margin: auto;
    margin-top: 1rem;
}

/*ELIANAS ICONS*/

.eliana-icons {
    display: flex;
    margin: auto;
    gap: 6.375rem;
    margin-top: 4rem;
}

.eliana-icons img{
    width: 16.75rem;
    border-radius: 3.5rem;
    box-shadow: 8px 8px .8px hsla(0, 0%, 30%, 0.25);
}

.ge-container {
    margin: auto;
    margin-top: 4rem;
    width: 70rem;
    height: 27.063rem;
    background-color: hsla(0, 0%, 0%, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 3.5rem;
}

.ge-container h2 {
    font-size: 4rem;
    font-weight:900px;
}

.ge-content {
    margin-top: 2rem;
    width: 62.25rem;
    height: 13.125rem;
    background-color: white;
    color: black;
    text-align: center;
    border-radius: 2rem;
}

.ge-content p {
    font-size: 1.5rem;
    font-weight: var(--fw-semi-bold);
}

.ge-content a{
    text-decoration: none;
    font-size: 2.25rem;
    color: #3961E6;
}

.ge-content a:hover{
    color: #8588a7;
}

.easter-egg-ge-profile {
    position: absolute;
    display: inline;
    width: 10rem;
    height: 6.5rem;
    margin: auto;
    margin-right: -59rem;
    margin-top: -10rem;
}

.easter-egg-ge-profile > img{
    width: 10rem;
    transform: rotate(-8.456deg);
    display: inline;
}

@media (min-width: 20rem) and (max-width: 50rem) {
    .easter-egg-ge-profile{
        display: none;
    }
    .eliana-icons {
        width: 50rem;
        gap: 3rem;
        border-radius: 1px;
    }

    .eliana-icons img {
        border-radius: 4rem;
    }

    .ge-container {
        width: 57rem;
        height: 30rem;
    }

    .ge-content {
        margin-top: 3rem;
        width: 50rem;
        height: 15rem;
    }
}

/*DONATIONS SECCION*/

.donations-container {
    margin: auto;
    margin-top: 4rem;
    width: 70rem;
    height: 36rem;
    background-color: hsla(0, 0%, 0%, 0.5);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 5.5rem;
}

.donations-container > h2 {
    font-size: 4rem;
    font-weight:900px;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 8px 8px .8px rgba(255, 255, 255, 0.25);
    padding: 0.9rem 1.5rem;
}

.don-content {
    text-align: center;
    background-color: white;
    color: black;
    font-weight: var(--fw-semi-bold);
    border-radius: 2.8rem;
    margin-top: 1.875rem;

    width: 62rem;
    height: 21.375rem;
}

.don-content > p {
    font-size: 20px;
    width: 56.188rem;
    margin: auto;
    margin-top: 2rem;
}

.donation-button img{
    margin-top: 1.5rem;
    display: inline;
    height: 3.75rem;
    border-radius: 1.5rem;
    border: 2px solid rgba(57,97,230,0.6);
    box-shadow: 1px 3px 0px 0px rgba(57,97,230,0.6);
}

.donation-button img:hover,
.donation-button img:focus {
    box-shadow: 6px 10px 0px 0px rgba(57,97,230,0.6);
    transform: translateY(-8px) translateX(-4px);
}


@media (min-width: 20rem) and (max-width: 50rem) {
    .donations-container {
        width: 57rem;
        height: 40rem;
    }

    .don-content {
        width: 50rem;
        height: 28rem;
        border-radius: 3rem;
    }

    .don-content > p {
        font-size: 1.5rem;
        width: 48rem;
        margin: auto;
        margin-top: 2rem;
        line-height: -20rem;
    }
}

/* FOOTER SECTION*/

.footer-container {
    background-color: hsla(0, 0%, 0%, 0.34);
    color: white;
    display: flex;
    flex-direction: column;
    margin-top: 7rem;
    height: 12rem;
    min-height: 38vh;
    width: 100vw;
    width: 100%;
    bottom: 0;
    box-shadow: 0px 0px 10px 40px  hsla(0, 0%, 0%, 0.34);
}

.footer-wrap {
    width: 60rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.footer-social-icons{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 4rem;
}

.copyright-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
}

.copyright-text {
    font-size: 20px;
    bottom: 0;
}

.easter-egg-footer {
    z-index: 1000;
    position: absolute;
    width: 60rem;
}

.easter-egg-footer > img {
    width: 118.064px;
    height: 88.439px;
    margin: auto;
    margin-left: 12rem;
    margin-top: -5rem;
    transform: rotate(8.456deg);
}