/* Custom Styles & Animations */
body {
    font-family: 'Lato', sans-serif;
}

h1, h2, h3, h4, .font-serif {
    font-family: 'Cinzel', serif;
}

/* Gradient Mask for Hero Image */
.mask-image-gradient {
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to right, transparent, black);
}

/* Scroll Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Smooth Scroll Offset for Fixed Header */
section[id] {
    scroll-margin-top: 80px;
}

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

::-webkit-scrollbar-track {
    background: #05110E;
}

::-webkit-scrollbar-thumb {
    background: #064E3B;
    border: 2px solid #05110E;
}

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

/* Form Input Focus Effects */
input:focus, select:focus, textarea:focus {
    border-bottom-width: 2px;
}

/* Gold Gradient Text Utility */
.text-gold-gradient {
    background: linear-gradient(to right, #D4AF37, #F3E5AB, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Service Card Hover Lift */
.service-card {
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}
