@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.nav-link {
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background-color: #04692b;
    transition: transform 0.3s ease;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-spacer {
    width: 1px;
    height: 24px;
    background-color: #e5e7eb;
    margin: 0 12px;
}

.btn-primary {
    background-color: #04692b;
    border: 2px solid #04692b;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #035a23;
    border-color: #035a23;
}

button.bg-indigo-600 {
    background-color: #4f46e5 !important;
    border: 2px solid #4f46e5 !important;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

button.bg-indigo-600:hover {
    background-color: #4338ca !important;
    border-color: #4338ca !important;
}

.mobile-nav-link {
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.news-card {
    width: 100%;
}

@media (min-width: 1024px) {
    .news-card {
        width: calc((100% - 3rem) / 4);
    }
}

.hof-stat-card {
    width: 100%;
}

@media (min-width: 1024px) {
    .hof-stat-card {
        width: calc((100% - 1rem) / 2);
    }
}

section:first-of-type {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

section:nth-of-type(2) {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.wave-container {
    z-index: 1;
    pointer-events: none;
    line-height: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(1px);
}

.wave-svg {
    display: block;
    width: 100%;
    height: auto;
    min-height: 80px;
    border: none;
    outline: none;
    margin: 0;
    padding: 0;
    shape-rendering: geometricPrecision;
}

.wave-svg path {
    stroke: none;
    stroke-width: 0;
    fill: #f9fafb;
    vector-effect: non-scaling-stroke;
}

@media (min-width: 768px) {
    .wave-svg {
        min-height: 100px;
    }
}

.hof-stat-card {
    width: 100%;
}

@media (min-width: 1024px) {
    .hof-stat-card {
        width: calc((100% - 1rem) / 2);
        min-width: calc((100% - 1rem) / 2);
    }
}


