/* Index Sayfası Özel Stilleri - Inline CSS'lerin taşınmış hali */

/* Hero Section */
.site-baslik {
    background: linear-gradient(135deg, #4c1d95 0%, #2e1065 50%, #1e1b4b 100%);
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
}

.site-baslik .bg-decorative-1 {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.site-baslik .bg-decorative-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.site-baslik .bg-decorative-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(10px);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    color: #fbbf24;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid rgba(167, 139, 250, 0.4);
}

.hero-badge i {
    color: #fbbf24;
}

.hero-badge span {
    color: #f3e8ff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-title .text-white {
    color: #ffffff !important;
    text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

.hero-title .text-yellow {
    color: #fbbf24 !important;
    text-shadow: 0 2px 15px rgba(251, 191, 36, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e9d5ff;
    margin-bottom: 30px;
    line-height: 1.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-subtitle .subtitle-line-1 {
    display: block;
    margin-bottom: 12px;
    font-size: 1.6rem;
    font-weight: 700;
    color: #f3e8ff;
}

.hero-subtitle .subtitle-line-2 {
    display: block;
    margin-top: 20px;
    font-size: 1.25rem;
    color: #f3e8ff;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.feature-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 25px;
    color: #f3e8ff;
    font-size: 14px;
    font-weight: 700;
    border: 1px solid rgba(167, 139, 250, 0.4);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.feature-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.5);
    color: white;
}

/* Blog Cards */
.modern-blog-card {
    transition: all 0.4s ease;
}

.modern-blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
}

.modern-blog-card .blog-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-blog-card:hover .blog-img-wrapper::after {
    opacity: 1;
}

/* Testimonial Cards */
.testimonial-card {
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15) !important;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 50%, #f59e0b 100%);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover::before {
    opacity: 1;
}

/* Referanslar */
.referanslari-sirala img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.7);
}

.referanslari-sirala img:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}

/* Blog Cards Hover Effects */
.blog-read-more {
    transition: color 0.3s ease;
}

.blog-read-more:hover {
    color: #6366f1 !important;
}

.blog-card-link {
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Testimonial Button */
.testimonial-btn {
    transition: all 0.3s ease;
}

.testimonial-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .feature-pills {
        gap: 8px;
    }
    
    .feature-pill {
        padding: 10px 18px;
        font-size: 12px;
    }
}

/* ============================================
   ÜYELİK SİSTEMİ - MODERN STİLLER
   ============================================ */

/* Navbar Giriş Yap Butonu */
.btn-login-nav {
    background: transparent;
    border: 2px solid #6366f1;
    border-radius: 12px;
    padding: 10px 20px;
    color: #6366f1;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-login-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-login-nav:hover {
    color: white;
    border-color: #6366f1;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.btn-login-nav:hover::before {
    left: 0;
}

.btn-login-nav:active {
    transform: translateY(0);
}

/* Login Container */
.login-container,
.register-container {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    min-height: 100vh;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-container::before,
.register-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse-bg 20s infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.5; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.8; }
}

/* Login/Register Card */
.login-card,
.register-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
    z-index: 1;
    max-width: 550px;
    width: 100%;
}

.login-card {
    max-width: 450px;
}

/* Login/Register Header */
.login-header,
.register-header {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    padding: 50px 40px;
    text-align: center;
    color: white;
    position: relative;
}

.login-header::after,
.register-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid #6366f1;
}

.login-header .icon,
.register-header .icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,0.3);
}

.login-header h2,
.register-header h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.login-header p,
.register-header p {
    margin: 0;
    opacity: 0.9;
    font-size: 15px;
}

/* Login/Register Body */
.login-body,
.register-body {
    padding: 50px 40px;
}

/* Form Elements */
.form-group-modern {
    margin-bottom: 25px;
}

.form-label-modern {
    font-weight: 700;
    font-size: 14px;
    color: #1f2937;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label-modern i {
    color: #6366f1;
    font-size: 16px;
}

.input-group-modern {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 18px;
    z-index: 2;
}

.form-control-modern {
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px 18px 14px 50px;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f9fafb;
    width: 100%;
}

.form-control-modern:focus {
    border-color: #6366f1;
    background: white;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    outline: none;
    padding-left: 50px;
}

.form-control-modern::placeholder {
    color: #9ca3af;
}

/* Buttons */
.btn-login-modern,
.btn-register-modern {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    color: white;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    margin-top: 10px;
}

.btn-login-modern:hover,
.btn-register-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
    color: white;
}

.btn-login-modern:active,
.btn-register-modern:active {
    transform: translateY(0);
}

/* Alerts */
.alert-modern {
    border-radius: 12px;
    padding: 18px 20px;
    margin-bottom: 25px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-weight: 500;
}

/* Links */
.register-link,
.login-link {
    text-align: center;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e5e7eb;
}

.register-link a,
.login-link a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.register-link a:hover,
.login-link a:hover {
    color: #8b5cf6;
    text-decoration: underline;
}

/* Password Toggle */
.password-toggle {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    font-size: 18px;
    z-index: 2;
    padding: 5px;
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: #6366f1;
}

/* Password Strength */
.password-strength {
    margin-top: 8px;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.password-strength-weak { 
    background: #ef4444; 
    width: 33%; 
}

.password-strength-medium { 
    background: #f59e0b; 
    width: 66%; 
}

.password-strength-strong { 
    background: #10b981; 
    width: 100%; 
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 30px 0;
    color: #9ca3af;
    font-size: 14px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.divider span {
    padding: 0 15px;
}

/* Responsive - Üyelik */
@media (max-width: 768px) {
    .login-container,
    .register-container {
        padding: 30px 15px;
    }
    
    .login-body,
    .register-body {
        padding: 40px 30px;
    }
    
    .login-header,
    .register-header {
        padding: 40px 30px;
    }
    
    .btn-login-nav {
        padding: 8px 16px;
        font-size: 13px;
    }
}

