/*
Theme Name: Arch Studio
Theme URI: http://kalakarstudio.local
Author: Kalakar Studio Developer
Author URI: http://kalakarstudio.local
Description: A minimalist, brutalist, and modern WordPress theme for premium architecture firms. Uses Tailwind CSS and Alpine.js.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: arch-studio
*/

/* Custom scrollbar and theme overrides */
html {
    scroll-behavior: smooth;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #0f0f11;
}

::-webkit-scrollbar-thumb {
    background: #2e2e33;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4a4a52;
}

/* Brutalist details */
.brutalist-border {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    color: transparent;
}

/* Custom dual before/after slider style */
.before-after-container {
    position: relative;
    overflow: hidden;
}

.before-after-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-after-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #ffffff;
    cursor: ew-resize;
    z-index: 10;
}

.before-after-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #000000;
    border: 2px solid #ffffff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    pointer-events: none;
}
