@import './variables.css';

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-body);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.text-display {
    font-size: 4rem;
    letter-spacing: -0.02em;
}

.text-h1 {
    font-size: 3rem;
}

.text-h2 {
    font-size: 2.25rem;
}

.text-h3 {
    font-size: 1.75rem;
}

.text-body-sm {
    font-size: 0.875rem;
}

.uppercase {
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.text-accent {
    color: var(--color-accent);
}

/* Layout Utilities */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.section {
    padding: var(--space-xl) 0;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-sm {
    gap: var(--space-sm);
}

.gap-md {
    gap: var(--space-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--color-text-main);
    background: transparent;
    color: var(--color-text-main);
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn:hover {
    background: var(--color-text-main);
    color: var(--color-bg-body);
}

.btn-primary {
    background: var(--color-text-main);
    color: var(--color-bg-body);
}

.btn-primary:hover {
    background: transparent;
    color: var(--color-text-main);
}