/* --- High-End Variables --- */
:root {
    --bg-main: #0a0a0a;
    --bg-alt: #111111;
    --text-main: #f0f0f0;
    --text-muted: #666666;
    --gold: #cba358;
    --border-color: rgba(255, 255, 255, 0.05);
    
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Montserrat', sans-serif;
}

/* --- Reset & Base --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-sans);
    font-weight: 300;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Hide default cursor */
}

a, button, select, input, textarea { cursor: none; } /* Ensure hidden on interactables */

/* --- Custom Cursor --- */
.cursor-dot, .cursor-outline {
    position: fixed; top: 0; left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%; z-index: 9999; pointer-events: none;
}
.cursor-dot { width: 6px; height: 6px; background-color: var(--gold); }
.cursor-outline {
    width: 40px; height: 40px;
    border: 1px solid rgba(203, 163, 88, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* --- Layout Architecture --- */
.sidebar {
    position: fixed; top: 0; left: 0;
    width: 25vw; max-width: 350px; height: 100vh;
    background: var(--bg-main);
    border-right: 1px solid var(--border-color);
    display: flex; flex-direction: column;
    z-index: 100; transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.main-content { margin-left: 25vw; width: 75vw; transition: background-color 0.8s ease; }

.section {
    min-height: 100vh;
    padding: 10vh 10%;
    display: flex; flex-direction: column; justify-content: center;
}
.content-wrapper { max-width: 800px; }
.dark-bg { background-color: var(--bg-alt); }

/* --- Sidebar Styling --- */
.sidebar-content {
    display: flex; flex-direction: column; justify-content: space-between;
    height: 100%; padding: 50px;
}
.sidebar-logo { width: 120px; opacity: 0.9; margin-bottom: 20px;}

.vertical-nav ul { list-style: none; }
.vertical-nav li { margin-bottom: 25px; }
.vertical-nav a {
    text-decoration: none; color: var(--text-muted);
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 3px;
    transition: color 0.4s ease, padding-left 0.4s ease;
    display: inline-block;
}
.vertical-nav a:hover, .vertical-nav a.active {
    color: var(--gold); padding-left: 10px;
}

.sidebar-footer { font-size: 0.65rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase;}

/* --- Typography --- */
.hero-title {
    font-family: var(--font-serif); font-size: 4vw; font-weight: 400;
    line-height: 1.1; margin-bottom: 30px;
}
.gold-text { color: var(--gold); font-style: italic; }
.hero-subtitle { font-size: 1rem; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; }

.section-title {
    font-family: var(--font-serif); font-size: 2.5rem;
    color: var(--gold); margin-bottom: 40px; font-weight: 400;
}
.large-text { font-family: var(--font-serif); font-size: 1.8rem; line-height: 1.5; margin-bottom: 30px; }
.body-text { color: var(--text-muted); font-size: 1rem; line-height: 1.8; max-width: 600px; }

/* --- Interactive Expertise Section --- */
.expertise-section { transition: background-color 0.8s ease; }
.interactive-list { border-top: 1px solid var(--border-color); }
.service-item {
    padding: 40px 0; border-bottom: 1px solid var(--border-color);
    display: flex; justify-content: space-between; align-items: center;
    transition: padding 0.4s ease;
}
.service-item h3 { font-family: var(--font-serif); font-size: 2rem; font-weight: 400; transition: color 0.4s; }
.service-desc { color: var(--text-muted); font-size: 0.85rem; letter-spacing: 1px; opacity: 0; transition: opacity 0.4s; }

.service-item:hover { padding: 40px 20px; }
.service-item:hover h3 { color: var(--gold); }
.service-item:hover .service-desc { opacity: 1; }

/* Dynamic Background Classes for JS */
.bg-wedding { background-color: #120e0c !important; }
.bg-birthday { background-color: #0c1112 !important; }
.bg-shower { background-color: #10120c !important; }

/* --- Minimal Form --- */
.minimal-form { display: flex; flex-direction: column; gap: 40px; margin-top: 50px; }
.input-group { position: relative; width: 100%; }

input, select, textarea {
    width: 100%; padding: 15px 0; background: transparent;
    border: none; border-bottom: 1px solid #333;
    color: var(--text-main); font-family: var(--font-sans); font-size: 1rem;
    outline: none; transition: border-color 0.4s ease;
}
select { appearance: none; color: var(--text-muted); }
select option { background: var(--bg-main); }
textarea { resize: none; overflow: hidden; min-height: 40px; }

.input-group label {
    position: absolute; top: 15px; left: 0; color: var(--text-muted);
    font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
    pointer-events: none; transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

input:focus ~ label, input:not(:placeholder-shown) ~ label,
textarea:focus ~ label, textarea:not(:placeholder-shown) ~ label {
    top: -15px; font-size: 0.6rem; color: var(--gold);
}
input:focus, select:focus, textarea:focus { border-bottom-color: var(--gold); }

/* --- Magnetic Button --- */
.magnetic-wrap { display: inline-block; padding: 20px; margin-left: -20px; }
.magnetic-btn {
    background: transparent; color: var(--gold); border: 1px solid var(--gold);
    padding: 20px 50px; font-family: var(--font-sans); font-size: 0.8rem;
    text-transform: uppercase; letter-spacing: 3px; border-radius: 50px;
    transition: background 0.4s, transform 0.1s; display: inline-block;
}
.magnetic-btn:hover { background: var(--gold); color: var(--bg-main); }
.btn-text { display: inline-block; pointer-events: none; }

/* --- Animations --- */
.reveal-up { opacity: 0; transform: translateY(50px); transition: 1.2s cubic-bezier(0.19, 1, 0.22, 1); }
.reveal-up.active { opacity: 1; transform: translateY(0); }

/* --- Mobile Adaptations --- */
.mobile-toggle {
    display: none; position: fixed; top: 20px; right: 20px; z-index: 1001;
    color: var(--gold); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px;
}
@media (max-width: 900px) {
    body { cursor: auto; } /* Disable custom cursor on mobile */
    .cursor-dot, .cursor-outline { display: none; }
    
    .mobile-toggle { display: block; }
    .sidebar { transform: translateX(-100%); width: 100vw; max-width: 100%; border-right: none; }
    .sidebar.menu-open { transform: translateX(0); }
    .main-content { margin-left: 0; width: 100vw; }
    .hero-title { font-size: 2.5rem; }
    .section { padding: 15vh 5%; }
}