/* Custom Styles */
html {
    scroll-behavior: smooth;
}

.text-shadow {
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.text-shadow-gold {
    text-shadow: 0 1px 2px rgba(197, 160, 89, 0.3);
}

/* Gradient Background for Gold Sections */
.bg-gold-gradient {
    background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
    position: relative;
}

.bg-gold-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #c5a059, #e6c88a, #c5a059);
}

/* Accordion Animation */
.accordion-content {
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    max-height: 0;
    overflow: hidden;
}

.accordion-content.active {
    max-height: 500px; /* Approximate max height */
}

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

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