
@font-face {
    font-family: 'Poppins';
    src: url('fonts/modernist.woff2') format('woff2'),
        url('fonts/modernist.woff') format('woff');
}
@font-face {
    font-family: 'JostSemiBold';
    src: url('fonts/Jost-SemiBold.ttf') format('ttf'),
        
}
@font-face {
    font-family: 'JostBold';
    src: url('fonts/Jost-Bold.ttf') format('ttf'),
        
}
a {
    text-decoration: none;
  }
.progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 5px;
    background-color: #2c2c2c;

}

.bar {
    display: block;
    width: 0;
    height: inherit;
    background-image:
        /*linear-gradient(90deg, #33ffbb, #31acff, #2ad39f, #0170f0); */
        linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(139, 1, 1, 1) 35%);
}



.main {

    display: flex;
    flex-direction: column;
    background-color: black;
    color: white;
    overflow: hidden;
    /* justify-content: space-between; */

}


.navbar {
    min-height: 70px;

    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    font-family: "Poppins";
    padding-top: 10px;
}

.nav-menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.nav-branding {
    font-size: 2rem;
}

.nav-link {
    transition: 0.7s ease;
}

.nav-link:hover {
    color: dodgerblue;

}

.nav-item {
    display: inline-block;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: white;
}



/* NAVBAR MEDIA QUERY */

@media (max-width:768px) {


    .hamburger {
        display: flex;
        justify-content: flex-end;

    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #262626;
        width: 100%;
        text-align: center;
        transition: 0.3s;
    }

    .nav-link {
        margin: 16px 0;
    }

    .nav-item {
        margin-top: 10px;
        z-index: 1;
    }

    .nav-menu.active {
        left: 0;

    }


}

/* NAVBAR MEDIA QUERY */
/* ---------------- */

.nav-bar {
    color: white;

    font-family: 'Poppins', sans-serif;
}

.nav-logo {
    font-size: 3rem;
    font-family: 'Bebas Neue', cursive;
}

.landing-page {
    margin: auto;
    height: 100%;

}

.main-landing {
    /* background-image: url("images/bg.jpg"); */
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;


    padding: 100px;
    display: flex;
    flex-direction: row-reverse;
    height: 80vh;

    justify-content: space-between;
    margin: auto;
}



.landing-logo {
    width: 40%;
}

.transcendence-logo {
    position: relative;
    z-index: 0;
    height: 100%;
    width: 100%;
}

.text-landing {
    margin: auto;
}

.embie {
    display: flex;
    flex-direction: row;
}

.embrace {
    font-family: "Monument Extended";
    font-style: normal;
    font-weight: 400;
    font-size: 55px;
    margin-bottom: 0px;
    line-height: 77px;
    color: white;
}

.best {
    font-family: "Monument Extended";
    font-style: normal;
    font-weight: 400;
    font-size: 55px;
    /* line-height: 48px; */
    /* identical to box height */
    float: left;
    text-shadow: 2px 2px 10px red;

    color: #EC0000;
}

.bestie {
    display: flex;
    flex-direction: row;
    margin: 10px;
}

.small-txt {
    width: 40%;
}

.braincells {
    font-family: 'Poppins', monospace;
    font-weight: 300;
    font-size: 15px;
    align-items: center;
    vertical-align: bottom;
    /* padding: 5px 5px; */
}


.grid-sake {}

/* SUB LANDING + info GRID*/
.sub-landing {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.2fr;
    /* grid-template-rows: 20% auto 20%; */
    grid-template-areas:
        "arrow venue events"
        /* "left  right  right"
        "left  right  right" */
    ;
}

.sub-landing {

    width: 100vw;
    z-index: 1;
}

.arrow {
    grid-area: arrow;
    background: #000000;
    height: 100%;
    width: 100%;
    padding: 18px;
}
.bi-arrow-right {
    color: rgb(0, 0, 0);
}

.venue {
    grid-area: venue;
    width: 60%;
    background-color: #000000;
    height: 100%;
    width: 100%;
    padding: 18px;
    font-family: 'JostBold';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;
    line-height: 58px;
}

.eventsies {
    grid-area: events;
    width: 20%;
    background: #000000;
    height: 100%;
    width: 100%;
    padding: 18px;
    font-family: 'JostBold';
    font-style: normal;
    font-weight: 400;
    font-size: 48px;

}



/* HOME-INFO  */
.home-info {


    background-size: cover;
    background-attachment: fixed;

    display: grid;
    grid-template-columns: 1fr 1.5fr 1.2fr;
    grid-template-rows: 1fr 3fr 1.3fr;
    height: 100%;
    grid-template-areas:
        "space-1    space-3       space-4"
        "follow     circles        presented"
        "space-2    date-reveal   date-reveal"
    ;
}

.space-1 {
    grid-area: space-1;
    background-color: #EC0000;
    padding: 2rem;
}

.follow {
    grid-area: follow;
    display: flex;
    flex-direction: column;
    background-color: #EC0000;
    padding: 2rem;
}

