/* ========================================
   Levytex Drilling Foam Solutions
   Custom Styles
   ======================================== */

/* Offset anchor jumps for the fixed 80px header */
html {
    scroll-padding-top: 6rem;
}

/* Industrial Grid Pattern */
.industrial-grid {
    background-size: 40px 40px;
    background-image: radial-gradient(circle, #64748B15 1px, transparent 1px);
}

/* Hard Shadow Effect */
.hard-shadow {
    box-shadow: 4px 4px 0px 0px rgba(11, 17, 32, 0.1);
}

/* Hero Section Clip Path */
.hero-clip {
    clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

/* Navigation active state (scrollspy) */
.nav-link {
    position: relative;
}

.nav-link.active {
    color: #0b1120;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: #fe5453;
}

/* Remove default details marker */
details > summary::-webkit-details-marker {
    display: none;
}
