/* style.css - Ana CSS dosyası */
/* Global overflow ve responsive düzenlemeler */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f2f1;
    color: #333;
}

/* header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    max-width: 100%;
    top: 0;
    z-index: 1000;
    overflow-x: hidden;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 80px;
    width: 100%;
    max-width: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo a:hover .logo-img {
    transform: scale(1.05);
}

.nav-links ul {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #ff6b6b;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ff6b6b;
}

.nav-links a:hover::after {
    width: 100%;
}

.search-container {
    display: flex;
    align-items: center;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-img {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.search-icon:hover .search-img {
    transform: scale(1.1);
}

.search-container input {
    padding: 10px 10px 10px 40px;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    width: 200px;
    transition: width 0.3s ease, border-color 0.3s ease;
}

.search-container input:focus {
    outline: none;
    width: 250px;
    border-color: #ff6b6b;
}

.burger-menu {
    display: none;
    cursor: pointer;
    z-index: 1002;
    padding: 12px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(255, 107, 107, 0.15);
    position: relative;
    overflow: hidden;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
}

.burger-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.6s ease;
}

.burger-menu:hover::before {
    left: 100%;
}

.burger-menu:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 107, 107, 0.25);
    border-color: rgba(255, 107, 107, 0.4);
    background: linear-gradient(145deg, rgba(255, 255, 255, 1), rgba(255, 107, 107, 0.05));
}

.burger-icon {
    width: 28px;
    height: 20px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
}

.burger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.15);
}

.burger-icon span:nth-child(1) {
    top: 0px;
    transform-origin: left center;
}

.burger-icon span:nth-child(2) {
    top: 8px;
    transform-origin: center;
}

.burger-icon span:nth-child(3) {
    top: 16px;
    transform-origin: left center;
}

/* Close icon styles */
.close-icon {
    width: 28px;
    height: 28px;
    position: relative;
    transform: rotate(0deg);
    transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    display: none;
}

.close-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 4px rgba(255, 107, 107, 0.15);
}

.close-icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.close-icon span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* When menu is open, show close icon and hide burger icon */
.burger-menu.open .burger-icon {
    display: none;
}

.burger-menu.open .close-icon {
    display: block;
}

/* Mobil menü açıkken kapatma ikonu için hover efekti */
.burger-menu.open:hover .close-icon span {
    background: linear-gradient(45deg, #ff5252, #ff7b7b);
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.3);
}

/* Modern Mobil Menü */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.98) 100%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 1000;
    opacity: 0;
    transform: translateX(-100%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
    padding-top: 80px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 40px 30px 20px 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1;
}

