/* Ana Site Stilleri */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
    font-size: 1.5rem;
}

/* Menü Arka Plan ve Hover Efektleri */
header {
    background: #f8f9fa !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-nav .nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 0 0.25rem;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: #0d6efd;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.hero-slider .carousel-item img {
    filter: brightness(0.7);
}

.hero-slider .carousel-caption {
    background: rgba(0, 0, 0, 0.5);
    padding: 2rem;
    border-radius: 10px;
}

.category-card {
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* Modern Kategori Kartları */
.category-card-modern {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.category-image-wrapper {
    width: 100%;
    padding-top: 75%;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.category-icon-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #0d6efd;
}

.category-info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-name {
    font-size: 0.95rem;
    font-weight: normal;
    margin-bottom: 10px;
    color: #333;
    text-align: center;
    line-height: 1.3;
}

.category-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.category-count {
    font-size: 0.85rem;
    color: #6c757d;
    white-space: nowrap;
}

.category-btn {
    font-size: 0.75rem;
    padding: 4px 12px;
    white-space: nowrap;
}

.card {
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.stars {
    color: #ffc107;
}

.btn {
    border-radius: 5px;
}

footer {
    margin-top: auto;
}

footer a.text-white-50 {
    transition: color 0.3s ease;
}

footer a.text-white-50:hover {
    color: #fff !important;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.social-link:hover {
    background-color: #0d6efd;
    transform: translateY(-3px);
    color: #fff !important;
}

/* HTML İçerik Stilleri */
.company-about,
.service-description,
.blog-content {
    line-height: 1.8;
}

.company-about img,
.service-description img,
.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

.company-about p,
.service-description p,
.blog-content p {
    margin-bottom: 1rem;
}

.company-about ul,
.service-description ul,
.blog-content ul,
.company-about ol,
.service-description ol,
.blog-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.company-about h1,
.service-description h1,
.blog-content h1,
.company-about h2,
.service-description h2,
.blog-content h2,
.company-about h3,
.service-description h3,
.blog-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.company-about h1,
.service-description h1,
.blog-content h1 {
    font-size: 2rem;
}

.company-about h2,
.service-description h2,
.blog-content h2 {
    font-size: 1.5rem;
}

.company-about h3,
.service-description h3,
.blog-content h3 {
    font-size: 1.25rem;
}

.company-about a,
.service-description a,
.blog-content a {
    color: #0d6efd;
    text-decoration: underline;
}

.company-about a:hover,
.service-description a:hover,
.blog-content a:hover {
    color: #0a58ca;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-slider .carousel-item img {
        height: 400px !important;
    }
    
    .category-card-modern {
        margin-bottom: 1rem;
    }
    
    .category-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .category-btn {
        width: 100%;
    }
}



