/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── Component styles ─────────────────────────────────────── */
@import url('./components/header.css');
@import url('./components/hero.css');
@import url('./components/about.css');
@import url('./components/venues.css');
@import url('./components/location.css');
@import url('./components/footer.css');
@import url('./components/animations.css');

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

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

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
    border: none;
    cursor: pointer;
}

/* ── Design tokens ────────────────────────────────────────── */
:root {
    /* Colors */
    --color-green-dark:      #0D241C;
    --color-gold:            #C9A15A;
    --color-cream:           #F7F3EA;
    --color-soft-white:      #FFFDF8;
    --color-ivory:           #F7F3EA;
    --color-text-primary:    #0D241C;
    --color-text-secondary:  #4a5e55;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'DM Sans', system-ui, sans-serif;

    /* Motion */
    --transition:      250ms ease-in-out;
    --transition-slow: 600ms ease-in-out;

    /* Layout */
    --container-max:  1320px;
    --section-pad-v:  5rem;
    --section-pad-h:  3rem;
}

/* ── Base ─────────────────────────────────────────────────── */
body {
    font-family: var(--font-body);
    background: var(--color-cream);
    color: var(--color-text-primary);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ── Focus visible ────────────────────────────────────────── */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
}

/* ── Selection ────────────────────────────────────────────── */
::selection {
    background: rgba(201,161,90,0.25);
}

@media (max-width: 768px) {
    :root {
        --section-pad-v: 3.5rem;
        --section-pad-h: 1.5rem;
    }
}

/* ── Accessibility utilities ───────────────────────────────── */
.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;
}
