/* base.css - Global Variables, Reset, and Typography */

/* Typography */
@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&display=swap');

:root {
    /* Colors */
    --color-brand: #af6f44;
    --color-brand-dark: #2a190e;
    --color-text-main: #2a190e;
    --color-text-muted: rgba(42, 25, 14, 0.6);
    --color-bg-light: #fff0e6;
    --color-white: #ffffff;
    --color-black: #121212;
    --color-gray-light: #efefef;

    /* Fonts */
    --font-primary: "Tenor Sans", sans-serif;

    /* Responsive Font Sizes */
    --fs-h1: 70px;
    --fs-h2: 40px;
    --fs-subtitle: 20px;

    /* Spacing */
    --container-max-width: 1280px;
    --section-padding: 80px 0;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

@media (max-width: 1024px) {
    :root {
        --fs-h1: 48px;
        --fs-h2: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --fs-h1: 28px;
        --fs-h2: 24px;
        --fs-subtitle: 16px;
    }
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-main);
    background-color: var(--color-white);
    line-height: 1.4;
    letter-spacing: 0.02em; /* Subtle spacing characteristic of Tenor Sans in design */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    background: none;
    border: none;
    font-family: inherit;
    cursor: pointer;
}

/* Utilities */
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.text-center { text-align: center; }
.text-white { color: var(--color-white); }
.text-brand { color: var(--color-brand); }
