@font-face {
    font-family: mluvka-regular;
    src: url("Mluvka-Regular-BF65518ac8463f5.otf") format("opentype");
}

@font-face {
    font-family: mluvka-extra-bold;
    src: url("Mluvka-ExtraBold-BF65518ac86bc69.otf") format("opentype");
}

* {
    font-family: "mluvka-regular";
    /* pointer-events: none; */

}
h1, h2, h3, h4, h5, h6 {
    font-family: "mluvka-extra-bold";
    color: white;
}
.logo{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
body {
    margin: 0;
    padding: 0;
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center;
}
a {
    color: white;
    font-family: "mluvka-regular";
    text-decoration: none;
    white-space: nowrap;
}
header {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px;
    margin: 0 auto;
    background-image: linear-gradient(45deg, rgb(29, 50, 141), rgb(78 98 169)); 

}
.header-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav-bar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin: 0 20px;
}
.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo h2 {
    font-size: 1.5rem;
    margin: 0;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    position: relative;
    padding: 5px 0;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #a3c2ff;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #a3c2ff;
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

.cta-button {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid white;
    border-radius: 30px;
    padding: 10px 20px;
    font-family: "mluvka-regular";
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: white;
    color: rgb(29, 50, 141);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 20px;
    }
    
    .header-right {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav {
        gap: 15px;
    }
}
