/* assets/css/style.css - Boya Badana Profesyonel Tema */

/* Genel ayarlar */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
}

/* Ana renk paleti */
.bg-primary { background-color: #ff6b35; }           /* Canlı turuncu - ana CTA */
.text-primary { color: #ff6b35; }
.hover\:bg-primary-dark:hover { background-color: #e55a2b; }

.bg-secondary { background-color: #1e40af; }         /* Koyu mavi - güven */
.text-secondary { color: #1e40af; }

.bg-accent { background-color: #f97316; }            /* Alternatif turuncu */
.hover\:bg-accent-dark:hover { background-color: #ea580c; }

/* Hero bölümü overlay ve metin iyileştirmeleri */
section.relative {
    position: relative;
}

section.relative .absolute.inset-0.bg-black {
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

/* H1 stil güncellemesi - daha çarpıcı */
h1 .absolute.inset-0.bg-red-700 {
    background-color: #ff6b35 !important;
    transform: skewX(-12deg);
    opacity: 0.9;
}

/* Butonlar - daha yuvarlak ve gölgeli */
a.bg-red-600 {
    background-color: #ff6b35 !important;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

a.bg-red-600:hover {
    background-color: #e55a2b !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
}

/* Galeri kartları */
.rounded-lg.overflow-hidden {
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rounded-lg.overflow-hidden:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.bg-gray-100 {
    background-color: #f1f5f9;
}

/* Footer iyileştirmeleri */
footer.bg-gray-900 {
    background: linear-gradient(to top, #1e293b, #334155);
}

/* Mobil CTA boşluk */
@media (max-width: 768px) {
    body {
        padding-bottom: 100px;
    }
    
    h1.text-4xl.md\:text-6xl {
        font-size: 2.5rem;
    }
}

/* Ekstra akışkanlık */
* {
    scroll-behavior: smooth;
}