/* Global Premium Styles for Coach Sushma */

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0F172A;
}

::-webkit-scrollbar-thumb {
    background: #B45309;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #D97706;
}

/* Premium Grain Texture */
.bg-grain {
    position: relative;
}

.bg-grain::before {
    content: "";
    position: fixed;
    /* Fixed so it stays while scrolling */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: url("https://grainy-gradients.vercel.app/noise.svg");
    opacity: 0.04;
    pointer-events: none;
    z-index: 99;
    /* Higher to overlay everything slightly */
}

/* Hero Overlay Utility */
.hero-overlay {
    background: linear-gradient(to right bottom, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.8), transparent);
}

/* Premium Text Gradient */
.text-gradient {
    background: linear-gradient(135deg, #B45309 0%, #D97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Magnetic/Premium Button Utility */
.btn-premium {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
}

.btn-premium:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Scroll Reveal Base Classes */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-30px);
}

.reveal-right {
    transform: translateX(30px);
}

.reveal.active,
.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* Custom Cursor Elements */
#cursor-dot,
#cursor-outline {
    pointer-events: none;
    position: fixed;
    z-index: 100;
}

#cursor-dot {
    width: 8px;
    height: 8px;
    background: #B45309;
    border-radius: 50%;
}

#cursor-outline {
    width: 32px;
    height: 32px;
    border: 1px solid #B45309;
    border-radius: 50%;
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}