/* custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #FAF9F6;
}
::-webkit-scrollbar-thumb {
    background: #a07b44;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7a5a2d;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Custom styles not easily covered by Tailwind */
.border-frame {
    position: relative;
}

.border-frame::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 30px;
    height: 30px;
    border-top: 3px solid #a07b44;
    border-left: 3px solid #a07b44;
    z-index: 10;
}

.border-frame::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 30px;
    height: 30px;
    border-bottom: 3px solid #a07b44;
    border-right: 3px solid #a07b44;
    z-index: 10;
}

/* Custom animation for float effect */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* FAQ transition utilities */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-content {
    max-height: 1000px;
    transition: max-height 0.5s cubic-bezier(0.85, 0, 0.15, 1);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Hover effects for cards */
.hover-gold-border {
    transition: all 0.3s ease;
}
.hover-gold-border:hover {
    border-color: #a07b44;
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(46, 20, 5, 0.08);
}
