@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter Tight', sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    background: transparent;
    padding: 20px;
    overflow-x: hidden;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #fff;
    padding: 0;
}


.navbar-toggle-icon::before {
    content: '\2193';
}

.navbar-menu {
    display: flex;
}

.navbar-menu-list {
    display: flex;
    gap: 20px;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
}

.navbar-logo a {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    text-decoration: none;
}

.navbar-menu {
    display: flex;
}

.navbar-menu-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar-menu-item {
    display: flex;
    align-items: center; /* note to me: make this center/end if you want to center the nav items with the logo ;) */
}

.navbar-menu-link {
    font-family: 'Inter Tight', sans-serif;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar-menu-link:hover {
    color: #f1c40f;
}

section.section {
    display: block;
    min-height: 100vh;
    overflow-x: hidden;
}

.section.sec01 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#background-sec01-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -2;
}

.video-overlay {
    /* I know this is horrible with filters and stuff existing, but for the sake of compatibility I'll just use this lol */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: -1;
}

.sec01-content {
    text-align: left;
    color: #fff;
    z-index: 1;
    max-width: 800px;
}

.sep-big {
    display: block;
    height: 0px;
    background: #fff;
    width: 60px;
    margin: 40px 0;
}

.sec01-content h1 {
    font-family: 'Lora', serif;
    line-height: 1.2;
    font-size: 3rem;
    margin-bottom: 20px;
}

.sec01-content p {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

/*
.sec01-content a {
    display: inline-block;
    background: #111;
    padding: 0 10px;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}


.sec01-content a:hover {
    background: #00ff2a;
    color: #111;
}
*/

.sec01-inner {
    padding: 40px;
}
.sec02-inner {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    max-width: 1200px;
}

.sec02-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.sec02-content {
    color: #f1f1f1;
    padding: 20px;
    font-size: 18px;
}

.sec02 p {
    color: #dddddd;
    margin-bottom: 10px;
}

.sec02 a {
    color: #79ad7a;
}

.section.sec02 {
    position: relative;
    overflow: hidden;
    background: #121212;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.sec02-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.sec02-content {
    color: #f1f1f1;
    padding: 20px;
}

.sec02::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("1.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.3;
    filter: blur(10px);
    transform: scale(1.05);
}

.sec03 {
    background: #121212;
    color: #ddd;
    max-height: none !important;
    min-height: 100vh !important;
    height: fit-content !important;
}

.sec03-content {
    padding: 20px;
}

.faq-item {
    border-bottom: 1px solid #dddddd2d;
    padding: 10px 0;
    cursor: pointer;
}

.faq-question {
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #45a049;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
    padding: 0 10px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 10px;
}

.signup-form {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.signup-form form {
    display: flex;
    flex-direction: column;
}
  
.signup-form label {
    color: #fff;
    margin-bottom: 8px;
    font-size: 1rem;
}

.signup-form a {
    color: #80fbff;
    margin-bottom: 8px;
    font-size: 1rem;
    text-decoration: none;
}

.signup-form a:hover {
    text-decoration: underline;
}
  
.signup-form input[type="email"],
.signup-form input[type="number"] {
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}
  
.signup-form .checkbox {
    margin-bottom: 12px;
}
  
.signup-form .checkbox input {
    margin-right: 8px;
}
  
.signup-form button {
    padding: 12px;
    background-color: #3c5a3d;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 100ms;
}
  
.signup-form button:hover {
    background-color: #45a049;
}

.above-text {
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 20px;
}

.sticky-sec01 {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    color: #fff;
    font-size: 1.4rem;
    text-align: center;
    user-select: none;
}

#earlycountdown {
    font-weight: 600;
}

footer {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #121212;
    border-top: 2px #888 solid;
    color: #fff;
    text-align: left;
    padding: 20px;
}

.footer-inner {
    display: grid;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-inner p {
    color: #d6d6d6;
    margin-bottom: 10px;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.promo-p {
    font-size: 16px !important;
    text-align: center;
}

@media (max-width: 768px) {

    .sec01 {
        min-height: 90vh !important;
    }

    .sec02-inner {
        grid-template-columns: 1fr;
    }

    .navbar-menu {
        display: none;
        flex-direction: column;
        width: 200px;
        background: #333;
        position: absolute;
        top: 100%;
        height: 300px;
        left: 0;
    }
    
    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu-list {
        flex-direction: column;
        gap: 0;
    }

    .navbar-menu-item {
        border-bottom: 1px solid #444;
        text-align: right;
    }

    .navbar-menu-link {
        padding: 15px;
        text-align: center;
        color: #fff;
    }

    .navbar-toggle {
        display: block;
    }

    .sec02-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}