/*
Theme Name: GeWu Klus Totaal
Description: A WordPress theme for GeWu Klus Totaal handyman services
Version: 1.0
Author: GeWu
*/

/* Custom color palette - more unique than default Tailwind */
:root {
    --primary-dark: #0f1419;
    --primary-blue: #1a365d;
    --accent-orange: #c05621;
    --accent-warm: #d97706;
    --neutral-light: #f8fafc;
    --neutral-medium: #e2e8f0;
}

/* Unique gradient backgrounds */
.hero-gradient {
    background: linear-gradient(135deg, #0f1419 0%, #1a365d 50%, #2d3748 100%);
    position: relative;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(193, 94, 33, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(26, 54, 93, 0.4) 0%, transparent 50%);
}

.gradient-bg {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

/* Custom glass effect with personality */
.nav-glass {
    background: rgba(15, 20, 25, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Unique card styling */
.service-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow:
        0 10px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px -10px rgba(0, 0, 0, 0.15),
        0 15px 15px -10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Custom button styling */
.btn-primary {
    background: linear-gradient(135deg, #c05621 0%, #d97706 100%);
    border: none;
    position: relative;
    overflow: hidden;
}

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

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

/* Unique testimonial styling */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.9));
    border-left: 4px solid #d97706;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 60px;
    color: rgba(217, 119, 6, 0.2);
    font-family: Georgia, serif;
}

/* Custom section backgrounds */
.section-pattern {
    background-image:
        radial-gradient(circle at 25% 25%, rgba(193, 94, 33, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(26, 54, 93, 0.05) 0%, transparent 50%);
}

/* Unique icon styling */
.icon-glow {
    filter: drop-shadow(0 0 10px rgba(217, 119, 6, 0.3));
}

/* Custom form styling */
.form-input {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: #d97706;
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
    background: white;
}

/* Gallery card hover effects */
.gallery-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-card:hover {
    transform: translateY(-12px) rotate(1deg);
}

.gallery-overlay {
    background: linear-gradient(45deg, rgba(15, 20, 25, 0.9), rgba(26, 54, 93, 0.8));
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

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

::-webkit-scrollbar-track {
    background: rgba(226, 232, 240, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #c05621, #d97706);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #a0441f, #b45309);
}