/* Variables & Resets */
:root {
    --color-bg-dark: #1F352E; /* Main Dark Green */
    --color-bg-brown: #422A21; /* Brown sections */
    --color-bg-beige: #EBE4DB; /* Light beige sections */
    
    --color-text-light: #EEE7DE;
    --color-text-dark: #1F352E;
    
    --color-accent: #788B86; /* Circular elements and highlights */
    
    --font-serif: "ivybodoni", serif;
    --font-sans: "effra", sans-serif;
    
    --spacing-xs: clamp(0.25rem, 1vw, 0.5rem);
    --spacing-sm: clamp(0.75rem, 1.5vw, 1rem);
    --spacing-md: clamp(1.5rem, 3vw, 2rem);
    --spacing-lg: clamp(2.5rem, 5vw, 4rem);
    --spacing-xl: clamp(4rem, 8vw, 8rem);

    --transition-speed: 0.3s;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    font-family: var(--font-serif);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
