:root {
    --bg-color: #030305;
    --text-primary: #ffffff;
    --accent-cyan: #00f3ff;
    --accent-gold: #d4af37;
    --font-head: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

/* Loader */
#loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100vh;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.loader-text {
    font-size: 2vw;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--accent-cyan);
    animation: pulse 2s infinite alternate;
}
@keyframes pulse {
    0% { opacity: 0.5; text-shadow: 0 0 10px rgba(0, 243, 255, 0.2); }
    100% { opacity: 1; text-shadow: 0 0 30px rgba(0, 243, 255, 1); }
}

/* Cursor */
.cursor, .cursor-follower {
    position: fixed;
    top: 0; left: 0;
    pointer-events: none;
    border-radius: 50%;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background 0.3s;
}
.cursor { width: 8px; height: 8px; background: var(--accent-cyan); }
.cursor-follower { width: 40px; height: 40px; border: 1px solid rgba(0, 243, 255, 0.4); transition: width 0.3s, height 0.3s, transform 0.1s; }
.cursor-hover .cursor { width: 60px; height: 60px; background: rgba(212, 175, 55, 0.4); mix-blend-mode: exclusion; }
.cursor-hover .cursor-follower { opacity: 0; }

/* Nav */
nav {
    position: fixed;
    top: 0; width: 100%;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(10px);
}
.logo { font-family: var(--font-head); font-size: 2rem; color: var(--accent-gold); letter-spacing: 5px; }
nav ul { display: flex; gap: 3rem; list-style: none; }
nav a { color: white; text-decoration: none; font-size: 1.1rem; text-transform: uppercase; letter-spacing: 2px; }

/* Sections */
section { min-height: 100vh; position: relative; padding: 100px 5%; display: flex; flex-direction: column; justify-content: center; }

h1, h2 { font-family: var(--font-head); }

.hero-content { position: relative; z-index: 10; pointer-events: none; }
.hero h1 { font-size: 8vw; line-height: 1; margin-bottom: 2rem; color: var(--accent-gold); }
.hero p { font-size: 2vw; font-weight: 300; letter-spacing: 2px; }

#canvas-hero, #canvas-core { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }

.menu-section { z-index: 10; }
.menu-section h2 { font-size: 4vw; margin-bottom: 4rem; text-align: center; color: var(--accent-cyan); }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; }
.menu-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 3rem;
    border-radius: 15px;
    backdrop-filter: blur(20px);
    transition: transform 0.4s, border-color 0.4s;
}
.menu-item:hover { transform: translateY(-10px); border-color: var(--accent-gold); }
.menu-item h3 { font-size: 2rem; margin-bottom: 1rem; color: var(--accent-gold); }
.menu-item p { color: rgba(255,255,255,0.6); margin-bottom: 2rem; }
.price { font-size: 1.5rem; color: var(--accent-cyan); }

.gallery-section { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; padding: 15vh 5%; min-height: 100vh; }
.gallery-overlay { position: relative; z-index: 10; text-align: center; width: 100%; pointer-events: none; }
.gallery-overlay h2 { font-size: 5vw; line-height: 1.2; text-shadow: 0 0 20px rgba(0,0,0,0.8); margin-bottom: 5rem; color: var(--accent-cyan); }

.core-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 3rem; pointer-events: auto; max-width: 1200px; margin: 0 auto; }
.core-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(0, 243, 255, 0.2);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    text-align: left;
}
@media (min-width: 768px) {
    .core-card.form-offset {
        transform: translateY(50px);
    }
    .core-card.form-offset:hover {
        transform: translateY(40px);
    }
}
.core-card:hover {
    background: rgba(0, 243, 255, 0.05);
    border-color: var(--accent-gold);
    box-shadow: 0 10px 30px rgba(0, 243, 255, 0.15);
    transform: translateY(-10px);
}
.core-card h3 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-family: var(--font-head);
    color: var(--accent-gold);
}
.core-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1.1rem;
}

