/* Base Styles */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #050505;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::-webkit-scrollbar {
    display: none;
}
* {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Circular Menu Clip-Path Default */
#circular-menu {
    clip-path: circle(0px at calc(100% - 3rem) 3.5rem);
    visibility: hidden;
}

/* Menu Links Hover Animation */
.menu-link-item {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.menu-link-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.menu-link-item:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Magnetic Button Wrapper */
.magnetic-wrap {
    display: inline-block;
    padding: 1rem;
    cursor: pointer;
}

/* Page Transition Overlay */
#page-transition {
    pointer-events: none;
}

/* Text Reveal utility */
.reveal-text span {
    display: inline-block;
    overflow: hidden;
    vertical-align: top;
}
.reveal-text span span {
    display: inline-block;
    transform: translateY(100%);
    will-change: transform;
}

/* Premium Stroke Text Effect */
.stroke-text {
    -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.4);
    color: transparent;
    transition: -webkit-text-stroke 0.5s ease, color 0.5s ease, text-shadow 0.5s ease;
}
.stroke-text:hover {
    -webkit-text-stroke: 1.5px transparent;
    color: #c5a880;
    text-shadow: 0 0 25px rgba(197, 168, 128, 0.4);
}

/* Blueprint CAD Grid Background */
.blueprint-grid {
    background-size: 40px 40px, 40px 40px, 10px 10px, 10px 10px;
    background-image: 
        linear-gradient(to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(to right, rgba(255, 255, 255, 0.007) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.007) 1px, transparent 1px);
    background-position: center center;
}

/* CAD Drafting Crosshairs */
.draft-crosshair-h {
    height: 1px;
    width: 100%;
    background-image: linear-gradient(to right, rgba(197, 168, 128, 0.25) 30%, transparent 30%);
    background-size: 6px 1px;
}

.draft-crosshair-v {
    width: 1px;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(197, 168, 128, 0.25) 30%, transparent 30%);
    background-size: 1px 6px;
}



