/* Custom Styles for Turncut Professional B2B Landing Page */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sharp Accent Elements */
.accent-line {
    height: 4px;
    background-color: #F26522;
    width: 60px;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

/* Hero Section Split */
.hero-split {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
}

/* Clean Image Card Hover */
.clean-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid transparent;
}

.clean-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-bottom: 4px solid #F26522;
}

/* Scrollbar setup */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
    background: #CCCCCC;
}
::-webkit-scrollbar-thumb:hover {
    background: #F26522;
}

/* Responsive Grid Masonry for Gallery (using columns) */
.gallery-grid {
    column-count: 1;
    column-gap: 2rem;
}
@media (min-width: 768px) {
    .gallery-grid {
        column-count: 2;
    }
}
@media (min-width: 1024px) {
    .gallery-grid {
        column-count: 3;
    }
}
.gallery-item {
    break-inside: avoid;
    margin-bottom: 2rem;
}
