/*
Theme Name: GezenÇadır Holding Premium Dark One-Page
Theme URI: https://gezencadir.com.tr
Author: GezenÇadır Dijital
Version: 3.0.0
License: GNU General Public License v2 or later
Text Domain: gezencadir
*/

html { scroll-behavior: smooth; }
body { background-color: #020617; color: #cbd5e1; overflow-x: hidden; }

/* Dark Glassmorphism Classes */
.glass-nav {
    background: rgba(2, 6, 23, 0.75);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.glass-card {
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.5);
    transition: all 0.4s ease;
}

/* Dynamic Gradient Text */
.text-gradient {
    background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-gradient-orange {
    background: linear-gradient(135deg, #fdba74 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Animated Blobs for Background */
.blob {
    position: absolute;
    filter: blur(100px);
    z-index: 0;
    border-radius: 50%;
    animation: float 12s infinite ease-in-out alternate;
}
.blob-green { background: rgba(16, 185, 129, 0.15); width: 500px; height: 500px; }
.blob-orange { background: rgba(249, 115, 22, 0.15); width: 450px; height: 450px; }

@keyframes float {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(40px, -60px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

/* Premium Hover Effects */
.premium-hover {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(15, 23, 42, 0.7);
}

/* Button Gradients */
.btn-gradient {
    background: linear-gradient(135deg, #f97316, #c2410c);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}
.btn-gradient:hover {
    background: linear-gradient(135deg, #ea580c, #9a3412);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5);
    transform: translateY(-2px);
}
.btn-outline-glow {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.btn-outline-glow:hover {
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
    color: #10b981;
}

/* Image Zoom */
.img-zoom-container { overflow: hidden; }
.img-zoom-container img { transition: transform 0.7s ease; }
.img-zoom-container:hover img { transform: scale(1.05); }

/* Selection */
::selection { background: #10b981; color: #fff; }

```