
/* Dark theme with beige accents */
:root {
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --light-accent: #f5f5f0;
    --primary: #f97316;
    --primary-dark: #ea580c;
}

/* Custom styles that extend Tailwind */
.skew-y-1 {
    transform: skewY(-1deg);
}

/* New tech gradient */
.tech-gradient {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.animate-on-scroll.show {
    opacity: 1;
    transform: translateY(0);
}

/* Image reveal effect */
.img-reveal {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
}

.img-reveal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--light-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.8s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    z-index: 1;
}

.img-reveal.show::before {
    transform: scaleX(1);
}

.img-reveal img {
    transition: opacity 0.4s ease, transform 0.6s ease;
    opacity: 0;
    transform: scale(1.1);
}

.img-reveal.show img {
    opacity: 1;
    transform: scale(1);
}
/* Dark theme base styles */
body {
    background-color: var(--dark-bg);
    color: var(--light-accent);
    scroll-behavior: smooth;
}

/* Section styling */
section {
    padding: 5rem 0;
}

.bg-white {
    background-color: var(--darker-bg) !important;
    color: var(--light-accent) !important;
}

.bg-gray-50 {
    background-color: var(--dark-bg) !important;
}

.text-gray-600, .text-gray-500 {
    color: rgba(245, 245, 240, 0.7) !important;
}

.text-gray-700 {
    color: var(--light-accent) !important;
}

/* Card styling */
.bg-gray-50 {
    background-color: rgba(18, 18, 18, 0.7) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 245, 240, 0.1);
}

/* Glow effect */
.glow {
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.3);
    transition: box-shadow 0.3s ease;
}

.glow:hover {
    box-shadow: 0 0 25px rgba(249, 115, 22, 0.5);
}
/* Custom animation for hover effects */
.hover-grow {
    transition: all 0.3s ease;
}

.hover-grow:hover {
    transform: scale(1.02);
}

/* Custom button animation */
.btn-animate {
    transition: all 0.3s ease;
}

.btn-animate:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Custom form input focus */
.custom-focus:focus {
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}