/* Typography System */

/* Neoteric Font for Logo */
@font-face {
    font-family: 'Neoteric';
    src: url('https://db.onlinewebfonts.com/t/8e22a3b610e6a0c7595731c31cacde1e.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* Base Typography */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text-primary);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
}

/* Paragraph */
p {
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* Links */
a {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
    opacity: 0.8;
}

/* Strong */
strong {
    font-weight: 600;
}

/* Small text */
small {
    font-size: 0.875rem;
}

/* Special Classes */
.text-large {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    line-height: 1.7;
}

.text-small {
    font-size: 0.875rem;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.font-mono {
    font-family: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
}

/* Logo Typography */
.nav__logo {
    font-family: 'Neoteric', 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: normal;
    letter-spacing: 0.05em;
}

.hero__title-main {
    font-family: 'Neoteric', 'Inter', sans-serif;
    font-weight: normal;
    letter-spacing: 0.02em;
}
