@font-face {
    font-family: 'Cooper-Hewitt-Bold';
    src: url('/src/fonts/CooperHewitt-Bold.woff2') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cooper-Hewitt-Book';
    src: url('/src/fonts/CooperHewitt-Book.woff2') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cooper-Hewitt-Medium';
    src: url('/src/fonts/CooperHewitt-Medium.woff2') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Cooper-Hewitt-Semibold';
    src: url('/src/fonts/CooperHewitt-Semibold.woff2') format('opentype');
    font-weight: normal;
    font-style: normal;
}

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

body {
    font-family: Cooper-Hewitt-Bold, sans-serif;
    background-color: #ffffff;
    color: #000000;
    cursor: none;
}

.glass-navbar {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    cursor: crosshair;

    display: flex;
    align-items: center;
    gap: 20px;
    padding: 6px 6px 6px 15px;

    border-radius: 50px;
    background: rgba(227, 223, 223, 0.15);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    color: #000;
    flex-shrink: 0;
}

.nav-logo img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    color: #000;
    flex-shrink: 0;
}

.nav-links a {
    font-family: Cooper-Hewitt-Medium, sans-serif;
    text-decoration: none;
    color: rgba(0, 0, 0, 0.7);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a:hover {
    color: #000;
    cursor: crosshair;
}

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

.nav-cta {
    font-family: Cooper-Hewitt-Semibold, sans-serif;
    background-color: #fff;
    color: #111;
    text-decoration: none;
    padding: 10px 24px 6px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: letter-spacing 0.3s ease, color 0.3s ease;
}

.nav-cta:hover {
    letter-spacing: 1px;
    color: #555;
    cursor: crosshair;
}

.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #000;
}

.hero-section h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    margin-bottom: 10px;
    color: #ffffff;
}

.viewButton {
    margin-top: 20px;
    cursor: none;
    display: inline-block;
    padding: 15px 30px;
    background: #000;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(13px);
    -webkit-backdrop-filter: blur(13px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 6px 3px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.viewButton:hover {
    transform: scale(1.05);
}

.button-wrapper:hover {
    transform: scale(1.05);
}

.features-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.features-section h2 {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 40px;
}

.feature-item {
    border-radius: 50px;
    border: 1px solid #000;
    padding: 40px 20px;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

footer {
    text-align: center;
    padding: 60px 20px;
    border-top: 1px solid #000;
    margin-top: 40px;
}

@media (min-width: 480px) {
    .features-section {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {

    .glass-navbar {
        width: 98%;
        left: 50%;
        transform: translateX(-50%);
        padding: 5px 4px;
        gap: 2px;
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    .nav-logo {
        width: 24px;
        height: 24px;
        flex-shrink: 0;
    }

    .nav-links {
        gap: 6px;
        flex-shrink: 1;
    }

    .nav-links a {
        font-size: 11px;
        padding: 0;
    }

    .nav-cta {
        font-size: 10px;
        padding: 5px 8px;
        width: fit-content;
        white-space: nowrap;
        flex-shrink: 0;
        letter-spacing: 0;
    }
}