.sub {
    display: flex;
}

.rect-2 {
    padding: 1rem;
}

.following {
    font-family: 'Sk-Modernist';
    font-style: normal;
    font-weight: 700;
    font-size: 64px;
    line-height: 124%;
    /* or 79px */

    letter-spacing: 0.015em;
}

.ig {}

.following-txt {
    font-family: 'Sk-Modernist', 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 124%;
    /* or 25px */

    letter-spacing: 0.015em;
}

.space-2 {
    grid-area: space-2;
    background-color: #EC0000;
}

.space-3 {
    grid-area: space-3;
    background-color: black;

}

.circle {
    grid-area: circles;
    background-color: black;
    padding: 3rem;
}

.round {
    width: 100%;
}

/* DATE REVEAL START */
.flexing {}

.date-reveal {
    display: flex;
    grid-area: date-reveal;
    background-color: black;
    align-items: center;
    justify-items: center;
    padding: 3rem;
    justify-content: space-between;
}

.reveal {
    display: flex;
    flex-direction: column;
}

.save-t {
    font-family: 'Sk-Modernist';
    font-style: normal;
    font-weight: 700;
    font-size: 3rem;
    line-height: 124%;
    /* or 79px */

    letter-spacing: 0.015em;
}


.days {
    background-color: #262525;
    border-radius: 14px;
    display: inline-block;
    padding: 1rem;
}

.d-t {
    font-family: 'Sk-Modernist';
    font-style: normal;
    font-weight: 400;
    font-size: 1.8rem;




}

/* DATE REVEAL END */
.space-4 {
    grid-area: space-4;
    background-color: black;
}

.presented {
    grid-area: presented;

    color: white;

    padding: 3rem;

}

.heading-presented {
    font-family: 'Sk-Modernist', 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-size: 3rem;
    line-height: 60px;
    letter-spacing: 0.015em;
}

.SJBHS {
    width: 100%;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.presented-para {
    font-family: 'Sk-Modernist';
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 124%;
    /* or 25px */

    letter-spacing: 0.015em;
}

/* EVENTS */


.event {
    font-size: 12px;
    font-family: 'Poppins';
    display: grid;
    grid-template-columns: 0.25fr 1fr;
    grid-template-areas:
        "left right"
    ;
    background-color: #1C1B1B grid-template-rows;
    margin-top: 20px;
}

.events-left {
    grid-area: 1 / 1 / 2 / 2;
    grid-area: top;
    font-size: 60px;
    color: white;
    font-weight: 800;
    transform: rotate(0);
}

.cardies {
    grid-area: 1 / 2 / 2 / 3;
    grid-area: right;
    text-decoration: none;
}



.cardies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 40px;
    text-decoration: none;

}

.card {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    text-decoration: none;
}



/* CARDS STYLING */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300&display=swap');

.card {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    place-content: center;
    width: 250px;
    height: 250px;
    color: #a18a96;
    text-align: center;
    /* background: url('./images/event-logo/221B.png') center no-repeat; */
    background-size: cover;
    padding: 10px;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
}

.aadit_qt {
    margin: auto;
    z-index: 100;
    margin-top: 1rem;
    color: #ffffff;
    text-decoration: none;
}

.twotwooneB {
    background: url('.\\Event_Logos\\Turbolenza.webp') center no-repeat;
    background-size: cover;
    padding-right: 30px;
    background-origin: content-box;
}

.Acta_Diurna {
    background: url('.\\Event_Logos\\Exordium.webp') center no-repeat;
    background-size: cover;
    background-origin: content-box;
}

.Code-Blooded {
    background: url('.\\Event_Logos\\Venatus.webp') center no-repeat;
    background-size: cover;
    background-origin: content-box;
}

.Cosmicon {
    background: url('.\\Event_Logos\\Opsonatus.webp') center no-repeat;
    background-size: cover;
}

.Cyansure {
    background: url('.\\Event_Logos\\Bestmanager.webp') center no-repeat;
    background-size: cover;
    background-size: 230px;
    background-origin: content-box;
    padding-right: 50px;
    margin-right: 50px;
}

.Electri-Phy {
    background: url('.\\Event_Logos\\Efevresi.webp') center no-repeat;
    background-size: cover;
}

.Emporia {
    background: url('.\\Event_Logos\\Olethros.webp') center no-repeat;
    background-size: cover;
    background-size: 230px;
}

.Viventem {
    background: url('.\\Event_Logos\\Phoenix.webp') center no-repeat;
    background-size: 250px 250px;
    background-origin: content-box;
}

.Psychoh {
    background: url('.\\Event_Logos\\Opsonatus.webp') center no-repeat;
    background-size: cover;
    background-origin: content-box;
}

.Gaming {
    background: url('.\\Event_Logos\\Dreadrush.webp') center no-repeat;
    background-size: cover;
    background-origin: content-box; 
}

