/*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: 20) and (max-width: 30rem) {
    :root {
        --fs-300: 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/end\ page\ sky.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: 6.25rem;

    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);     
        }
        
    }
}

/**/

.countdown {
    width: 40rem;
    margin: auto;
    margin-top: 3rem;
    text-align: center;
    padding-top: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 10px 10px .8px hsla(0, 0%, 30%, 0.25);
    border-radius: 1rem;
    height: 20rem;
}



#headline{
    color: rgb(54, 54, 54);
    font-size: 3rem;
}

.countdown-list {
    list-style: none;
}
.countdown-list > li {
    display: inline-block;
    font-size: 1.5rem;
    list-style-type: none;
    padding: 1rem;
    padding-top: 0;
    text-transform: uppercase;
    margin: 0;
}

.countdown-list-red {
    color: #E63946;
}

.countdown-list-orange {
    color: #FCA311;
}

.countdown-list-blue {
    color: #2A9D8F;
}

.countdown-list-pink {
    color: #FF99C8;
}

.countdown-list > li span {
    display: block;
    font-size: 4rem;
    height: 5.5rem;
  }

/* > ANNOUNCEMENT */

.announcement {
    margin:auto;
    text-align: center;
    margin-top: 3rem;
    justify-content: center;
}

.announcement-text > h1 {  
    line-height: 3rem;
    margin-bottom: 2rem;
    color: rgb(31, 31, 31);
}


.ewf-heading {
    margin-top: 3rem;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 10px 10px .8px hsla(0, 0%, 30%, 0.25);
    width: 40rem;
}

.ewf-heading > h1 {
    line-height: 4rem;
}

/* HERO SECCION */

.hero-section {
    margin: 0;
    padding: 0;
}

.hero-background {
    border-radius: 1rem;
    background-color: hsla(0,0%,100%, 0.85);
    max-width: 60rem;
    height: 32.375rem;
    margin:0 auto;
    margin-top: 3rem;
    box-shadow: 8px 8px .8px hsla(0, 0%, 30%, 0.25);
    display: block;
    margin-bottom: 0;
}

.hero-col__1, .hero__image-div {
    margin: auto;
}

.hero__image {
    width: 24.875rem;
    border-radius: 42px;
}

