/**
 * Starter Theme - Mor/Mavi Gradient (Varsayılan)
 * Basit, temiz ve modern
 */

:root {
    --theme-primary: #667eea;
    --theme-secondary: #764ba2;
    --theme-accent: #ff6b6b;
    --theme-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --theme-text: #333;
    --theme-text-light: #666;
    --theme-bg-light: #f8f9fa;
    --theme-radius: 20px;
    --theme-radius-sm: 10px;
    --theme-shadow: 0 10px 40px rgba(0,0,0,0.1);
    --theme-font: 'Baloo 2', cursive, sans-serif;
}

/* Navbar */
.theme-starter .navbar {
    background: white;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.theme-starter .navbar-brand {
    color: var(--theme-primary) !important;
    font-weight: 700;
}

.theme-starter .nav-link:hover,
.theme-starter .nav-link.active {
    background: var(--theme-gradient);
    color: white !important;
}

/* Hero */
.theme-starter .hero-slide {
    background-size: cover;
    background-position: center;
}

.theme-starter .hero-overlay {
    background: rgba(0,0,0,0.5);
}

.theme-starter .hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

/* Buttons */
.theme-starter .btn-primary-custom {
    background: var(--theme-gradient);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
}

.theme-starter .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Cards */
.theme-starter .feature-card {
    background: white;
    border-radius: var(--theme-radius);
    box-shadow: var(--theme-shadow);
    transition: all 0.3s;
}

.theme-starter .feature-card:hover {
    transform: translateY(-10px);
}

.theme-starter .feature-card .icon {
    background: var(--theme-gradient);
    border-radius: 50%;
    color: white;
}

/* Section Title */
.theme-starter .section-title .line {
    background: var(--theme-gradient);
}

.theme-starter .subtitle {
    color: var(--theme-primary);
}

/* About Section */
.theme-starter .experience-badge {
    background: var(--theme-gradient);
    border-radius: var(--theme-radius);
}

/* Stats Section */
.theme-starter .stats-section {
    background: var(--theme-gradient);
}

.theme-starter .stat-item .icon {
    background: rgba(255,255,255,0.2);
}

/* Testimonials */
.theme-starter .testimonial-card {
    background: white;
    border-radius: var(--theme-radius);
}

.theme-starter .testimonial-card .avatar {
    background: var(--theme-gradient);
}

/* CTA */
.theme-starter .cta-box {
    background: var(--theme-gradient);
    border-radius: 30px;
}

/* Footer */
.theme-starter .footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.theme-starter .footer h5::after {
    background: var(--theme-gradient);
}

/* WhatsApp Button */
.theme-starter .whatsapp-float {
    background: #25d366;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}
