:root {
    --primary-color: #3E2723; /* Dark Chocolate */
    --secondary-color: #5D4037; /* Milk Chocolate */
    --accent-color: #D4AF37; /* Gold */
    --bg-color: #FFF7ED; /* Cream/Vanilla */
    --text-color: #211A1E;
    --text-light: #F5EBE0;
    --transition-speed: 0.5s;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    font-family: var(--font-body);
    color: var(--text-color);
}

body {
    overflow-x: hidden;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(62, 39, 35, 0.1);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.logo span {
    color: var(--accent-color);
}

nav a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    margin-left: 2rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent-color);
}

.btn-primary {
    background: var(--primary-color);
    color: #fff !important;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color) !important;
}

/* Sections */
.scroll-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.content-overlay {
    text-align: center;
    color: var(--primary-color);
    z-index: 10;
}

h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}

h1 span {
    color: var(--accent-color);
    font-style: italic;
}

.content-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.content-section {
    padding: 5% 10%;
    pointer-events: none; /* Let clicks pass through to potential interactions */
}

.content-box {
    background: rgba(255, 247, 237, 0.8);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    max-width: 500px;
    pointer-events: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-box.left { align-self: center; margin-right: auto; }
.content-box.right { align-self: center; margin-left: auto; }
.content-box.center { margin: 0 auto; text-align: center; }

h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.content-box p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-button:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

footer {
    padding: 2rem;
    text-align: center;
    background: var(--primary-color);
    color: var(--text-light);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2rem; }
    .content-box { padding: 2rem; width: 90%; }
}
