:root {
    /* Color Palette (Brown & White) */
    --color-bg-dark: transparent;
    /* Transparent Background for Silk */
    --color-bg-light: transparent;
    --color-accent-red: transparent;
    /* SaddleBrown for accents instead of Red */
    --color-accent-blue: #c6e7ff;
    /* Light Blue */

    --color-text-dark: #ffffff;
    --color-text-light: #ffffff;
    /* White text */
    --color-text-muted: rgba(255, 255, 255, 0.6);

    /* Typography */
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Manrope', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000;
    color: var(--color-text-light);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
.nav-link,
.btn,
.menu-text {
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-red {
    background-color: var(--color-accent-red);
    color: white;
}

.btn-red:hover {
    background-color: white;
    color: var(--color-accent-red);
}

.btn-blue {
    background-color: var(--color-accent-blue);
    color: var(--color-text-light);
}

.btn-blue:hover {
    background-color: white;
    color: var(--color-accent-blue);
}

.btn-outline {
    border: 1px solid currentColor;
    background: transparent;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn.large {
    padding: 16px 48px;
    font-size: 1.2rem;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
}
