@font-face {
    font-family: 'WantedSansVariable';
    src: url('assets/fonts/wanted_sans/WantedSans-1.0.1/variable/WantedSansVariable.ttf') format('ttf'),
         url('assets/fonts/wanted_sans/WantedSans-1.0.1/otf/WantedSans-Regular.otf') format('otf');
    font-weight: normal;
    font-style: normal;
}

.custom-navbar {
    top: 0;
    left: 0;
    right: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 16.188rem;
    padding-left : 16.188rem;
    align-items: center;
    display: flex;
    position: fixed;
    z-index: 1000;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
}

.logo {
    padding-right: 4rem;
}

.logo img {
    width: 6.688rem;
    height: 3.625rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 5rem;
    margin: 0 auto;
    align-items: center;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    font-family: 'WantedSansVariable', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.193rem;
    letter-spacing: 0.02em;
    text-align: center;
    text-decoration: none;
    color: #000;
    transition: color 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    color: #007bff; 
    font-weight: 700;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    padding-left: 3rem;
}

.auth-buttons a {
    font-family: 'WantedSansVariable', sans-serif;
    font-weight: 600;
    text-decoration: none;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 1.25rem;
    font-size: 0.813rem;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-block;
    text-align: center;
}

.auth-buttons .login {
    background: #f0f4ff;
    color: #007bff;
    padding-left: 1.5rem;
    padding-top: 0.75rem;
    padding-right: 1.5rem;
    padding-bottom: 0.75rem;
}

.auth-buttons .get-started {
    background: #007bff;
    color: #fff;
    padding-left: 1.5rem;
    padding-top: 0.75rem;
    padding-right: 1.5rem;
    padding-bottom: 0.75rem;
}

.auth-buttons .login:hover {
    background: #e0eaff;
}

.auth-buttons .get-started:hover {
    background: #0056b3;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu .line {
    width: 100%;
    height: 0.2rem;
    background-color: #000;
    transition: all 0.3s;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .custom-navbar {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hamburger-menu {
        display: flex;
    }

    .nav-links,
    .auth-buttons {
        display: none;
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 5rem;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.9);
        padding: 1rem 2rem;
        z-index: 1000;
    }

    .auth-buttons {
        top: 16rem;
    }

    .nav-links.open,
    .auth-buttons.open {
        display: flex;
    }

    .auth-buttons a {
        padding: 0.5rem 1rem;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
        background-color: rgba(240, 244, 255, 0.8);
        border-radius: 1rem;
    }

    .auth-buttons a.get-started {
        background-color: #007bff;
        color: white;
    }

    .auth-buttons a.login {
        background-color: #f0f4ff;
        color: #007bff;
    }
}

@media (max-width: 1200px) {
    .custom-navbar {
        padding-left: 8rem;
        padding-right: 8rem;
    }
}

@media (max-width: 1280px) {
    .custom-navbar {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

@media (max-width: 480px) {
    .custom-navbar {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* Footer Styles */
.footer {
    font-family: 'WantedSansVariable', sans-serif;
    background-color: #FFFFFF;
    padding: 2rem;
    border-radius: 5rem;
    margin: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 2.25em;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-section h3 .highlight {
    background: linear-gradient(to right, #007bff, #66ccff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.footer-section ul li span {
    color: #666;
}

.footer-section a,
.footer-section a:visited {
    color: #000102;
    text-decoration: none;
    transition: color 0.3s, border-bottom 0.3s;
    border-bottom: 2px solid transparent;
}

.footer-section a:hover,
.footer-section a:focus,
.footer-section a.active {
    color: #0056b3;
    border-bottom: 2px solid #0056b3;
}

.footer-section p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1rem;
}

.location-link {
    display: inline-block;
    font-size: 1rem;
    color: #007bff;
    border-bottom: 1px solid #007bff;
    text-decoration: none;
    transition: color 0.3s, border-color 0.3s;
}

.location-link:hover {
    color: #0056b3;
    border-color: #0056b3;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
        min-width: unset;
    }
}

.map-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 75%;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
