/* 
 * YUMBIR Tema - Özel CSS Dosyası
 * Ekstra stil düzenlemeleri
 */

/* Form Input Focus Efektleri */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--secondary-color) !important;
    box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.1) !important;
}

/* Hover Efektleri */
input:hover,
textarea:hover,
select:hover {
    border-color: var(--primary-color);
}

/* Sosyal Medya İkonları Hover */
[style*="border-radius: 50%"]:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4) !important;
}

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

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

.info-card,
.benefit-item {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

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

/* Tablet Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8em;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .nav-menu a {
        padding: 15px 18px;
    }
}

/* Mobil Responsive */
@media (max-width: 768px) {
    .site-title {
        font-size: 2em;
    }
    
    .hero-title {
        font-size: 2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .card-title {
        font-size: 1.5em;
    }
    
    .nav-menu {
        flex-wrap: wrap;
    }
    
    .nav-menu a {
        padding: 12px 15px;
        font-size: 0.9em;
    }
    
    .cta-title {
        font-size: 2em;
    }
    
    .cta-text {
        font-size: 1.1em;
    }
}

/* Küçük Mobil */
@media (max-width: 480px) {
    .site-logo {
        font-size: 2em;
    }
    
    .site-title {
        font-size: 1.5em;
    }
    
    .hero-icon {
        font-size: 5em;
    }
    
    .hero-title {
        font-size: 1.6em;
    }
    
    .nav-menu a {
        padding: 10px;
        font-size: 0.85em;
    }
}

/* Print Stilleri */
@media print {
    .site-header,
    .site-footer,
    .cta-section,
    .nav-menu {
        display: none;
    }
    
    body {
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
    }
}



/* Yüksek Kontrast Modu */
@media (prefers-contrast: high) {
    :root {
        --text-dark: #000000;
        --text-light: #333333;
        --border-color: #000000;
    }
}

/* Düşük Hareket Tercih Eden Kullanıcılar */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

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

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

/* Tooltip */
[data-tooltip] {
    position: relative;
    cursor: help;
}

[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 12px;
    background: var(--text-dark);
    color: white;
    border-radius: 5px;
    white-space: nowrap;
    font-size: 0.9em;
    z-index: 1000;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--text-dark);
    border: none;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255,215,0,0.4);
}

.scroll-to-top.show {
    display: flex;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pulse Animasyonu */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Video Modal Stilleri */
#aboutVideoModal {
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Play Button Pulse Animation */
@keyframes playPulse {
    0% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 0 rgba(38,127,46,0.7);
    }
    50% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 20px rgba(38,127,46,0);
    }
    100% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 0 rgba(38,127,46,0);
    }
}

/* Video Modal Responsive */
@media (max-width: 768px) {
    #aboutVideoModal {
        padding: 1rem;
    }
    
    #aboutVideoModal video {
        max-height: 80vh;
    }
}

/* Hakkımızda Sayfası Stilleri */
.hero-content {
    text-align: center;
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}

.hero-icon {
    font-size: 6em;
    margin-bottom: 1.5rem;
    display: block;
}

.hero-title {
    font-size: 3.5em;
    font-weight: 900;
    color: var(white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3em;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.content-section {
    padding: 80px 0;
    width: 100%;
}

.content-section:nth-child(even) {
    background: var(--bg);
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

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

.card-icon {
    font-size: 3em;
    display: block;
    margin-bottom: 1rem;
}

.card-title {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-content {
    font-size: 1.1em;
    line-height: 1.8;
    color: var(--text-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-dark);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 80px 2rem;
    text-align: center;
    border-radius: 1.5rem;
    margin: 4rem 0;
    color: var(--text-dark);
}

.cta-title {
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.cta-text {
    font-size: 1.3em;
    margin-bottom: 2rem;
    color: var(--text-dark);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--text-dark);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background: rgba(0,0,0,0.8);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Hakkımızda Sayfası Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8em;
    }
    
    .hero-subtitle {
        font-size: 1.2em;
    }
    
    .info-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .content-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 3rem 0;
    }
    
    .hero-icon {
        font-size: 4em;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .hero-subtitle {
        font-size: 1.1em;
    }
    
    .content-section {
        padding: 40px 0;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-card {
        padding: 2rem;
    }
    
    .card-title {
        font-size: 1.5em;
    }
    
    .card-content {
        font-size: 1em;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 60px 1.5rem;
    }
    
    .cta-title {
        font-size: 2em;
    }
    
    .cta-text {
        font-size: 1.1em;
    }
    
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .hero-icon {
        font-size: 3em;
    }
    
    .hero-title {
        font-size: 1.8em;
    }
    
    .hero-subtitle {
        font-size: 1em;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .card-icon {
        font-size: 2.5em;
    }
    
    .card-title {
        font-size: 1.3em;
    }
    
    .cta-title {
        font-size: 1.6em;
    }
    
    .cta-text {
        font-size: 1em;
    }
}

/* Breadcrumb Stilleri */
.breadcrumb {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255,255,255,0.5);
    margin: 0 0.25rem;
}

.breadcrumb i {
    font-size: 0.7rem;
}

/* Hero Section içindeki breadcrumb için */
.hero-section .breadcrumb {
    position: relative;
    z-index: 10;
}

/* Responsive Breadcrumb */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.8rem;
        gap: 0.25rem;
    }
    
    .breadcrumb i {
        font-size: 0.6rem;
    }
}

/* Category Page Styles */
.category-posts-grid .modern-card {
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-posts-grid .modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12) !important;
}

.category-posts-grid .modern-card:hover img {
    transform: scale(1.05);
}

.category-posts-grid .modern-card:hover .fa-arrow-right {
    transform: translateX(5px);
}

.category-posts-grid .modern-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Category Page Responsive */
@media (max-width: 768px) {
    .category-posts-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Comments Styles */
.comments-area {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.comment-list {
    margin-bottom: 2rem;
}

.comment-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--border-color);
    transition: border-color 0.3s;
}

.comment-item:hover .comment-avatar {
    border-color: var(--primary-color);
}

.comment-form {
    margin-top: 3rem;
    padding: 2rem;
    background: #f9fafb;
    border-radius: 1rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.comment-form textarea {
    resize: vertical;
    min-height: 150px;
}

.comment-form .form-submit {
    margin-top: 1rem;
}

.comment-reply-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.comment-reply-link:hover {
    color: var(--secondary-color);
}

/* Nested Comments */
.comment-list .children {
    list-style: none;
    margin-left: 3rem;
    margin-top: 2rem;
    padding-left: 2rem;
    border-left: 2px solid var(--border-color);
}

/* Comments Responsive */
@media (max-width: 768px) {
    .comment-item > div {
        flex-direction: column;
    }
    
    .comment-author-avatar {
        margin-bottom: 1rem;
    }
    
    .comment-list .children {
        margin-left: 1rem;
        padding-left: 1rem;
    }
    
    .comment-form {
        padding: 1.5rem;
    }
}
