@font-face {
    font-family: 'HelveticaNeueBold';
    src: url("../fonts/HelveticaNeueBold-BrfrwtH.otf") format('opentype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'HelveticaNeue';
    src: url("../fonts/HelveticaNeueLight-bc0vylK.otf") format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body, html {
    height: 100%;
    font-family: 'Roboto', sans-serif;
    color: #333;
    overflow-x: hidden;
}

p {
    font-family: 'HelveticaNeue', Helvetica, Arial, sans-serif;
    font-size: 1.1rem;
}

img {
    max-width: 100%;
    height: auto;
}

hr {
    border: none;
    height: 2px;
    background-color: #ccc;
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 5%;
}

.nav-logo-container img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links-container {
    display: flex;
    height: 100%;
    align-items: center;
}

.nav-links-container a {
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    text-transform: uppercase;
    font-family: 'HelveticaNeueBold', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.nav-links-container a:hover {
    color: #1952c8;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
}

.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2 {
    opacity: 0;
}

.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

@media (max-width: 768px) {
    .main-nav {
        padding: 0 20px;
    }

    .nav-links-container {
        position: absolute;
        right: 0;
        top: 80px;
        height: calc(100vh - 80px);
        background-color: #222;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        padding-top: 30px;
    }

    .nav-links-container a {
        height: auto;
        padding: 20px 0;
        width: 100%;
        justify-content: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        font-size: 1.2rem;
    }

    .burger {
        display: block;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-copyright {
        margin-bottom: 50px;
    }

    .nav-links-container.nav-active {
        transform: translateX(0%);
    }
}

.main-btn-style {
    background-color: #1952c8;
    color: white;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.2s, background-color 0.2s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.main-btn-style:hover {
    background-color: #181bc7;
    transform: scale(1.05);
}

.site-footer {
    padding: 40px 20px;
    text-align: center;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.9rem;
}

.footer-logo img {
    width: 70px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.me {
    color: #bbb;
    font-style: italic;
    font-size: 14px;
    margin-top: 10px;
}
