@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Manrope:wght@400;600;700&display=swap');

:root {
    --bg-color: #131411;
    --surface-color: #1c1c19;
    --primary-purple: #3d2b56;
    --accent-gold: #c5a059;
    --text-off-white: #e5e2dd;
    --text-muted: #ccc4cf;
    --glass-bg: rgba(61, 43, 86, 0.2);
    --glass-border: rgba(197, 160, 89, 0.3);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-off-white);
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.4);
}

.btn-gold {
    background: linear-gradient(135deg, #d4af37, #c5a059);
    color: #131411;
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.4);
}

.btn-ghost {
    background: transparent;
    color: var(--accent-gold);
    padding: 12px 32px;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border: 1px solid var(--accent-gold);
    cursor: pointer;
}

.btn-ghost:hover {
    background: rgba(197, 160, 89, 0.1);
}

.card {
    padding: 32px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.accent-text {
    color: var(--accent-gold);
}

.section-padding {
    padding: 120px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 32px;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(19, 20, 17, 0.9);
    backdrop-filter: blur(10px);
}
