/* =========================
   CSS VARIABLES
========================= */

:root {
    --primary-color: #d4af37;
    --bg-dark: #0a0a0a;
    --bg-dark-light: #1a1a1a;
    --text-light: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s ease;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Open Sans', sans-serif;
}

/* =========================
   RESET & BASE
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 15px;
}

p {
    margin-bottom: 10px;
}

a {
    color: inherit;
    text-decoration: none;
}

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

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

/* =========================
   SCROLLBAR STYLING
========================= */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(192, 57, 43, 0.5);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
