@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');


@font-face {
    font-family: 'MyCustomFont';
    src: url('/Satoshi-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}


.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    background: linear-gradient(45deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

}

.navbar {
    /* background: linear-gradient(135deg, #1e1e2f, #2b2b4b); */
    background: linear-gradient(90deg, rgb(109, 53, 149) 0%, rgba(255, 105, 105, 1) 54%, rgba(255, 226, 110, 1) 100%);
    padding: 0.6rem 1.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.433);
    margin: 0;
    font-family: 'MyCustomFont';
}

.nav-container {
    display: flex;
    justify-content: right;
    align-items: center;
    max-width: 100%;
    margin: auto;
}

.logo {
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
    /* letter-spacing: 1px; */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.8rem;
    padding: 10px 0;
}

.nav-item .nav-link {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'MyCustomFont';
    font-weight: 400;
    font-style: normal;
}

.nav-item .nav-link::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #ffcc00;
    transition: width 0.3s;
    position: absolute;
    bottom: 0;
    left: 0;
}

.nav-item .nav-link:hover::after {
    width: 100%;
}

.nav-item .nav-link:hover {
    color: #fffcbe;
    text-shadow: 0 0 5px #ffea97, 0 0 12px #fff0b2;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: #1e1e2f;
        width: 60%;
        transition: left 0.3s ease;
        padding: 1rem 0;
        border-radius: 0 15px 15px 0;
        gap: 50px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }


    .nav-item .nav-link {
        color: #ffffff;
        text-decoration: none;
        font-size: 0.9rem;
        padding: 0.5rem;
        transition: all 0.3s ease;
        position: relative;
        font-family: "Poppins", sans-serif;
        font-weight: 400;
        font-style: normal;
    }


}

.main-title {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(180deg, #fff704, #ff3d36);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    text-align: center;
}

@media screen and (min-width: 2560px) {
    body {
        font-size: 1.3rem;
        /* Slightly increase text size */
    }

    .main-title {
        font-size: 4rem;
    }

    .tagline {
        font-size: 2rem;
    }

    .edition,
    .event-title {
        font-size: 1.5rem;
    }

    .register-btn {
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .hero-content {
        max-width: 1600px;
        margin: 0 auto;
    }

    .focus-grid,
    .guest-grid,
    .participants-grid {
        gap: 2.5rem;
        max-width: 1800px;
        margin: 0 auto;
    }

    .focus-card img,
    .guest-card img,
    .participant-card svg {
        width: 100px;
        height: 100px;
    }

    .guest-card h3,
    .card-title {
        font-size: 1.3rem;
    }

    .supported-logos img {
        max-width: 150px;
    }

    .section-title,
    .section-heading {
        font-size: 2.5rem;
    }
}





@media screen and (max-width: 1024px) {
    .nav-container {
        padding: 10px 20px;
    }

    .nav-menu {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.95rem;
        padding: 5px 10px;
    }

    .logo {
        font-size: 1.3rem;
    }
}