@font-face {
    font-family: Nike Futura;
    src: url(../FONT/Nike-Futura/Futura\ Condensed\ Extra\ Bold\ Oblique.otf) format("opentype");
}

@font-face {
    font-family: Helvetica Neue;
    src: url(../FONT/Helvetica-Neus/Pragmatica-ExtraLight.woff) format("opentype");
}



.text1 {
    font-family: "Helvetica Neue";
    margin-bottom: 4px;
    font-size: 16px;
    line-height: 1.5;
}

.text2 {
    font-family: "Nike Futura";
    font-weight: 500;
    font-size: 72px;
    line-height: 60px;
    margin-bottom: 8px;
}

.sandal-heading {
    font-family: "Helvetica Neue";
    font-weight: 500;
    font-size: 24px;
    line-height: 28px;
}

a.footer-link-bold {
    font-family: "Nike Futura";
    text-decoration: none;
}

a.footer-link-light {
    font-family: "Helvetica Neue";
    text-decoration: none;
    font-size: 12px;
}

a.nav-link{
    position: relative;
    color: #000;
    text-decoration: none;
}

a.nav-link:hover {
    color: #000;
}

a.nav-link::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

a.nav-link:hover::before {
    transform: scaleX(1);
}

a.btn-dark:hover {
    color: #000;
    background-color: white;
    border: solid 1px black;
    transition: transform 0.6s ease-in-out;
}

a.btn-light:hover {
    color: white;
    background-color: black;
    border: none;
    transition: transform 0.6s ease-in-out;
}