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

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

body {
    font-family: 'Montserrat', sans-serif;
    background: #000;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* Animated gradient background */
.animated-bg {
    background: linear-gradient(-45deg, #000000, #1a1a1a, #0a0a0a, #2d2d2d);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Gold gradient text */
.gold-gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 25%, #d4af37 50%, #ffed4e 75%, #ffd700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s linear infinite;
}

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

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}



/* Parallax effect */
.parallax {
    transform: translateZ(0);
    transition: transform 0.5s ease-out;
}

/* Glassmorphism effect */
.glass-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Luxury card hover */
.luxury-card {
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

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

.luxury-card:hover::before {
    left: 100%;
}

.luxury-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(212, 175, 55, 0.4);
}

/* Ornamental borders */
.ornamental-border {
    position: relative;
    padding: 3px;
    background: linear-gradient(45deg, #d4af37, #ffd700, #d4af37);
    background-size: 300% 300%;
    animation: borderGlow 3s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Slider transitions */
.slide {
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide.active {
    opacity: 1;
    position: relative;
}

/* Luxury button */
.luxury-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.luxury-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.luxury-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Decorative patterns */
.batik-pattern {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(212, 175, 55, 0.03) 0%, transparent 50%);
}

/* Navigation glow */
.nav-item {
    position: relative;
    transition: all 0.3s;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffd700, transparent);
    transition: width 0.3s;
}

.nav-item:hover::before {
    width: 100%;
}

/* Stats counter animation */
.stat-number {
    font-variant-numeric: tabular-nums;
    display: inline-block;
    min-width: 4ch; /* pastikan muat angka 4 digit */
    text-align: center;
}

/* Modal backdrop blur */
.modal-backdrop {
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.85);
}

/* Scroll reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Luxury timeline */
.timeline-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffd700, #d4af37);
    border: 4px solid #000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}



/* Particle effect */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffd700;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) translateX(0); }
    50% { opacity: 0.6; transform: translateY(-100px) translateX(50px); }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #d4af37, #ffd700);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}
