/*
Theme Name: Shaddai Futuristic
Theme URI: https://shaddailandscapingllc.com
Author: Shadow
Author URI: 
Description: Dark forest green theme for Shaddai Fencing & Landscaping - Futuristic design with nature-inspired colors
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shaddai-futuristic
*/

/* ============================================
   SHADDAI FENCING & LANDSCAPING - THEME
   Color Palette: Dark Forest + Gold Accents
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Colors - Dark Forest */
    --color-primary: #1A2F1A;
    --color-primary-light: #2D4A2D;
    --color-primary-dark: #0F1F0F;
    
    /* Accent - Golden Brass */
    --color-accent: #C9A227;
    --color-accent-light: #D4B84A;
    --color-accent-dark: #9A7B1C;
    
    /* Backgrounds */
    --color-bg: #0D0D0D;
    --color-bg-secondary: #141414;
    --color-bg-card: #1A1A1A;
    
    /* Text */
    --color-text: #F5F5F5;
    --color-text-muted: #A0A0A0;
    --color-text-dark: #1A1A1A;
    
    /* Borders & Dividers */
    --color-border: #2A2A2A;
    --color-border-light: #3A3A3A;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
    --shadow-glow: 0 0 20px rgba(201, 162, 39, 0.3);
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-accent-light);
}

img {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--color-text-muted);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: var(--color-accent);
    color: var(--color-text-dark);
}

.btn-primary:hover {
    background: var(--color-accent-light);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: var(--color-text-dark);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-md) 0;
    transition: all var(--transition-medium);
}

.site-header.scrolled {
    background: rgba(13, 13, 13, 0.98);
    padding: var(--spacing-sm) 0;
}

.site-branding {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.site-logo {
    display: flex;
    align-items: center;
}
.site-logo .logo-img {
    max-height: 60px;
    width: auto;
}

.site-logo span {
    color: var(--color-accent);
}

.main-navigation ul {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.main-navigation a {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
}

.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width var(--transition-medium);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-bg) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(45, 74, 45, 0.3) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(201, 162, 39, 0.1) 0%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: var(--spacing-lg);
}

.hero h1 {
    margin-bottom: var(--spacing-md);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-tagline {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-lg);
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero .fade-up,
.hero .fade-up.visible,
.hero .hero-tagline,
.hero .hero-buttons {
    opacity: 1;
    transform: none;
}

/* Sections */
.section {
    padding: var(--spacing-xl) 0;
}

.section-dark {
    background: var(--color-bg-secondary);
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--color-accent);
}

/* Cards */
.card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: var(--spacing-lg);
    transition: all var(--transition-medium);
}

.card:hover {
    border-color: var(--color-accent);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-accent);
}

.card h3 {
    margin-bottom: var(--spacing-sm);
}

.card p {
    font-size: 0.95rem;
}

/* Footer */
.site-footer {
    background: var(--color-primary-dark);
    border-top: 1px solid var(--color-border);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.footer-logo span {
    color: var(--color-accent);
}

.footer-title {
    font-size: 1.1rem;
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: var(--spacing-sm);
}

.footer-links a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-accent { color: var(--color-accent); }
.text-muted { color: var(--color-text-muted); }

.mt-1 { margin-top: var(--spacing-md); }
.mt-2 { margin-top: var(--spacing-lg); }
.mt-3 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-md); }
.mb-2 { margin-bottom: var(--spacing-lg); }
.mb-3 { margin-bottom: var(--spacing-xl); }

.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-1 { gap: var(--spacing-md); }
.gap-2 { gap: var(--spacing-lg); }

/* Responsive */
@media (max-width: 768px) {
    .main-navigation {
        display: none;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
/* ============================================
   FADE-UP ANIMATIONS (Added for scroll effects)
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for sequential animations */
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* Card hover lift effect */
.service-card, .benefit-card, .value-card, .gallery-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover,
.benefit-card:hover,
.value-card:hover,
.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Button shine/glow effect */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

/* Header scroll effect */
.site-header.scrolled {
    background: rgba(26, 47, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

/* Section dark backgrounds */
.section-dark {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
}

/* Card backgrounds with subtle gradient */
.service-card, .benefit-card, .value-card {
    background: linear-gradient(145deg, rgba(45, 74, 45, 0.3), rgba(26, 47, 26, 0.5));
    border: 1px solid rgba(201, 162, 39, 0.1);
}

/* Accent color for icons */
.card-icon, .benefit-icon, .value-icon {
    color: var(--color-accent);
    font-size: 2rem;
}

/* ============================================
   PRO DESIGN - Minimalist & Futuristic
   ============================================ */

/* Glassmorphism Header - Frosted Glass Effect */
.site-header {
    background: rgba(26, 47, 26, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(26, 47, 26, 0.95);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* Minimal Hero - Focus on image */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    z-index: 2;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero .subtitle {
    font-size: 1.25rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Minimal CTA Buttons */
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--color-accent);
    color: #0a0a0a;
}

.btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 162, 39, 0.3);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background: var(--color-accent);
    color: #0a0a0a;
}

/* Service Cards - Minimal & Clean */
.service-card, .benefit-card, .value-card {
    background: rgba(45, 74, 45, 0.2);
    border: 1px solid rgba(201, 162, 39, 0.15);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.4s ease;
    text-align: center;
}

.service-card:hover, .benefit-card:hover, .value-card:hover {
    transform: translateY(-8px);
    background: rgba(45, 74, 45, 0.4);
    border-color: var(--color-accent);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-icon, .benefit-icon, .value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3, .benefit-card h3, .value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.service-card p, .benefit-card p, .value-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Grid Layouts - Clean & Spaced */
.services-grid, .benefits-grid, .values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

/* Horizontal Scroll Portfolio - Like fluid.glass */
.portfolio-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding: 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.portfolio-scroll::-webkit-scrollbar {
    display: none;
}

.portfolio-item {
    flex: 0 0 400px;
    height: 500px;
    scroll-snap-align: center;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

/* Section Spacing */
.section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
    text-align: center;
}

/* Footer - Minimal */
.site-footer {
    background: var(--color-primary-dark);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    max-height: 50px;
    margin-bottom: 1rem;
}

.footer-links h4 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.6;
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.75rem;
    }
    
    .portfolio-item {
        flex: 0 0 300px;
        height: 400px;
    }
    
    .btn {
        padding: 0.875rem 1.75rem;
    }
}

/* ============================================
   MENU / NAVIGATION - Clean & Modern
   ============================================ */

/* Main Navigation Container */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.main-navigation ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2.5rem;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    padding: 0.5rem 0;
    display: block;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline effect on hover */
.main-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: width 0.3s ease;
}

.main-navigation a:hover {
    color: var(--color-accent);
}

.main-navigation a:hover::after {
    width: 100%;
}

/* Active menu item */
.main-navigation li.current-menu-item a {
    color: var(--color-accent);
}

.main-navigation li.current-menu-item a::after {
    width: 100%;
}

/* Header CTA Button */
.header-cta .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.85rem;
}

