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

:root {
    --gold: #D4AF37;
    --gold-light: #F9E29C;
    --royal-blue: #4169E1;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, .font-premium {
    font-family: 'Playfair Display', serif;
    line-height: 1.5; /* Increased for descenders/ascenders */
    padding-right: 0.5em !important; /* Aggressive space for italic slants */
    padding-left: 0.05em;
    overflow: visible !important;
}

.italic {
    display: inline-block;
    padding-right: 0.3em !important; /* Extra room for italic slants */
    overflow: visible !important;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Luxury Gradients */
.bg-gold-gradient {
    background: linear-gradient(135deg, #D4AF37 0%, #F9E29C 50%, #D4AF37 100%);
}

.text-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F9E29C 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animations */
.reveal-text {
    overflow: visible; /* Changed from hidden to prevent cropping */
}

.reveal-text span {
    display: inline-block;
    transform: translateY(100%);
}

/* Custom Cursor */
.cursor-follower {
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease;
}

/* Magnetic Button Hover */
.magnetic-wrap {
    display: inline-block;
}

/* Scroll Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: var(--gold);
    z-index: 10000;
}

/* Floating Elements */
.float-element {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
