/* Demli Sözler - 2026 Modern Tasarım */

/* Custom Variables - Light Mode (Default) */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 15px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Theme Colors */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-tertiary: #e9ecef;
    --text-primary: #212529;
    --text-secondary: #6c757d;
    --text-muted: #adb5bd;
    --border-color: #dee2e6;
    --card-bg: #ffffff;
    --card-border: #dee2e6;
    --navbar-bg: #ffffff;
    --footer-bg: #212529;
    --footer-text: #ffffff;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary-color: #3498db;
    --secondary-color: #2ecc71;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --light-color: #34495e;
    --dark-color: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
    
    /* Theme Colors - Dark */
    --bg-primary: #1a1a1a;
    --bg-secondary: #2d2d2d;
    --bg-tertiary: #3d3d3d;
    --text-primary: #e9ecef;
    --text-secondary: #adb5bd;
    --text-muted: #6c757d;
    --border-color: #404040;
    --card-bg: #2d2d2d;
    --card-border: #404040;
    --navbar-bg: #1a1a1a;
    --footer-bg: #0d0d0d;
    --footer-text: #e9ecef;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-secondary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.display-4 {
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Theme Transition */
* {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Header Styles */
.navbar {
    background-color: var(--navbar-bg) !important;
    border-bottom: 1px solid var(--border-color);
}

.navbar .nav-link {
    color: var(--text-primary) !important;
}

.navbar .nav-link:hover {
    color: var(--primary-color) !important;
}

.navbar-brand {
    color: var(--text-primary) !important;
}

/* Cards */
.card {
    background-color: var(--card-bg);
    border-color: var(--card-border);
    color: var(--text-primary);
}

/* Background Utilities */
.bg-light {
    background-color: var(--bg-secondary) !important;
}

.bg-white {
    background-color: var(--bg-primary) !important;
}

/* Text Colors */
.text-dark {
    color: var(--text-primary) !important;
}

.text-muted {
    color: var(--text-secondary) !important;
}

/* Footer */
footer {
    background-color: var(--footer-bg) !important;
    color: var(--footer-text) !important;
}

footer .text-white {
    color: var(--footer-text) !important;
}

footer .text-white-50 {
    color: var(--text-muted) !important;
}

/* Navbar Enhanced Styles */
.navbar {
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    transition: var(--transition);
}

.logo-img {
    border-radius: 8px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.75rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    color: var(--text-primary) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
    color: var(--primary-color) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

/* Hero Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.floating-quotes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-quotes i {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: floatAround 15s linear infinite;
}

.floating-quotes i:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-quotes i:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

.floating-quotes i:nth-child(3) {
    top: 40%;
    left: 5%;
    animation-delay: 6s;
}

.floating-quotes i:nth-child(4) {
    top: 80%;
    right: 10%;
    animation-delay: 9s;
}

@keyframes floatAround {
    0% { transform: translateY(0px) rotate(0deg); opacity: 0; }
    10% { opacity: 0.1; }
    90% { opacity: 0.1; }
    100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    line-height: 1.2;
}

.hero-subtitle {
    animation: fadeInUp 0.8s ease-out 0.4s both;
    font-size: 1.2rem;
}

.hero-buttons {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.quote-animation {
    position: relative;
    display: inline-block;
}

.quote-circle {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    animation: pulse 3s ease-in-out infinite;
}

.quote-circle i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.8);
    animation: rotate 10s linear infinite;
}

.quote-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
}

.quote-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 4s linear infinite;
}

.quote-particles span:nth-child(1) {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.quote-particles span:nth-child(2) {
    top: 50%;
    right: 0;
    animation-delay: 0.8s;
}

.quote-particles span:nth-child(3) {
    bottom: 0;
    left: 50%;
    animation-delay: 1.6s;
}

.quote-particles span:nth-child(4) {
    top: 50%;
    left: 0;
    animation-delay: 2.4s;
}

.quote-particles span:nth-child(5) {
    top: 25%;
    right: 25%;
    animation-delay: 3.2s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particleFloat {
    0% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0); }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Logo */
@media (max-width: 768px) {
    .navbar-brand .logo-img {
        width: 140px !important;
        height: 35px !important;
    }
}

@media (max-width: 576px) {
    .navbar-brand .logo-img {
        width: 120px !important;
        height: 30px !important;
    }
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .quote-circle {
        width: 150px;
        height: 150px;
    }
    
    .quote-circle i {
        font-size: 3rem;
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
    
    .stat-item {
        margin-bottom: 1rem;
    }
}

/* Section Headers */
.section-header {
    margin-bottom: 3rem;
}

.section-badge {
    animation: fadeInUp 0.6s ease-out;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

/* Card Styles */
.soz-card {
    border: none;
    border-radius: 20px;
    transition: var(--transition);
    overflow: hidden;
    background: var(--card-bg);
    color: var(--text-primary);
    border-color: var(--card-border);
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
}

.soz-card:nth-child(1) { animation-delay: 0.1s; }
.soz-card:nth-child(2) { animation-delay: 0.2s; }
.soz-card:nth-child(3) { animation-delay: 0.3s; }
.soz-card:nth-child(4) { animation-delay: 0.4s; }
.soz-card:nth-child(5) { animation-delay: 0.5s; }
.soz-card:nth-child(6) { animation-delay: 0.6s; }

.soz-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.soz-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
}

.soz-card .card-body {
    padding: 2rem;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 2;
}

.card-badge .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Quote Icon */
.quote-icon {
    text-align: center;
}

.quote-icon i {
    font-size: 2rem;
    opacity: 0.7;
    animation: pulse 2s ease-in-out infinite;
}

/* Söz Text */
.soz-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    font-style: italic;
    position: relative;
    text-align: center;
    padding: 0 1rem;
}

/* Author Info */
.author-info {
    padding: 1rem;
    background: rgba(102, 126, 234, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.author-avatar {
    border: 3px solid var(--card-bg);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.author-info:hover .author-avatar {
    transform: scale(1.1);
}

.author-details {
    flex-grow: 1;
}

.author-name {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.25rem;
}

.author-date {
    font-size: 0.8rem;
    color: #666;
}

/* Söz Stats */
.soz-stats {
    display: flex;
    align-items: center;
}

.soz-stats small {
    display: flex;
    align-items: center;
    font-weight: 500;
}

/* Söz Actions */
.soz-actions .btn {
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.soz-actions .btn:hover {
    transform: scale(1.1);
}

.soz-actions .btn-outline-danger:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.soz-actions .btn-outline-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

.populer-soz-card {
    border: none;
    border-radius: 12px;
    transition: var(--transition);
    background: var(--card-bg);
    color: var(--text-primary);
    border-left: 4px solid var(--accent-color);
}

.populer-soz-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-soft);
}

/* Buttons */
.btn {
    border-radius: 10px;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
}

.btn-primary:hover {
    background: var(--gradient-secondary);
}

.btn-light {
    background: var(--card-bg);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-light:hover {
    background: var(--light-color);
    color: var(--primary-color);
}

/* Footer */
footer {
    background: var(--dark-color) !important;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gradient-primary);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: var(--transition);
    margin-right: 10px;
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: white !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        text-align: center;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .hero-illustration i {
        font-size: 4rem;
    }
    
    .soz-card .card-body {
        padding: 1.5rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0.25rem 0;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .soz-card .card-body {
        padding: 1rem;
    }
    
    .btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Quote Styling */
blockquote {
    border-left: 4px solid var(--secondary-color);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    position: relative;
    color: var(--text-primary);
}

blockquote p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
}

blockquote footer {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-secondary {
    background: var(--gradient-secondary);
}

.shadow-soft {
    box-shadow: var(--shadow-soft);
}

.shadow-hover {
    box-shadow: var(--shadow-hover);
}

.rounded-custom {
    border-radius: var(--border-radius);
}

/* Hover Effects */
.hover-lift:hover {
    transform: translateY(-5px);
    transition: var(--transition);
}

.hover-scale:hover {
    transform: scale(1.05);
    transition: var(--transition);
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-secondary);
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--success-color);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    z-index: 9999;
    animation: slideInRight 0.3s ease;
    box-shadow: var(--shadow-soft);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .btn,
    .soz-actions,
    footer {
        display: none !important;
    }
    
    .soz-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ddd;
    }
}

/* Hero Slider Styles */
.hero-slider {
    height: 80vh;
    min-height: 600px;
    overflow: hidden;
}

.slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    z-index: 1;
    min-height: 600px;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}

.slider-content {
    position: relative;
    z-index: 10;
    padding: 2rem 0;
}

.quote-icon-large {
    font-size: 3rem;
    opacity: 1;
    animation: pulse 2s infinite;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.slider-quote {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    line-height: 1.35;
    font-weight: 700;
    color: #fff;
    background: rgba(0,0,0,0.25);
    padding: 1rem 2rem;
    border-radius: 15px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 2.2rem;
}

/* Author in quote box */
.quote-author {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.quote-author-avatar {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
}

/* Author text color and weight for better contrast */
.author-name {
    color: #fff;
    font-weight: 600;
}

/* Quote link styles - slider içinde - daha güçlü */
.slider-quote .quote-link,
.slider-quote a.quote-link {
    color: #fff !important;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.slider-quote .quote-link:hover,
.slider-quote a.quote-link:hover {
    color: #fff !important;
    text-shadow: 0 0 15px rgba(255,255,255,0.7);
    transform: scale(1.02);
    text-decoration: none !important;
}

/* Bootstrap link stillerini override et */
.slider-quote a {
    color: #fff !important;
}

.slider-quote a:hover {
    color: #fff !important;
}

/* Genel quote link stilleri */
.quote-link {
    color: inherit;
    transition: all 0.3s ease;
    text-decoration: none;
}

.quote-link:hover {
    color: inherit;
    text-decoration: none;
}

/* Author link styles */
.author-link {
    color: inherit !important;
    transition: all 0.3s ease;
}

.author-link:hover {
    color: #fff !important;
    text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

.author-link:hover .quote-author-avatar {
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

/* Content Cards */
.content-card {
    border: none;
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.content-image {
    position: relative;
    overflow: hidden;
}

.content-image img {
    transition: transform 0.3s ease;
}

.content-card:hover .content-image img {
    transform: scale(1.05);
}

.content-icon {
    font-size: 2rem;
    opacity: 0.8;
}

.author-info {
    display: flex;
    align-items: center;
}

.author-info a {
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.author-info a:hover {
    color: var(--info-color);
    transform: translateX(3px);
}

.author-info i {
    font-size: 1.1rem;
}

.category-badge {
    display: inline-block;
}

.category-badge .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.3s ease;
}

.category-badge .badge:hover {
    background-color: #495057 !important;
    transform: scale(1.05);
}

.content-card .card-title {
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
}

.content-card .card-footer {
    border-top: 1px solid var(--border-color);
    background-color: var(--bg-tertiary);
}

/* Card Header & Footer */
.card-header {
    background-color: var(--bg-tertiary);
    border-bottom-color: var(--border-color);
    color: var(--text-primary);
}

.card-footer {
    background-color: var(--bg-tertiary);
    border-top-color: var(--border-color);
    color: var(--text-secondary);
}

/* Alerts */
.alert {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-primary);
}

/* Dropdown */
.dropdown-menu {
    background-color: var(--card-bg);
    border-color: var(--border-color);
}

.dropdown-item {
    color: var(--text-primary);
}

.dropdown-item:hover {
    background-color: var(--bg-tertiary);
    color: var(--text-primary);
}

/* Modal */
.modal-content {
    background-color: var(--card-bg);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.modal-header {
    border-bottom-color: var(--border-color);
}

.modal-footer {
    border-top-color: var(--border-color);
}

/* Form Controls */
.form-control {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.form-control:focus {
    background-color: var(--card-bg);
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.form-select {
    background-color: var(--card-bg);
    border-color: var(--border-color);
    color: var(--text-primary);
}

/* Input Group */
.input-group-text {
    background-color: var(--bg-tertiary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.content-card .btn-outline-info:hover {
    background-color: var(--info-color);
    border-color: var(--info-color);
    color: white;
}

/* Smoothen carousel fade transitions */
.carousel-fade .carousel-item {
    transition-property: opacity, transform;
    transition-duration: 0.9s;
    transition-timing-function: ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: none !important; /* beyaz flaşı azaltmak için */
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
}
.carousel-fade .carousel-item,
.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    opacity: 0;
}

/* Aktif öğeyi relative tutarak yüksekliği koru */
.carousel-fade .carousel-inner .carousel-item.active {
    position: relative;
}

/* Beyazlama etkisini engellemek için arkaplanı koyu tut */
.hero-slider,
.hero-slider .carousel,
.hero-slider .carousel-inner {
    background-color: #000;
}

.author-info {
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.author-avatar {
    width: 60px;
    height: 60px;
}

.author-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.author-avatar .bg-white {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    background: rgba(255,255,255,0.9) !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.author-details h5 {
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.author-details p {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.slider-actions .btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.9);
    color: #333;
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.slider-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
    background: #fff;
    color: #333;
}

.slider-actions .btn-outline-light {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.8);
}

.slider-actions .btn-outline-light:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: 2px solid #fff;
}

.carousel-indicators {
    bottom: 30px;
    z-index: 4;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #fff;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

/* Slider Responsive Design */
@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        min-height: 500px;
    }
    
    .slider-quote {
        font-size: 1.5rem;
        padding: 0.75rem 1.25rem;
    }
    
    .quote-icon-large {
        font-size: 2rem;
    }
    
    .author-info {
        padding: 1rem;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
    }
    
    .author-avatar img,
    .author-avatar .bg-white {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 50px;
        height: 50px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

/* Slider Author */
.slider-author .author-name {
    display: inline-block;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

/* Category Images Only */
.category-image-link,
.category-icon-link {
    transition: all 0.3s ease;
    border-radius: 10px;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.category-image-link:nth-child(1) { animation-delay: 0.1s; }
.category-image-link:nth-child(2) { animation-delay: 0.2s; }
.category-image-link:nth-child(3) { animation-delay: 0.3s; }
.category-image-link:nth-child(4) { animation-delay: 0.4s; }
.category-image-link:nth-child(5) { animation-delay: 0.5s; }
.category-image-link:nth-child(6) { animation-delay: 0.6s; }

.category-image-only {
    width: 100%;
    height: 120px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.category-image-link:hover .category-image-only {
    transform: scale(1.05);
}

.category-icon-only {
    width: 100%;
    height: 80px;
    transition: all 0.3s ease;
    border-radius: 10px;
}

.category-icon-link:hover .category-icon-only {
    transform: scale(1.05);
    background-color: var(--primary-color) !important;
}

/* Responsive Category Images */
@media (max-width: 768px) {
    .category-image-only {
        height: 90px !important;
    }
    
    .category-icon-only {
        height: 90px !important;
    }
}

/* Söz Görseli Wrapper */
.soz-image-wrapper {
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out both;
    padding: 0;
    margin: 0;
    aspect-ratio: 1/1;
    position: relative;
}

.soz-image-wrapper:nth-child(1) { animation-delay: 0.1s; }
.soz-image-wrapper:nth-child(2) { animation-delay: 0.2s; }
.soz-image-wrapper:nth-child(3) { animation-delay: 0.3s; }

.soz-image-wrapper:hover {
    transform: translateY(-8px);
}

.soz-image-link {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    text-decoration: none;
}

.soz-image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 0;
    padding: 0;
}

.soz-image-wrapper:hover .soz-image {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.soz-buttons-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 0.375rem 0.375rem;
}

.soz-image-wrapper:hover .soz-buttons-overlay {
    opacity: 1;
}

.soz-image-wrapper .btn {
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
}

.soz-image-wrapper .btn:hover {
    transform: translateY(-2px);
}

.soz-image-wrapper .btn-warning:hover {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
}

.soz-image-wrapper .btn-outline-warning:hover {
    background-color: var(--warning-color);
    border-color: var(--warning-color);
    color: white;
}

/* Bootstrap Col Padding Override for Söz Görselleri */
.row.g-1 > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.row.g-1 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Yatay Scroll Önleme */
.container-fluid {
    max-width: 100%;
    overflow-x: hidden;
}

section {
    overflow-x: hidden;
}

/* Responsive Söz Görselleri */
@media (max-width: 768px) {
    .soz-image-wrapper {
        aspect-ratio: 1/1;
    }
    
    .soz-buttons-overlay {
        padding: 0.75rem;
    }
    
    .soz-image-wrapper .btn {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

/* Söz Türleri Kartları */
.category-tur-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05) !important;
}

.category-tur-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
    border-color: var(--info-color) !important;
}

.category-tur-name {
    transition: color 0.3s ease;
}

.category-tur-card:hover .category-tur-name {
    color: var(--info-color) !important;
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-8px);
}

/* Biyografi Kartları */
.biography-card {
    transition: all 0.3s ease;
    overflow: hidden;
}

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

.biography-image-wrapper {
    height: 100%;
    overflow: hidden;
}

.biography-image {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.biography-card:hover .biography-image {
    transform: scale(1.05);
}

.biography-name {
    transition: color 0.3s ease;
}

.biography-card:hover .biography-name {
    color: var(--success-color) !important;
}

/* Alfabe Filtreleme Butonları */
.alphabet-btn {
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border-width: 2px;
}

.alphabet-btn:not(.disabled):hover {
    background-color: var(--info-color) !important;
    border-color: var(--info-color) !important;
    color: black !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.4);
}

.alphabet-btn.btn-outline-info.active {
    background-color: var(--info-color);
    border-color: var(--info-color);
    color: white;
}

.alphabet-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.alphabet-letter {
    text-decoration: none;
}

.alphabet-title {
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

/* Footer Logo Alignment */
footer .footer-logo-wrapper {
    text-align: left !important;
    padding-left: 0 !important;
}

footer .footer-logo-wrapper img.logo-img {
    display: block;
    margin-left: 0 !important;
    margin-right: auto;
}

.page-header-hero h1,
.page-header-hero .lead,
.page-header-hero p {
    color: #ffffff !important;
}

.page-header-hero .biography-hero-title,
.page-header-hero .biography-hero-subtitle {
    color: #ffffff !important;
}

.page-header-hero .biography-hero-subtitle {
    opacity: 0.9;
}

.biography-hero .biography-hero-title,
.biography-hero .biography-hero-subtitle {
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: initial !important;
}

.biography-hero .biography-hero-subtitle {
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
    -webkit-text-fill-color: #ffffff !important;
}