.F1 {
    background: url('.\\Event_Logos\\F1.webp') center no-repeat;
    background-size: cover;
    background-origin: content-box;
    background-size: 300px 300px;
}

.Null {
    background: url('.\\Event_Logos\\null.webp') center no-repeat;
    background-size: cover;
    background-origin: content-box;
}

.Erevna {
    background: url('.\\Event_Logos\\Icarus.webp') center no-repeat;
    background-size: cover;
    background-origin: content-box;
}

.card::before,
.card::after {
    content: '';
    position: absolute;
    left: 0;
    z-index: -1;
    width: 100%;
    height: calc(60% + 35px);
    background-color: #000000;
    transition: transform 0.5s 0.25s;
}

.card::before {
    top: 0;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0% 100%);
    transform: translateY(-100%);
}

.card::after {
    bottom: 0;
    clip-path: polygon(0 55%, 100% 0, 100% 100%, 0% 100%);
    transform: translateY(100%);
}

.card__body {
    opacity: 0;
    transition: opacity 0.25s;
}

.card__bodyghost {
    opacity: 0;
}

.card__title {
    color: rgb(26, 153, 216);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.card:hover::before,
.card:hover::after {
    transform: translateY(0);
}

.card:hover .card__body {
    opacity: 1;
    transition-delay: 0.75s;
}

.aadit_qt {
    position: relative;
    display: flex;
    align-items: center;
    color: #000000;
    background: none;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    text-decoration: none;
}

.aadit_qt::before {
    content: "";
    position: absolute;
    top: 50%;
    z-index: -1;
    translate: calc(100% + 4px) -50%;
    width: 45px;
    height: 45px;
    background: rgb(26, 153, 216);
    border-radius: 50px;
    text-decoration: none;
    transition: translate 0.25s 0.25s cubic-bezier(0, 0, 0.5, 2),
        width 0.25s cubic-bezier(0, 0, 0.5, 2);
}

.aadit_qt:hover::before {
    width: 100%;
    translate: -18px -50%;
    text-decoration: none;
    transition: translate 0.25s cubic-bezier(0, 0, 0.5, 2),
        width 0.25s 0.25s cubic-bezier(0, 0, 0.5, 2);
}

.aadit_qt i {
    margin-left: 5px;
    text-decoration: none;
    transition: translate 0.25s 0.4s cubic-bezier(0, 0, 0.5, 2);
}

.aadit_qt:hover i {
    text-decoration: none;
    translate: 3px 0;
}

/* EVENTS END */

/* NAVBAR MEDIA QUERY */
@media (max-width:768px) {

    .events-left{
        font-size: 0px;
        margin-left: -60px;
        margin-right: 0px;
        
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        gap: 0;
        flex-direction: column;
        background-color: #262626;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        font-family: 'JostBold';
    }

    .nav-link {
        margin: 16px 0;
        font-family: 'JostBold';
    }

    .nav-item {
        margin-top: 10px;
        font-family: 'JostBold';
    }

    .nav-menu.active {
        left: 0;
        font-family: 'JostBold';

    }

    /* .home-info MEDIA QUERY */

    .home-info {
        grid-template-columns: 100%;
    }
}
.card {
    background-color: rgba(0, 0, 0, 0.37);
    padding: 15px;
    text-decoration: none;
}

.Code-Blooded {
    padding: none;
    padding-left: 38px;
    padding-top: 25px;
}
.Viventem, .twotwooneB{
    padding: 25px;
}
.twotwooneB {
    padding-right: 35px;
}
.Cyansure {
    padding-left: 30px;
    padding-top: 40px;
}
.Gaming {
    padding-bottom: 45px;
}
.F1{
    padding-left: 35px;
    padding-top: 45px;
}
.Null {
    padding-left: 25px;
}
.events {
    margin-bottom: 80px;
    margin-top: 80px;
}
.buttonmain {
    --😀: #000000;
    --😀😀: #000000a4;
    --😀😀😀: #00000093;
    cursor: pointer;
    width: 184px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-family: Jost, monospace ;
    font-size: 1.125em;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
    background: var(--😀);
    border: 2px solid var(--😀😀);
    border-radius: .75rem;
    box-shadow: 0 8px 0 var(--😀😀);
    transform: skew(-10deg);
    transition: all .1s ease;
    filter: drop-shadow(0 15px 20px var(--😀😀😀));
  }
  
  .buttonmain:active {
    letter-spacing: 0px;
    transform: skew(-10deg) translateY(8px);
    box-shadow: 0 0 0 var(--😀😀😀);
  }
  /* Initial button visibility */
#registerButton {
    opacity: 1;  /* Initially visible */
    transition: opacity 0.5s ease-out; /* Smooth fade-out effect */
}

/* Hide button when scrolled */
.hide-on-scroll {
    opacity: 0;  /* Hidden when this class is applied */
}
.sub-land-text
  {
    font-family: 'JostBold';
  }

  .DaddyyyAnthony
  {
    font-family: 'JostBold';
  }

/* MEDIA QUERY */