/* Custom Additions beyond Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #111111;
}

/* Header blur effect */
#site-header {
    background-color: rgba(17, 17, 17, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.scrolled-header {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

html, body {
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

/* Custom Utilities */

/* Subtle continuous pulse for hero graphic */
@keyframes pulse-slow {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.05);
    }
}
.animate-pulse-slow {
    animation: pulse-slow 8s ease-in-out infinite;
}

/* Ensure icons size correctly */
.lucide {
    display: inline-block;
}

/* Enhanced Hover Effects */
.gs_reveal_card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gs_reveal_card:hover {
    transform: translateY(-8px);
    border-color: rgba(200, 161, 101, 0.5);
    box-shadow: 0 10px 40px -10px rgba(200, 161, 101, 0.15);
}

.gs_reveal_card:hover .lucide {
    transform: scale(1.1);
    color: #fff;
    filter: drop-shadow(0 0 8px rgba(200, 161, 101, 0.8));
    transition: all 0.3s ease;
}

/* Parallax utility */
.parallax-bg {
    will-change: transform;
}
