/* ===================== BASE STYLES — elliechand.com ===================== */

:root {
    --bg-dark: #0c0b09;
    --bg-darker: #080705;
    --gold-primary: #b8913a;
    --gold-light: #d4aa5a;
    --gold-pale: #e8d5a3;
    --text-parchment: #f4ede0;
    --text-muted: #a09a8c;
    --fire-color: #c4501a;
    --air-color: #7a8b6e;
    --water-color: #3a6b7c;
    --earth-color: #8b7355;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'EB Garamond', serif;
    background-color: var(--bg-dark);
    color: var(--text-parchment);
    line-height: 1.7;
    cursor: none;
    overflow-x: hidden;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none; z-index: 10000; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Custom cursor */
.cursor-dot {
    position: fixed; width: 8px; height: 8px;
    background: var(--gold-primary); border-radius: 50%;
    pointer-events: none; z-index: 99999;
    transform: translate(-50%, -50%); transition: transform 0.1s ease;
}
.cursor-ring {
    position: fixed; width: 32px; height: 32px;
    border: 1px solid var(--gold-primary); border-radius: 50%;
    pointer-events: none; z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.2s ease, height 0.2s ease;
}
.cursor-ring.hover { width: 48px; height: 48px; border-color: var(--gold-light); }
@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
    body { cursor: auto; }
}

/* Reveal animations */
.reveal {
    opacity: 0.15; transform: translateY(12px);
    transition: opacity 0.5s var(--transition-smooth), transform 0.5s var(--transition-smooth);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Navigation */
nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 2rem 4rem; position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000; background: rgba(12, 11, 9, 0.9);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.nav-logo {
    font-family: 'Cormorant SC', serif;
    font-size: 1.1rem; letter-spacing: 0.3em;
    color: var(--gold-primary); text-decoration: none;
}
.nav-links { display: flex; gap: 2rem; }
.nav-links a {
    font-family: 'Cormorant SC', serif;
    font-size: 0.85rem; letter-spacing: 0.12em;
    color: var(--text-muted); text-decoration: none;
    transition: color 0.3s var(--transition-smooth);
}
.nav-links a:hover { color: var(--gold-light); }
@media (max-width: 768px) {
    nav { padding: 1.5rem; flex-wrap: wrap; gap: 1rem; }
    .nav-links { gap: 1rem; flex-wrap: wrap; }
    .nav-links a { font-size: 0.75rem; }
}

/* Buttons */
.btn-primary {
    font-family: 'Cormorant SC', serif;
    font-size: 0.85rem; letter-spacing: 0.15em;
    padding: 1rem 2rem; background: var(--gold-primary);
    color: var(--bg-dark); text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-secondary {
    font-family: 'Cormorant SC', serif;
    font-size: 0.85rem; letter-spacing: 0.15em;
    padding: 1rem 2rem; background: transparent;
    color: var(--text-muted); text-decoration: none;
    border: 1px solid rgba(184, 145, 58, 0.3);
    transition: all 0.3s var(--transition-smooth);
    display: inline-block;
}
.btn-secondary:hover { color: var(--gold-light); border-color: var(--gold-primary); background: rgba(184, 145, 58, 0.05); transform: translateY(-2px); }

/* Section title */
.section-title {
    font-family: 'Cormorant SC', serif;
    font-size: 0.7rem; letter-spacing: 0.3em;
    color: var(--text-muted); margin-bottom: 2rem;
}

/* Footer */
footer {
    padding: 4rem; border-top: 1px solid rgba(184, 145, 58, 0.15);
}
.footer-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem; max-width: 1000px; margin: 0 auto;
}
.footer-grid h4 {
    font-family: 'Cormorant SC', serif;
    font-size: 0.7rem; letter-spacing: 0.2em;
    color: var(--text-muted); margin-bottom: 1rem;
}
.footer-grid a, .footer-grid li {
    font-size: 0.9rem; color: var(--text-muted);
    text-decoration: none; display: block; margin-bottom: 0.5rem;
    transition: color 0.3s;
}
.footer-grid a:hover { color: var(--gold-light); }
.footer-grid ul { list-style: none; }
.footer-bottom {
    text-align: center; padding-top: 2rem;
    border-top: 1px solid rgba(184, 145, 58, 0.08);
    margin-top: 2rem;
}
.footer-bottom p {
    font-family: 'Cormorant SC', serif;
    font-size: 0.75rem; letter-spacing: 0.15em;
    color: var(--text-muted); margin-bottom: 0.5rem;
}
.footer-symbols {
    font-size: 1rem; letter-spacing: 0.3em;
    color: rgba(184, 145, 58, 0.25);
}
@media (max-width: 768px) {
    footer { padding: 2rem 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* Cookie banner */
#cookie-banner {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    z-index: 9999; background: rgba(12, 11, 9, 0.97);
    border-top: 1px solid rgba(184, 145, 58, 0.25);
    padding: 1.25rem 4rem; backdrop-filter: blur(10px);
}
.cookie-inner {
    max-width: 1100px; margin: 0 auto;
    display: flex; justify-content: space-between;
    align-items: center; gap: 2rem; flex-wrap: wrap;
}
.cookie-inner p {
    font-family: 'EB Garamond', serif;
    font-size: 0.9rem; color: var(--text-muted);
    line-height: 1.6; margin: 0;
}
.cookie-inner a { color: var(--gold-primary); text-decoration: none; }
.cookie-accept {
    font-family: 'Cormorant SC', serif;
    font-size: 0.75rem; letter-spacing: 0.15em;
    padding: 0.6rem 1.5rem; background: var(--gold-primary);
    color: var(--bg-dark); border: none; cursor: pointer;
    white-space: nowrap; transition: background 0.3s;
}
.cookie-accept:hover { background: var(--gold-light); }
