/* assets/css/style.css */
:root {
    --jade: #0F5C4D;
    --jade-dark: #0A2E2A;
    --gold: #D4AF37;
    --soft-white: #F8F8F5;
    --charcoal: #111111;
}

body {
    background-color: var(--soft-white);
    color: var(--charcoal);
}

/* Glassmorphism utility */
.glass {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-dark {
    background: rgba(10, 46, 42, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

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

::-webkit-scrollbar-track {
    background: var(--jade-dark); 
}
 
::-webkit-scrollbar-thumb {
    background: var(--jade); 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold); 
}

/* Minimal decorative lines */
.deco-line {
    width: 60px;
    height: 2px;
    background: var(--gold);
    display: inline-block;
    margin: 1rem 0;
}

.deco-line-vertical {
    width: 1px;
    height: 100px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto;
}

/* Glowing text effects */
.text-glow {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

/* Card hover glow */
.hover-glow {
    transition: all 0.5s ease;
}

.hover-glow:hover {
    box-shadow: 0 10px 40px -10px rgba(15, 92, 77, 0.3);
    transform: translateY(-5px);
}

.hover-glow-gold:hover {
    box-shadow: 0 10px 40px -10px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
}

/* Parallax Background Utility */
.bg-parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Fluid Gradients */
.gradient-overlay {
    background: linear-gradient(135deg, rgba(10, 46, 42, 0.9) 0%, rgba(15, 92, 77, 0.7) 100%);
}

.gradient-radial {
    background: radial-gradient(circle at center, rgba(15, 92, 77, 0.4) 0%, rgba(10, 46, 42, 0.9) 100%);
}

/* Hero Particles Container */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}