.header-cta .btn-primary {
    background: var(--color-accent);
    color: #0a0a0a;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.header-cta .btn-primary:hover {
    background: var(--color-accent-light);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
}

.mobile-navigation {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 47, 26, 0.98);
    backdrop-filter: blur(20px);
    z-index: 99;
    padding: 6rem 2rem 2rem;
}

.mobile-navigation.active {
    display: block;
}

.mobile-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.mobile-navigation li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.4s ease forwards;
}

.mobile-navigation li:nth-child(1) { animation-delay: 0.1s; }
.mobile-navigation li:nth-child(2) { animation-delay: 0.15s; }
.mobile-navigation li:nth-child(3) { animation-delay: 0.2s; }
.mobile-navigation li:nth-child(4) { animation-delay: 0.25s; }
.mobile-navigation li:nth-child(5) { animation-delay: 0.3s; }
.mobile-navigation li:nth-child(6) { animation-delay: 0.35s; }

.mobile-navigation a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-navigation a:hover {
    color: var(--color-accent);
}

/* Mobile Styles */
@media (max-width: 900px) {
    .main-navigation {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .header-cta {
        margin-left: auto;
        margin-right: 1rem;
    }
    
    .header-cta .btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
}

/* ============================================
   HORIZONTAL SCROLL COLLECTION - Like fluid.glass
   ============================================ */
   
.collection-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 3rem 2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.collection-scroll::-webkit-scrollbar {
    display: none;
}

.collection-scroll:active {
    cursor: grabbing;
}

.collection-item {
    flex: 0 0 350px;
    height: 450px;
    scroll-snap-align: center;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(45, 74, 45, 0.3);
    border: 1px solid rgba(201, 162, 39, 0.2);
    transition: all 0.4s ease;
}

.collection-item:hover {
    transform: scale(1.02);
    border-color: var(--color-accent);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.collection-item img {
    width: 100%;
    height: 65%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-item:hover img {
    transform: scale(1.1);
}

.collection-info {
    padding: 1.5rem;
}

.collection-info h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.collection-info p {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1rem;
}

.collection-link {
    color: var(--color-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.collection-link:hover {
    gap: 1rem;
}

/* ============================================
   VIDEO SHOWROOM SECTION
   ============================================ */
   
.video-showroom {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
}

.video-showroom video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.video-showroom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 47, 26, 0.8) 0%,
        rgba(10, 10, 10, 0.4) 50%,
        rgba(26, 47, 26, 0.8) 100%
    );
}

.video-showroom-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.video-showroom h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.video-showroom p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.video-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #0a0a0a;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.video-play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.5);
}

/* Video placeholder for no video yet */
.video-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    opacity: 0.5;
}

.video-placeholder span {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

/* ============================================
   HORIZONTAL SCROLL - DRAG TO SCROLL (fluid.glass style)
   ============================================ */
.collection-scroll {
    cursor: grab;
    -webkit-user-select: none;
    user-select: none;
}

.collection-scroll:active {
    cursor: grabbing;
}

.collection-scroll.is-dragging {
    pointer-events: none;
}

.collection-item {
    /* Remove scroll-snap for smoother drag */
    scroll-snap-align: none;
}

/* When JS is active, enable scroll-snap */
.collection-scroll.js-enabled .collection-item {
    scroll-snap-align: center;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    transform: none;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1 !important;
    object-fit: cover;
}

.hero-home {
    position: relative;
    background:
        linear-gradient(180deg, rgba(15, 31, 15, 0.42) 0%, rgba(15, 31, 15, 0.58) 100%),
        url('images/hero-fence.jpg') center center / cover no-repeat !important;
}

.hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-fallback-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-home .hero-bg {
    position: absolute;
    inset: 0;
    background: rgba(15, 31, 15, 0.24);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(15, 31, 15, 0.12) 0%, rgba(15, 31, 15, 0.38) 100%);
}

.hero-home .hero-content {
    position: relative !important;
    z-index: 4 !important;
    width: min(800px, calc(100% - 2rem));
    margin: 0 auto;
}

.hero-home .fade-up,
.hero-home .fade-up.visible,
.hero-home .hero-tagline,
.hero-home .hero-buttons {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.hero-home h1,
.hero-home .hero-tagline,
.hero-home .hero-scroll-indicator {
    color: #fff;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.hero-home .hero-scroll-indicator {
    z-index: 4;
}