.mobile-menu li {
    margin: 0;
    transform: translateX(-50px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.open li {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.open li:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.open li:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.open li:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.open li:nth-child(4) { transition-delay: 0.25s; }

.mobile-menu a {
    display: block;
    padding: 18px 25px;
    font-size: 18px;
    font-weight: 600;
    color: #2d3748;
    text-decoration: none;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border: 1px solid rgba(255, 107, 107, 0.1);
    border-radius: 20px;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.mobile-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 107, 0.1), transparent);
    transition: left 0.6s ease;
}

.mobile-menu a:hover::before {
    left: 100%;
}

.mobile-menu a:hover {
    transform: translateX(8px) translateY(-2px);
    background: linear-gradient(145deg, #ff6b6b, #ff8e8e);
    color: white;
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 8px 30px rgba(255, 107, 107, 0.3);
}

.mobile-menu a:active {
    transform: translateX(4px) translateY(0);
}

.mobile-search {
    margin-top: 25px;
    position: relative;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    padding: 0 30px;
}

.mobile-menu.open .mobile-search {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.5s;
}

.mobile-search input {
    width: 100%;
    max-width: 100%;
    padding: 15px 55px 15px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.mobile-search input:focus {
    outline: none;
    border-color: rgba(255, 107, 107, 0.5);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.15);
    transform: translateY(-2px);
}

.mobile-search input::placeholder {
    color: #718096;
    font-weight: 400;
}

.mobile-search .search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    left: auto;
    cursor: pointer;
    padding: 5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-search .search-icon:hover {
    background: rgba(255, 107, 107, 0.1);
    transform: translateY(-50%) scale(1.1);
}

.mobile-search .search-img {
    width: 24px;
    height: 24px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.mobile-search .search-icon:hover .search-img {
    opacity: 1;
}

/* Mobile menu backdrop overlay */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Add subtle animation to menu items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu.open li {
    animation: fadeInUp 0.5s ease forwards;
}

/* Custom scrollbar for mobile menu */
.mobile-menu::-webkit-scrollbar {
    width: 6px;
}

.mobile-menu::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
    border-radius: 3px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #ff5252, #ff7b7b);
}

/* Add entrance animation for the mobile menu */
@keyframes slideInFromLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.mobile-menu.open {
    animation: slideInFromLeft 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .mobile-menu {
        padding: 20px 15px;
    }
    
    .mobile-menu a {
        font-size: 16px;
        padding: 12px 15px;
    }
    
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
    
    .mobile-search {
        padding: 0 15px;
    }
    
    .mobile-search input {
        padding: 12px 40px 12px 15px;
        font-size: 14px;
    }
    
    .mobile-search .search-img {
        width: 18px;
        height: 18px;
    }
}
    
/* Ana sayfa içerik alanı modern görünüm */
.wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    min-height: 100vh;
}

/* Mobil modern düzenlemeler */
@media (max-width: 767px) {
    body {
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    }
    
    .navbar {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    header {
        background: transparent;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    }
    
    .burger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Container ve wrapper'lar */
    .wrapper,
    .container,
    .main-content,
    .hero-section,
    .slider-container,
    .daily-quote {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }
}

main {
    padding-top: 100px;
    min-height: calc(100vh - 80px);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* slider */
/* Slider ve günün alıntısı bölümü için CSS */
.hero-section {
    display: flex;
    margin-top: 80px;
    padding: 0 5%;
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Slider Bölümü */
.slider-container {
    width: 70%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 15px 0 0 15px;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 60px;
    left: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    max-width: 60%;
    border-radius: 5px;
}

.slide-content h2 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.slide-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
}

.scroll-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff6b6b;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.scroll-btn:hover {
    background-color: #ff5252;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: #333;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.prev-btn {
    left: 20px;
}

.next-btn {
    right: 20px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dot.active {
    background-color: #ff6b6b;
}

/* Günün Alıntısı Bölümü */
.daily-quote {
    width: 30%;
    height: 500px;
    background-color: #fff;
    border-radius: 0 15px 15px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.quote-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 20px;
}

.quote-tabs {
    display: flex;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    padding: 10px 15px;
    border: none;
    background: transparent;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    position: relative;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff6b6b;
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: #ff6b6b;
    background: transparent;
}

.tab-btn.active {
    color: #ff6b6b;
    background: transparent;
}

.tab-btn.active::after {
    width: 100%;
}

.quote-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.quote-item {
    display: none;
    text-align: center;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.quote-item.active {
    display: block;
}

.quote-icon {
    margin-bottom: 15px;
}

.quote-icon img {
    width: 40px;
    height: 40px;
}

.quote-item h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.quote-item p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
    font-style: italic;
}

.quote-source {
    display: block;
    font-size: 14px;
    color: #888;
    margin-top: 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Özellikli İçerik Bölümü */
.featured-section {
    padding: 60px 5%;
    background-color: #f9f2f1;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #ff6b6b;
}

.featured-content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

/* Modern Özellikli Kartlar */
.featured-cards-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.featured-card {
    width: 300px;
    min-height: 380px;
    height: auto;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    position: relative;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.featured-card .card-image {
    width: 100%;
    flex-shrink: 0;
    aspect-ratio: 4 / 3;
    height: auto;
    overflow: hidden;
}

.featured-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.featured-card .card-content {
    padding: 16px 20px 20px;
    text-align: center;
    flex: 1 0 auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.featured-card .card-content h3 {
    font-size: 1.5rem;
    margin: 0;
    color: #2d3748;
    font-weight: 700;
    line-height: 1.2;
}

.featured-card .card-content p {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
    line-height: 1.45;
}

.featured-card .card-btn {
    display: inline-block;
    margin-top: 4px;
    padding: 10px 25px;
    flex-shrink: 0;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.featured-card .card-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ff5252, #ff7b7b);
}

/* Responsive adjustments for featured cards */
@media (max-width: 768px) {
    .featured-cards-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .featured-card {
        width: 100%;
        max-width: 350px;
        min-height: 0;
    }
}

@media (max-width: 480px) {
    .featured-card {
        min-height: 0;
    }
    
    .featured-card .card-content h3 {
        font-size: 1.3rem;
    }
    
    .featured-card .card-content p {
        font-size: 0.9rem;
    }
}

/* cardlar */
/* kitab ve jurnal cardlari */

.cards-container {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 40px 20px;
    flex-wrap: wrap;
}

.card {
    position: relative;
    width: 280px;
    height: 380px;
    color: #fff;
    transition: 0.5s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-20px);
}

.card::before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(45deg, #e6beac, #e65a30);
    border-radius: 1.2em;
}

.card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #00ADB5, #00FFF5);
    filter: blur(30px);
}

.card span {
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2;
    border-radius: 1em;
}

.card span::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
}

.card-image {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 60%;
    overflow: hidden;
    border-radius: 0.8em 0.8em 0 0;
    padding: 12px 12px 0 12px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.8em 0.8em 0 0;
    transition: transform 0.5s;
}

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

.card .content {
    position: relative;
    padding: 15px;
    z-index: 10;
    width: 100%;
    height: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.content {
    margin-top: 20px;
}

.card .content h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: 700;
}

.card .content p {
    font-size: 0.9em;
    margin-bottom: 25px;
    opacity: 0.8;
}

.card-btn {
    padding: 8px 15px;
    background: linear-gradient(45deg, #00ADB5, #00FFF5);
    border: none;
    border-radius: 20px;
    color: white;
    font-weight: 600;
    font-size: 0.9em;
    text-decoration: none;
    display: inline-block;
    align-self: flex-start;
    transition: transform 0.3s;
    margin-bottom: 60px;
}

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

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #00ADB5, #00FFF5);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 20px;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 173, 181, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.scroll-to-top:hover {
    background: linear-gradient(45deg, #008d94, #00d4cc);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 173, 181, 0.4);
}

.scroll-to-top:active {
    transform: scale(0.95);
}

/* Yukarı ok ikonu */
.scroll-to-top::before {
    content: '↑';
    font-size: 20px;
    font-weight: bold;
}

/* footer */
/* Ana layout düzenlemeleri birleştirildi */

/* Footer stilleri */
footer {
    flex-shrink: 0; /* footer küçülmesini engelle */
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 20px 20px 10px 20px;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 100;
    width: 100%;
}
 
/* Footer düzenlemeleri */
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links, .footer-contact, .footer-social {
    flex: 1;
    min-width: 150px;
    margin: 5px;
}

.footer-links h4, .footer-contact h4, .footer-social h4 {
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-links ul, .footer-social ul {
    list-style: none;
    padding: 0;
}

.footer-links li, .footer-social li {
    margin: 5px 0;
}

.footer-links a, .footer-social a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.footer-social ul {
    display: flex;
    gap: 8px;
    padding: 0;
}

.footer-social li {
    margin: 0;
}

/* Sosyal medya iconları hover efektleri */
.footer-social a {
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 50%;
    padding: 12px;
}

.footer-social a:hover {
    transform: translateY(-3px) scale(1.1) rotate(5deg);
    background-color: rgba(255, 107, 107, 0.1);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.footer-social img {
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
    /* Remove filter to show original colors */
    filter: none;
}

/* Platform-specific hover effects to maintain brand colors */
.footer-social a[alt="Facebook"]:hover,
.footer-social a[href*="facebook"]:hover {
    background-color: rgba(24, 119, 242, 0.1);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.footer-social a[alt="Instagram"]:hover,
.footer-social a[href*="instagram"]:hover {
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.1), rgba(255, 220, 128, 0.1));
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.3);
}

.footer-social a[alt="YouTube"]:hover,
.footer-social a[href*="youtube"]:hover {
    background-color: rgba(255, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.footer-social a[alt="Tiktok"]:hover,
.footer-social a[href*="tiktok"]:hover {
    background-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-social a:hover img {
    /* Keep original colors on hover, just add scaling */
    filter: none;
    transform: rotate(5deg) scale(1.15);
}

.footer-bottom {
    text-align: center;
    margin-top: 10px;
    color: #777;
    font-size: 12px;
}

/* SACode link hover efekti */
.footer-bottom a {
    color: #777;
    text-decoration: none;
    font-weight: normal;
    font-size: 12px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-bottom a:hover {
    color: #ff6b6b !important;
    transform: translateY(-1px);
}
  




/* kitablar */
/* Book cards container */
.books-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 70px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 100px;
}

.book {
    position: relative;
    border-radius: 10px;
    width: 220px;
    height: 300px;
    background-color: #f5f5f5;
    -webkit-box-shadow: 1px 1px 12px #000;
    box-shadow: 1px 1px 12px #000;
    -webkit-transform: preserve-3d;
    -ms-transform: preserve-3d;
    transform: preserve-3d;
    -webkit-perspective: 2000px;
    perspective: 2000px;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #000;
    padding: 20px;
    overflow: hidden; /* Ekledik */
}

.book-title {
    font-size: 18px;
    font-weight: bold;
    margin: 5px 0;
    text-align: center;
    position: relative; /* Ekledik */
    z-index: 0; /* Değiştirdik */
}

.book-author {
    font-size: 14px;
    margin: 5px 0;
    text-align: center;
    position: relative; /* Ekledik */
    z-index: 0; /* Değiştirdik */
}

.cover {
    top: 0;
    left: 0; /* Ekledik */
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-box-shadow: 1px 1px 12px #000;
    box-shadow: 1px 1px 12px #000;
    overflow: hidden;
    z-index: 1; /* Ekledik */
    background-color: white; /* Ekledik */
}

.cover-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.book:hover .cover {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transform: rotatey(-80deg);
    -ms-transform: rotatey(-80deg);
    transform: rotatey(-80deg);
}

/* PDF göstergesi */
.pdf-indicator {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6b6b;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 10;
    pointer-events: none;
}

/* Jurnallar sayfası modern tasarım */
.journals-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px 20px;
}

.journals-header h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 700;
}

.journals-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.journals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.journal-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.journal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.journal-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.journal-card:hover .journal-image img {
    transform: scale(1.1);
}

.journal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(255, 107, 107, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.journal-card:hover .journal-overlay {
    opacity: 1;
}

.journal-info {
    text-align: center;
    color: white;
    padding: 20px;
}

.journal-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.journal-info p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.read-btn {
    display: inline-block;
    background: white;
    color: #ff6b6b;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.read-btn:hover {
    background: transparent;
    color: white;
    transform: scale(1.05);
}

/* Jurnal detay — buraxılışlar (jurnallar səhifəsi ilə eyni kart görünüşü) */
.journal-detail-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.journal-detail-page .journal-detail-header {
    text-align: center;
    margin: 30px 0 20px;
}

.journal-detail-page .journal-detail-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.journal-detail-page .journal-detail-header p {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

.journal-detail-page .journal-detail-issues {
    width: 100%;
    margin-top: 10px;
}

.journal-detail-page .journal-issues-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 1.75rem;
}

.journal-detail-page .journal-issues-empty {
    text-align: center;
    color: #7f8c8d;
    font-size: 1.1rem;
    padding: 40px 20px;
}

.journal-detail-page .journal-full-pdf-wrap {
    text-align: center;
    margin-top: 40px;
}

.journal-detail-page .journals-grid {
    --issue-gap: clamp(16px, 2.5vw, 34px);
    --issue-min-col: clamp(240px, 42vw, 280px);
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--issue-gap);
    margin: 0 auto;
    padding: 0 clamp(10px, 2.5vw, 28px);
    max-width: 1400px;
    width: 100%;
    box-sizing: border-box;
}

.journal-detail-page .journal-card {
    background: transparent;
    border-radius: clamp(10px, 1.5vw, 14px);
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    width: 100%;
    max-width: 100%;
    color: inherit;
}

.journal-detail-page .journal-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.journal-detail-page .journal-card--static {
    cursor: default;
}

.journal-detail-page .journal-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    height: auto;
    overflow: hidden;
    display: block;
    background: #f8f9fa;
    border-radius: clamp(10px, 1.5vw, 14px);
}

.journal-detail-page .journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.3s ease;
}

.journal-detail-page .journal-card:hover .journal-image img {
    transform: scale(1.03);
}

.journal-detail-page .journal-card-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: clamp(10px, 2vw, 16px) clamp(8px, 1.5vw, 12px);
    display: flex;
    justify-content: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), transparent);
}

.journal-detail-page .read-btn {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: clamp(9px, 1.2vw, 12px) clamp(16px, 2.5vw, 24px);
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: clamp(0.82rem, 1.6vw, 0.95rem);
    transition: background-color 0.3s;
    white-space: nowrap;
    border: none;
    pointer-events: none;
}

.journal-detail-page .journal-full-pdf-wrap .read-btn {
    pointer-events: auto;
    padding: 11px 22px;
    font-size: 0.95rem;
}

.journal-detail-page .read-btn:hover {
    background-color: #2980b9;
    color: white;
    transform: none;
}

/* Kiçik telefon — 1 sütun, tam en */
@media (max-width: 479px) {
    .journal-detail-page {
        padding: 0 clamp(8px, 3vw, 16px) 48px;
    }

    .journal-detail-page .journal-issues-title {
        font-size: clamp(1.25rem, 5vw, 1.5rem);
        margin-bottom: 20px;
    }

    .journal-detail-page .journal-image {
        aspect-ratio: 3 / 4;
        max-height: min(440px, 72vh);
    }
}

/* Telefon / kiçik tablet — 2 sütun */
@media (min-width: 480px) and (max-width: 767px) {
    .journal-detail-page .journals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        --issue-min-col: clamp(160px, 40vw, 220px);
    }

    .journal-detail-page .journal-image {
        aspect-ratio: 3 / 4;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
    .journal-detail-page .journal-detail-header h1 {
        font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    }

    .journal-detail-page .journals-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 900px;
    }

    .journal-detail-page .journal-image {
        aspect-ratio: 3 / 4;
    }
}