.hm1 {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.hm1__text {
    font-weight: var(--fw-bold);
    font-size: var(--fs-400);
    margin-top: 5rem;
}

.hm1-date {
    margin: auto;
    margin-top: 20px;
    color: white;
    font-weight: var(--fw-semi-bold);
    font-size: var(--fs-300);
}

.buy-bot {
    background:rgb(192, 119, 255);
    border-radius: 30px;
}

.amazon-button {
    margin: auto;
    margin-top: 0.75rem;
    background-color: #ffd75e;
    border-radius: 3.125rem;
    padding: 1rem 3rem;
    display: inline-block
}

.amazon-button img {
    width: 10rem;
}


.amazon-button:hover,
.amazon-button:focus {
    box-shadow: 0 8px 8px -4px hsla(0, 0%, 30%, 1);
    transform: translateY(-0.25em);
}

.hm2 {
    text-align: center;
    justify-content: center;
    display: flex;
    margin: auto;
    align-items: center;
    height: 7rem;
}

.hm2>h2 {
    font-size: var(--fs-300);
}


.hero__button {
    font-weight: var(--fw-semi-bold);
    font-size: 1.8rem;
    color: #ffffff;
    background-color: #FF99C8;
    padding: 10px 20px;
    border-radius: 22px;
}

.hero__button:hover,
.hero__button:focus {
    background-color: #ff5664;
}

@media (min-width: 40rem) and (max-width: 50rem){
    .hero-background {
        width: 50rem;
    }
}

@media (max-width: 45rem) {
    .hero-section {
        grid-template-columns: 20rem;
    }   

    .hero-background {
        grid-column: 2;
        display: flex;
        justify-content: center; 
        max-width: 80%;
        height: 80rem;
    }

    .hero__image {
        width: 35rem;
        margin-top: 4rem;
    }

    .hero-col {
        row-gap: 2rem;
    }

    .hm1, 
    .hm1-date,
    .hm1__text {
        margin: 0;
    }

    .hm1 {
        margin: 0;
    }

    .hm1__text {
        margin: 1rem  0rem;
        font-size: var(--fs-600);
    }

    .hm1-date {
        font-size: var(--fs-700);
    }

    .hero-button-wrap {
        margin-top: 2rem;
        margin-bottom: 3rem;
    }

    .hero__button {
        margin-top: 3rem;
        font-size: var(--fs-400);
        padding: 1rem 2rem;
        border-radius: 80px;
    }

    .hm2 {
        text-align: center;
        justify-content: center;
        display: flex;
        flex-direction: column;
    }

    .hm1-date{
        margin-top: 1rem;
    }

    .buy-bot {
        display: flex;
        flex-direction: column;
        height: 13rem;
    }
}

.grid-container {
    display: grid;
}

@media (min-width: 45rem) {
    .grid-container, .hero-section {
        column-gap: var(--container-gap, 2rem);
        grid-template-columns: minmax(2rem, 1fr) repeat(2, minmax(0, 30rem)) minmax(2rem, 1fr);
    }
    
    .grid-child-1, .hero-col__1 {
        grid-column: 2;
    }

    .grid-child-2, .hero-col__2 {
        grid-column: 3; 
    }
}

/* CARDS SECCION */

.cards-container {
    display: grid;
    grid-template-columns: minmax(2rem,23rem) minmax(2rem,23rem) minmax(2rem,23rem);
    column-gap: 3rem;
    justify-content:center;
    margin-top: 2rem;
    align-items: center;
    margin-top: 4rem;
}

.card {
    color: white;
    background: rgb(143, 143, 143);
    border: 1px solid rgb(255, 0, 0);
    height: 15rem;
    width: 20rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: auto;
    border-radius: 2rem;
    border: 11px solid white; 
    box-shadow: 4px 4px hsla(0, 0%, 30%, 0.25);
}


.card-1 {
    background-color: #FA2E3E;
    grid-column: 1;
}

.card-2 {
    background-color: #FCA311;
    grid-column: 2;
}

.card-3 {
    background-color: #2A9D8F;
    grid-column: 3;
}

.module-text {
    font-size: var(--fs-500);
    margin-bottom: 1rem;
}

.card-button {
    font-size: var(--fs-250);
    color: #000000;
    background: white;
    padding: 0.5rem;
    border-radius: 11px;
    margin-top: 40rem;
}

.card-button:hover,
.card-button:focus {
    background: #9e9e9e;
    color: white;
}

.module-text {
        margin-top: 3.25rem;
    }


@media (min-width: 40rem) and (max-width: 60rem){

    .module-text {
        margin-bottom: 1rem;
    }
    
    .card {
        width: 17rem;
        height: 13rem;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .module-text {
        font-size: var(--fs-400);
    }

    .card-module {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
    }
}

@media (min-width: 10rem) and (max-width: 45rem) {
    .cards-container {
        display: grid;
        grid-template-rows: 20rem 20rem 20rem;
        row-gap: 2rem;
        grid-template-columns: 40rem;
        margin-top: 3rem;
    }

    .card-1 {
        grid-row: 1;
        grid-column: 1;
    }

    .card-2 {
        grid-row: 2;
        grid-column: 1;
    }

    .card-3 {
        grid-row: 3;
        grid-column: 1;
    }

    .card {
        justify-content: center;
        align-items: center;
        margin: auto;
        width: 40rem;
        height: 20rem;
        border-radius: 80px;
    }

    .module-text {
        font-size: var(--fs-800);
    }

    .card-button {
        margin-top: 3rem;
        font-size: var(--fs-400);
        padding: 0.5rem 1rem;
        border-radius: 80px;
    }
}

/*comp seccion*/

.comp-section {
    margin-top: 3rem;
    background-image: url(/imgs/Misc/backgrounds/19.png);
    background-size: cover;
    background-repeat: no-repeat;
    height: 27rem;
    align-items: center;
    justify-content: center;
}

.comp-container {
    display: grid;
    margin: auto;
    place-items: center;
    margin-top: 2rem;
}

.comp-heading {
    color: white;
    /* grid-row: 1; */
    grid-column: 1;
    margin: auto;
    margin-bottom: 2rem;
}

.comp-background {
    /* grid-row: 2; */
    grid-column: 1;
    background: white;
    border-radius: 17px;
    width: 60rem;
    height: 15rem;
    display: grid;
}

.comp-content-module {
    width: 100%;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;
}

.comp-content-module-text {
    font-family: var(--ff-primary);
    font-size: var(--fs-body);
    width: 40rem;
    text-align: center;
}

.comp-content-module-sec {
    width: 100%;
    justify-content: center;
}

.comp-content-button {
    font-size: var(--fs-body);
    color:#000000;
    font-weight: var(--fw-bold);
    padding: .75rem 2rem;
    background-color: #FBD059;
    border-radius: 33px;
    margin-top: 6rem;
}

.comp-content-button:hover,
.comp-content-button:focus {
    color: white;
    background-color: #5b7ef1;
}

.comp-content-module-sec {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media (max-width: 50rem) {
    .comp-content-module-text {
        font-size: var(--fs-300);
        width: 45rem;
        font-weight: var(--fw-semi-bold);
    }

    .comp-background {
        width: 50rem;
    }
}

@media (min-width: 20rem) and (max-width: 30rem) {
    .comp-background {
        width: 50rem;
        height: 25rem;
    }

    .comp-section {
        height: 40rem;
    }

    .comp-heading-text {
        font-size: var(--fs-800);
    }

    .comp-content-module-text {
        font-size: var(--fs-400);
        width: 45rem;
        font-weight: var(--fw-semi-bold);
    }

    .comp-content-button{
        font-size: var(--fs-400);
        align-items: center;
    }
}

/*MERCHANDISE*/

.merch-background {
    display: flex;
    flex-direction: column;
    height: 26rem;
    width: 60rem;
    margin: auto;
    align-items: center;
    background-color: white;
    margin-top: 2rem;
    border-radius: 50px;
}

.merch-heading {
    font-family: var(--ff-primary);
    margin-top: 1.5rem;
}

.merch-content {
    margin: auto 0;
    display: flex;
    gap: 2rem;
}

.merch-content-card {
    background-color: #D9D9D9;
    width: 15rem;
    height: 15.25rem;
    border-radius: 28px;
    border: 8px solid rgb(255, 255, 255);
    box-shadow: 4px 4px .4px hsla(0, 0%, 0%, 0.25);
    display: flex;
    flex-direction: column;
}

.merch__content-module {
    height: 8rem;
    width: 10.5rem;
    margin: auto;
    background-color: #1124fc;
    border-radius: 50%;
}
.red-card {
    background-color: #E63946;
}

.orange-card {
    background-color: #FCA311;
}

.green-card {
    background-color: #2A9D64;
}

.blue-card {
    background-color: #3961E6;
}

.merch__content-module-price {
    margin-bottom: 1rem;
    margin-left: 1rem;
}

.merch-content-button {
    background-image: url(/imgs/Misc/buttons/Screenshot\ 2024-12-05\ 140813.png);
    background-size: cover;
    width: 12.5rem;
    height: 3rem;
    background-repeat: no-repeat;
    border-radius: 11px;
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.merch-content-button:hover,
.merch-content-button:focus {
    box-shadow: 4px 8px 8px -4px rgb(118, 118, 118, 0.8);
    transform: translateY(-0.25rem);
}

.merch__content-button-text {
    color: white;
}


@media (min-width: 45rem) {
    .grid-container, .hero-section {
        column-gap: var(--container-gap, 2rem);
        grid-template-columns: minmax(2rem, 1fr) repeat(2, minmax(0, 30rem)) minmax(2rem, 1fr);
    }
    
    .grid-child-1, .hero-col__1 {
        grid-column: 2;
    }

    .grid-child-2, .hero-col__2 {
        grid-column: 3; 
    }
}



@media (min-width: 20rem) and (max-width: 50rem){
    .merch-background {
        width: 45rem;
        height: 30rem;
    }

    .merch-content-card {
        width: 15rem;
    }

    .green-card-mod{
        display: none;
    }

    .merch-heading h1 {
        font-size: var(--fs-800);
        margin-top: 1.5rem;
    }

    .merch-content-module {
        height: 0rem;
        margin-top: 1rem;
    }

    .merch-content-button {
        font-size: var(--fs-500);
    }
}

/* 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-right: 12rem;
    margin-top: -5rem;
    transform: rotate(-8.456deg);
}