/*
Theme Name: Daga Clays
Theme URI: http://example.com/daga-clays
Author: Askin
Author URI: http://example.com
Description: Custom WordPress theme for Daga Clays / Mineral Core.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, minerals, industrial
Text Domain: daga-clays
*/

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

body {
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Micro-animations */
.hover-lift {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.button-premium {
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.button-premium::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) rotate(45deg) scale(0);
    transition: transform 0.5s ease;
}

.button-premium:hover::after {
    transform: translate(-50%, -50%) rotate(45deg) scale(1);
}

.button-premium:active {
    transform: scale(0.95);
}

/* ── Phase 2 Utilities ─────────────────────────────────────── */

/* Tectonic overlap: cards pull up over the hero (About page) */
.tectonic-overlap {
    margin-top: -2.5rem;
}

@media (min-width: 768px) {
    .tectonic-overlap {
        margin-top: -5rem;
    }
}

/* Tectonic overlap for products page: -120px as per reference */
.tectonic-overlap-lg {
    margin-top: -60px;
}

@media (min-width: 768px) {
    .tectonic-overlap-lg {
        margin-top: -120px;
    }
}

/* Hide scrollbar for team carousel */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}