/* Laptop */
@media (min-width: 1025px) and (max-width: 1439px) {
    .journal-detail-page .journals-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 1180px;
    }

    .journal-detail-page .journal-image {
        aspect-ratio: 3 / 4;
        min-height: 360px;
    }
}

/* Geniş laptop / desktop */
@media (min-width: 1440px) {
    .journal-detail-page .journals-grid {
        grid-template-columns: repeat(3, minmax(clamp(280px, 22vw, 380px), 1fr));
        max-width: 1320px;
        gap: 32px;
    }

    .journal-detail-page .journal-image {
        aspect-ratio: 3 / 4;
        min-height: 400px;
    }
}

/* Ultra geniş ekran */
@media (min-width: 1920px) {
    .journal-detail-page .journals-grid {
        max-width: 1480px;
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 36px;
    }

    .journal-detail-page .journal-image {
        min-height: 440px;
    }
}

/* Mobil header */
@media (max-width: 768px) {
    .journal-detail-page .journal-detail-header h1 {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .journal-detail-page .journal-detail-header p {
        font-size: clamp(0.9rem, 3vw, 1rem);
        padding: 0 8px;
    }
}

/* Responsive tasarım */
@media (max-width: 1200px) {
    .books-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
    
    .journals-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        margin-top: 80px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .slider-container {
        width: calc(100% - 30px);
        margin: 15px auto 0 auto;
        border-radius: 15px 15px 0 0;
    }
    
    .navbar {
        padding: 0 3%;
    }
    
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
    }
    
    .books-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 15px;
        margin-top: 120px;
    }
    
    .book {
        width: 200px;
        height: 280px;
    }
    
    .journals-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        padding: 15px;
        margin-top: 120px;
    }
    
    .journals-header h1 {
        font-size: 2.5rem;
    }
    
    .journals-header p {
        font-size: 1rem;
    }
    
    .featured-section {
        padding: 40px 20px;
    }
    
    .featured-content {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .cards-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
        overflow-x: hidden;
    }
    
    .card {
        width: 300px;
        max-width: calc(100% - 40px);
        height: 400px;
        margin: 0 auto;
    }
    
    .daily-quote {
        margin: 15px auto;
        width: calc(100% - 30px);
        max-width: 100%;
    }
    
    .quote-container {
        padding: 20px;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .quote-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .tab-btn {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .books-container {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 10px;
        margin-top: 120px;
    }
    
    .book {
        width: 100%;
        max-width: 280px;
        height: 350px;
        margin: 0 auto;
    }
    
    .journals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
        margin-top: 120px;
    }
    
    .journals-header h1 {
        font-size: 2rem;
    }
    
    .journals-header p {
        font-size: 0.9rem;
    }
    
    .journal-image {
        height: 200px;
    }
    
    .featured-section {
        padding: 30px 15px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .featured-cards-container {
        padding: 0 10px;
    }
    
    .featured-card {
        width: 100%;
        max-width: 280px;
        min-height: 0;
    }
    
    .daily-quote {
        margin: 15px auto;
        width: calc(100% - 20px);
        max-width: 100%;
    }
    
    .quote-container {
        padding: 15px;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .quote-item h3 {
        font-size: 1.2rem;
    }
    
    .quote-item p {
        font-size: 0.9rem;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    
    .footer-links, .footer-contact, .footer-social {
        width: 100%;
    }
}

/* Tablet için özel düzenlemeler */
@media (min-width: 769px) and (max-width: 1024px) {
    .books-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .journals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .featured-section {
        padding: 50px 30px;
    }
    
    .featured-cards-container {
        gap: 40px;
    }
    
    /* Search ve About sayfaları için margin-top */
    .search-results {
        margin-top: 120px;
    }
    
    .about-main {
        margin-top: 120px;
    }
}

/* Büyük ekranlar için optimizasyon */
@media (min-width: 1400px) {
    .books-container {
        grid-template-columns: repeat(5, 1fr);
        max-width: 1400px;
    }
    
    .journals-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1400px;
    }
    
    .featured-section {
        padding: 80px 50px;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .featured-cards-container {
        gap: 50px;
    }
    
    .featured-card {
        width: 350px;
        min-height: 420px;
    }
    
    /* Search ve About sayfaları için margin-top */
    .search-results {
        margin-top: 120px;
    }
    
    .about-main {
        margin-top: 120px;
    }
}

/* Arama sayfası stilleri */
.search-results {
    padding: 20px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 120px;
}

.search-header {
    text-align: center;
    margin-bottom: 50px;
}

.search-header h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.search-header p {
    font-size: 1.1rem;
    color: #666;
}

.search-section {
    margin-bottom: 60px;
}

.search-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 10px;
}

.search-books-grid,
.search-journals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.search-book-card,
.search-journal-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-book-card:hover,
.search-journal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.book-image,
.journal-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.book-image img,
.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pdf-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6b6b;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
}

.book-info,
.journal-info {
    padding: 20px;
}

.book-info h3,
.journal-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.author {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.description {
    color: #777;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.read-btn {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-btn:hover {
    background: #ff5252;
    transform: scale(1.05);
}

.no-results {
    text-align: center;
    padding: 60px 20px;
}

.no-results-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.no-results h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 15px;
}

.no-results p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
}

