/* HS ENTERPRISES - LIGHTWEIGHT ENHANCEMENTS */

* {
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-padding-top: 80px;
    scroll-behavior: smooth;
}

/* Focus States */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--honey);
    outline-offset: 2px;
}

/* Simple Hover Effects */
.glass-card:hover {
    transform: translateX(-5px);
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-alt);
}

::-webkit-scrollbar-thumb {
    background: var(--oak);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--honey);
}

/* ========================================
   ENHANCED TYPOGRAPHY
   ======================================== */
body {
    font-size: 16px;
    line-height: 1.7;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--brown);
    margin-bottom: 0.5em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.8rem);
}

p {
    margin-bottom: 1em;
    line-height: 1.75;
}

/* Better link styles */
a {
    transition: all 0.2s ease;
}

/* Smooth font rendering */
* {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   MODERN UI ENHANCEMENTS (120fps Ready)
   ======================================== */

/* Glass Morphism Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px rgba(47, 36, 30, 0.1),
                0 0 0 1px rgba(255, 255, 255, 0.2) inset;
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateX(-8px) translateY(-4px);
    box-shadow: 0 20px 60px rgba(47, 36, 30, 0.2),
                0 0 0 1px rgba(200, 155, 60, 0.3) inset;
}

/* Modern Navbar */
.navbar {
    background: rgba(247, 243, 238, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 20px rgba(47, 36, 30, 0.05);
    transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(247, 243, 238, 0.95);
    box-shadow: 0 4px 30px rgba(47, 36, 30, 0.1);
}

/* Modern Cards with Glow */
.product-card,
.about-feature,
.timeline-content {
    will-change: transform;
}

.product-card:hover,
.gallery-item:hover {
    box-shadow: 0 20px 60px rgba(200, 155, 60, 0.15),
                0 0 0 1px rgba(200, 155, 60, 0.2);
}

/* Smooth Image Hover */
.product-image,
.product-detail-image,
.gallery-item-bg,
.about-image-main {
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Section Headers */
.section-header h2 {
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--honey), transparent);
    border-radius: 2px;
}

/* Modern Input Fields */
input,
textarea,
select {
    backdrop-filter: blur(10px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(221, 209, 195, 0.3);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--honey);
    background: rgba(255, 255, 255, 0.95);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(200, 155, 60, 0.15);
}

/* Modern Badge */
.section-badge {
    background: linear-gradient(135deg, 
        rgba(200, 155, 60, 0.1) 0%, 
        rgba(166, 124, 82, 0.08) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 155, 60, 0.2);
    box-shadow: 0 4px 15px rgba(200, 155, 60, 0.1);
}

.hero-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(47, 36, 30, 0.1);
}

/* Modern Shadows */
.product-detail-image {
    box-shadow: 0 20px 60px rgba(47, 36, 30, 0.15),
                0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

/* Stat Items */
.stat-item {
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--honey), var(--oak));
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.stat-item:hover::before {
    opacity: 0.1;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.02);
}

/* Footer Enhancement */
.footer {
    background: linear-gradient(135deg, 
        rgba(47, 36, 30, 0.97) 0%, 
        rgba(91, 58, 41, 0.95) 100%);
    backdrop-filter: blur(10px);
}

/* 120fps Optimization */
* {
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@media (min-width: 1920px) {
    .container {
        max-width: 1600px;
    }
}
