/* styles.css */
@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
    --color-gold: #C5A059;
    --color-gold-light: #E8D099;
    --color-dark: #070707;
    --color-card: rgba(20, 20, 20, 0.4);
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    background-color: var(--color-dark);
}

/* Custom Selection */
::selection {
    background-color: var(--color-gold);
    color: var(--color-dark);
}

/* Utilities */
.text-gold { color: var(--color-gold); }
.bg-gold { background-color: var(--color-gold); }
.border-gold { border-color: var(--color-gold); }
.bg-dark { background-color: var(--color-dark); }

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-gold), #A9833B);
    color: var(--color-dark);
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #A9833B, var(--color-gold));
    z-index: -1;
    transition: opacity 0.4s ease;
    opacity: 0;
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:hover {
    box-shadow: 0 10px 30px -10px rgba(197, 160, 89, 0.6);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    background: transparent;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition-smooth);
    border: 1px solid var(--color-gold);
}

/* Glassmorphism */
.glass-nav {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.glass-nav.scrolled {
    background-color: rgba(7, 7, 7, 0.85);
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.glass-card {
    background: var(--color-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(197, 160, 89, 0.2);
    transform: translateY(-5px);
}

/* Glow Effects */
.glow-text {
    text-shadow: 0 0 20px rgba(197, 160, 89, 0.4);
}

/* Animations */
.reveal {
    opacity: 0;
    will-change: transform, opacity;
}

.fade-up { transform: translateY(40px); }
.fade-right { transform: translateX(-40px); }
.fade-left { transform: translateX(40px); }

.reveal.active {
    opacity: 1;
    transform: translate(0, 0);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* Parallax fallback wrapper */
.parallax-bg {
    transform: translateZ(0);
}
