:root {
    
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAF9F6;
    --bg-accent: #F5F3EE;
    --text-primary: #2C2C2C;
    --text-secondary: #5A5A5A;
    --text-light: #8A8A8A;
    --gold-primary: #D4AF37;
    --gold-secondary: #C9A961;
    --gold-light: #E8D7A7;
    --border-color: #E5E5E5;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(212, 175, 55, 0.2);
    --frame-gradient-1: #f5f5f5;
    --frame-gradient-2: #ffffff;
    --frame-border: #e8e8e8;
    --frame-inset-dark: rgba(0, 0, 0, 0.15);
    --frame-inset-light: rgba(255, 255, 255, 0.9);
}

[data-theme="dark"] {
    --bg-primary: #1A1A1A;
    --bg-secondary: #2C2C2C;
    --bg-accent: #363636;
    --text-primary: #F5F3EE;
    --text-secondary: #C9C9C9;
    --text-light: #A0A0A0;
    --gold-primary: #D4AF37;
    --gold-secondary: #E8D7A7;
    --gold-light: #C9A961;
    --border-color: #404040;
    --shadow: rgba(0, 0, 0, 0.3);
    --shadow-hover: rgba(212, 175, 55, 0.3);
    --frame-gradient-1: #3a2f1f;
    --frame-gradient-2: #4a3f2f;
    --frame-border: #5a4f3f;
    --frame-inset-dark: rgba(0, 0, 0, 0.4);
    --frame-inset-light: rgba(139, 115, 85, 0.3);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
    position: relative;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.05;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--gold-primary) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, var(--gold-primary) 1px, transparent 1px),
        radial-gradient(circle at 40% 40%, var(--gold-primary) 0.5px, transparent 0.5px);
    background-size: 100px 100px, 150px 150px, 80px 80px;
    background-position: 0 0, 40px 60px, 20px 30px;
}

body::after {
    content: '✦';
    position: fixed;
    font-size: 300px;
    color: var(--gold-light);
    opacity: 0.04;
    top: 10%;
    right: -100px;
    z-index: -1;
    transform: rotate(15deg);
    pointer-events: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.3;
}

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

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

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

strong, b {
    font-weight: 600;
    color: var(--text-primary);
}



.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}