/* Aras Global Yapı - Seramik Cephe Kaplama Styles - Turuncu Tema */

/* Blob Animations for Hero Section */
@keyframes blob {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -50px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    75% {
        transform: translate(50px, 50px) scale(1.05);
    }
}

.animate-blob {
    animation: blob 20s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ea580c;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #c2410c;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero overlay gradient - Turuncu tonlar */
.hero-overlay {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.9) 0%, rgba(194, 65, 12, 0.85) 100%);
}

/* Card hover effects */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15);
}

/* Image zoom effect */
.img-zoom {
    overflow: hidden;
}

.img-zoom img {
    transition: transform 0.5s ease;
}

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

/* Custom button styles - Turuncu */
.btn-primary {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(234, 88, 12, 0.3);
}

/* Navigation active state */
.nav-link.active {
    color: #ea580c;
    font-weight: 600;
}

/* Blog post styles */
.blog-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ea580c;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.blog-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #c2410c;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.blog-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.blog-content ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

/* Contact form styles */
.form-input:focus {
    border-color: #ea580c;
    box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

/* Mobile menu */
.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.open {
    transform: translateX(0);
}

/* Admin Panel Styles */
.admin-sidebar {
    background: linear-gradient(180deg, #ea580c 0%, #c2410c 100%);
}

.admin-nav-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.admin-nav-item.active {
    background: rgba(255, 255, 255, 0.2);
    border-left: 4px solid #fff;
}

.btn-orange {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-orange:hover {
    background: linear-gradient(135deg, #c2410c 0%, #ea580c 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}

.btn-green {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
}

.btn-red {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-red:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #dc2626 100%);
}

.table-orange th {
    background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
    color: white;
}

.table-row:hover {
    background-color: #fff7ed;
}