.suggestions {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.suggestions h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
}

.suggestions ul {
    list-style: none;
    padding: 0;
}

.suggestions li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.suggestions li:before {
    content: "•";
    color: #ff6b6b;
    position: absolute;
    left: 0;
}

.back-home-btn {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-home-btn:hover {
    background: #ff5252;
    transform: scale(1.05);
}

/* Hakkımızda sayfası stilleri */
.about-main {
    padding: 20px 20px 60px;
    background: #f9f2f1;
    margin-top: 120px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 15px;
}

.about-header p {
    font-size: 1.2rem;
    color: #666;
}

.about-content {
    margin-bottom: 80px;
}

.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-section.reverse {
    direction: rtl;
}

.about-section.reverse .about-text {
    direction: ltr;
}

.about-text h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    text-align: justify;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
}

.stats-section {
    text-align: center;
    margin-bottom: 80px;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stats-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

.contact-section {
    text-align: center;
    background: white;
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 1.1rem;
    color: #666;
}

/* Responsive tasarım güncellemeleri */
@media (max-width: 1200px) {
    .search-books-grid,
    .search-journals-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    /* Search ve About sayfaları için margin-top */
    .search-results {
        margin-top: 120px;
    }
    
    .about-main {
        margin-top: 120px;
    }
}

@media (max-width: 768px) {
    .search-results {
        padding: 40px 15px 40px;
        margin-top: 120px;
    }
    
    .search-header h1 {
        font-size: 2rem;
    }
    
    .search-header p {
        font-size: 1rem;
    }
    
    .search-section h2 {
        font-size: 1.5rem;
    }
    
    .search-books-grid,
    .search-journals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-header h1 {
        font-size: 2.5rem;
    }
    
    .about-header p {
        font-size: 1rem;
    }
    
    .about-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .about-section.reverse {
        direction: ltr;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
    
    .stats-section {
        padding: 40px 20px;
    }
    
    .stats-section h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-section {
        padding: 40px 20px;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .search-results {
        padding: 30px 10px 30px;
        margin-top: 120px;
    }
    
    .search-header h1 {
        font-size: 1.8rem;
    }
    
    .search-section h2 {
        font-size: 1.3rem;
    }
    
    .about-header h1 {
        font-size: 2rem;
    }
    
    .about-section {
        padding: 20px 15px;
    }
    
    .about-text h2 {
        font-size: 1.3rem;
    }
    
    .stats-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .suggestions {
        padding: 20px;
    }
}




