@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --color-gold: #D4AF37;
    --color-dark: #0a0a0a;
}

body {
    background-color: var(--color-dark);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    overflow-y: auto;
    /* Enable vertical scrolling */
}

.font-serif {
    font-family: 'Cinzel', serif;
}

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

.bg-gold {
    background-color: var(--color-gold);
}

.border-gold {
    border-color: var(--color-gold);
}

.text-shadow-lg {
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Form Styles */
input,
select,
textarea {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-gold);
    outline: none;
    background: rgba(0, 0, 0, 0.4);
}

/* Button Shine Effect */
button,
.btn-shine {
    position: relative;
    overflow: hidden;
}

button::after,
.btn-shine::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

button:hover::after,
.btn-shine:hover::after {
    left: 100%;
}

/* Parallax Container Handling - Removed/Updated for Video Hero */
/* .parallax-container { height: 100vh; overflow: hidden; position: relative; } */

/* Section Spacing */
section {
    position: relative;
    z-index: 10;
    /* Ensure content sits above parallax if needed, or follows flow */
    background-color: var(--color-dark);
    /* Ensure background is solid for scrolling content */
}

/* Smooth Scrolling Anchor Links */
html {
    scroll-behavior: smooth;
    cursor: none;
    /* Hide default cursor */
}

/* Custom Cursor */
.custom-cursor {
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.cursor-hover {
    transform: translate(-50%, -50%) scale(1.5);
    background-color: rgba(212, 175, 55, 0.1);
    border-color: transparent;
}

/* Magnetic Effect */
.magnetic-wrap {
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.magnetic-content {
    display: block;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}