/* Custom Utilities */
body { 
    font-family: 'Poppins', sans-serif; 
    background-color: #FAF9F6; 
    color: #1A1A1A; 
}

/* Base typography */
h1, h2, h3, h4, h5, h6, .font-playfair { 
    font-family: 'Playfair Display', serif; 
}

/* Glassmorphism Classes */
.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.glass-dark {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

/* Smooth Image Zoom on Hover */
.img-hover-zoom { 
    overflow: hidden; 
}
.img-hover-zoom img { 
    transition: transform 0.7s ease; 
}
.img-hover-zoom:hover img { 
    transform: scale(1.05); 
}

/* --- INTERACTIVE EFFECTS --- */

/* Custom Luxury Cursor */
@media (pointer: fine) {
    body, a, button, input, textarea, .cursor-pointer {
        cursor: none;
    }
}
.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: 8px; 
    height: 8px;
    background-color: #D4AF37;
    box-shadow: 0 0 10px #D4AF37;
}
.cursor-outline {
    width: 40px; 
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Hover Shine Effect for Buttons */
.btn-shine {
    position: relative;
    overflow: hidden;
}
.btn-shine::after {
    content: '';
    position: absolute;
    top: 0; 
    left: -100%;
    width: 50%; 
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: all 0.7s ease;
}
.btn-shine:hover::after {
    left: 150%;
}

/* Underline Animation for Navbar links */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}
.nav-link:hover::after {
    width: 100%;
}

/* Animated Gradient Text */
.text-gradient {
    background: linear-gradient(to right, #D4AF37, #F5E6B3, #D4AF37);
    background-size: 200% auto;
    color: #000;
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* Utility Animations */
.animate-spin-slow {
    animation: spin 15s linear infinite;
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0F0F0F; }
::-webkit-scrollbar-thumb { background: #D4AF37; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #F5E6B3; }

html, body {
    max-width: 100%;
    overflow-x: hidden;
}
