/* Additional custom styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

/* Gold gradient text utility */
.text-gold-gradient {
    background: linear-gradient(135deg, #e8d5a3 0%, #c9a84c 50%, #b8922e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Gold button */
.btn-gold {
    background: linear-gradient(135deg, #d4af55 0%, #c9a84c 100%);
    color: #111a0c;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-gold:hover {
    background: linear-gradient(135deg, #e8d5a3 0%, #d4af55 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

/* Outline gold button */
.btn-outline-gold {
    border: 1.5px solid #c9a84c;
    color: #d4af55;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-gold:hover {
    background: rgba(201, 168, 76, 0.12);
    transform: translateY(-2px);
}

/* Card shadow */
.card-shadow {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.45), 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Gold borders */
.gold-border {
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.gold-border-strong {
    border: 1px solid rgba(201, 168, 76, 0.6);
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    html {
        scroll-behavior: auto;
    }
}

/* Text selection */
::selection {
    background: rgba(85, 128, 51, 0.3);
    color: #e8d5a3;
}

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

::-webkit-scrollbar-track {
    background: #111a0c;
}

::-webkit-scrollbar-thumb {
    background: #334f23;
    border-radius: 4px;
}

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