@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #050505; 
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #BF953F, #AA771C); 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #BF953F; 
}

/* Selection */
::selection {
    background: #BF953F;
    color: #000;
}

/* Base Styles */
html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Text Gradient Helper (if Tailwind fails) */
.text-gold-gradient {
    background: linear-gradient(135deg, #BF953F 0%, #FCF6BA 50%, #B38728 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Service Card Hover Effect */
.service-card {
    backdrop-filter: blur(5px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(191, 149, 63, 0.5), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Loader Animation */
@keyframes loadBar {
    0% { width: 0; }
    100% { width: 100%; }
}

#loader-bar {
    animation: loadBar 1.5s ease-in-out forwards;
}

@media print {
    * {
        animation: none !important;
        transition: none !important;
        filter: none !important;
        box-shadow: none !important;
    }
    html, body {
        background: #ffffff !important;
        color: #000000 !important;
    }
    body {
        overflow: visible !important;
    }
    #loader,
    nav,
    #mobile-menu,
    .slide-dot,
    .fa-solid,
    .fa-brands {
        display: none !important;
    }
    header,
    section,
    footer {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    a[href]:after {
        content: "";
    }
    .service-card,
    .about-image,
    .about-content {
        opacity: 1 !important;
        transform: none !important;
    }
}
