
body {
    font-family: 'Inter', sans-serif;
}

.font-serif {
    font-family: 'Cormorant Garamond', serif;
}

.geometric-loader {
    width: 60px;
    height: 60px;
    position: relative;
}

.geometric-loader::before, .geometric-loader::after {
    content: '';
    position: absolute;
    width: inherit;
    height: inherit;
    border-radius: 3px;
    background: #FFD700; /* Gold */
    animation: rotate 2.3s cubic-bezier(0.75, 0, 0.5, 1) infinite;
}

.geometric-loader::after {
    animation-delay: -1.15s;
}

@keyframes rotate {
    0% { transform: rotate(0deg) scale(1); background: #FFD700;}
    50% { transform: rotate(180deg) scale(0.6); background: #F0E68C;}
    100% { transform: rotate(360deg) scale(1); background: #FFD700;}
}


#canvas-container canvas {
    display: block;
}

.scroll-arrow {
    opacity: 0;
    animation: fadeIn 1s 3s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.pillar {
    border: 1px solid rgba(216, 179, 93, 0.1);
    background: linear-gradient(145deg, rgba(14, 26, 46, 0.4), rgba(20, 15, 5, 0.2));
    padding: 2rem;
    text-align: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.pillar:hover {
    transform: translateY(-10px);
    border-color: rgba(216, 179, 93, 0.4);
    background: linear-gradient(145deg, rgba(14, 26, 46, 0.6), rgba(20, 15, 5, 0.4));
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pillar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(216, 179, 93, 0.05);
    border: 1px solid rgba(216, 179, 93, 0.2);
}

.image-container {
    position: relative;
}
.image-container::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: conic-gradient(from 90deg at 40% -25%, #ffd700, #ff7a00, #ffdf40, #ff9e40, #ffd700);
    filter: blur(30px) opacity(0.3);
    border-radius: 10px;
    animation: shimmer 5s infinite linear;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.nav-link {
    position: relative;
    color: #aab8d0; /* muted */
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #d8b35d; /* gold */
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link.active span, .nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link.active {
    color: #ffffff;
}