@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=League+Spartan:wght@400;500;600;700&display=swap');

:root {
    --black-primary: #0c0c0c;
    --black-secondary: #141414;
    --black-trinal: #000000;
    --purple-primary: #a53dff;
    --purple-secondary: #f986ff;
    --nav-border: #2a2a2a;
    --h1-c1: #FFFFFF;
    --h1-c2: #2e2e2e;
    --bottom-border: #656565;
}

body {
    background-color: var(--black-primary);
    color: #b5b5b5;
    font-family: 'Inter', sans-serif;
    margin: 0;
}

.font-spartan {
    font-family: 'League Spartan', sans-serif;
}

h1 {
    font-family: 'League Spartan', sans-serif;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(to bottom, var(--h1-c1), var(--h1-c2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
    font-size: clamp(2.5rem, 8vw, 3.75rem); /* ~60px (text-6xl) */
    letter-spacing: -0.02em;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

h2 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(2rem, 6vw, 3rem); /* ~48px */
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

h3 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(1.5rem, 5vw, 2.25rem); /* ~36px */
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
}

h4 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(1.25rem, 4vw, 1.875rem); /* ~30px */
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

h5 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem); /* ~24px */
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

h6 {
    font-family: 'League Spartan', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem); /* ~20px */
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

p {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 500;
    color: #b5b5b5;
    margin: 0;
}

.section-padding {
    padding: 4rem 1rem;
}

@media (min-width: 640px) {
    .section-padding {
        padding: 4rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-padding {
        padding: 4rem 2rem;
    }
}

.container-custom {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.bottom-border {
    height: 1px;
    width: 100%;
    background-color: var(--bottom-border);
}

/* Animations */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll-left {
    animation: scroll-left 30s linear infinite;
}

.animate-scroll-left:hover {
    animation-play-state: paused;
}

/* Form Styles */
input,
textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid #4b5563;
    /* gray-600 approx */
    color: white;
    padding: 0.5rem 0;
    width: 100%;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: var(--purple-primary);
}

/* Custom Scrollbar (optional) */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black-primary);
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #444;
}