/* Ana Renkler */
:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --info-color: #0dcaf0;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --light-color: #f8f9fa;
    --dark-color: #212529;
}

/* Genel Stiller */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Stiller */
.site-header {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.site-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.site-logo:hover {
    color: var(--primary-color);
}

/* Ana Menü */
.main-menu {
    background: white;
    border: 1px solid #eee;
    border-radius: 4px;
    margin-bottom: 20px;
}

.main-menu .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.main-menu .nav-link:hover {
    color: var(--primary-color);
    background-color: #f9f9f9;
}

/* Dropdown Menüler */
.main-menu .dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 4px;
    margin-top: 5px;
}

.main-menu .dropdown-item {
    padding: 0.6rem 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.main-menu .dropdown-item:hover {
    background-color: #f1f8ff;
    color: var(--primary-color);
}

.main-menu .dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 5px;
}

/* "Nasıl Çalışır?" butonu */
.main-menu .btn-info {
    background-color: #17a2b8;
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border: none;
    box-shadow: 0 2px 5px rgba(23, 162, 184, 0.3);
    transition: all 0.3s ease;
}

.main-menu .btn-info:hover {
    background-color: #138496;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(23, 162, 184, 0.4);
}

/* Arama Kutusu */
.search-box {
    border: 1px solid #e0e0e0;
    padding: 0.6rem 1rem;
    border-radius: 4px 0 0 4px !important;
    height: 45px;
    font-size: 0.9rem;
}

.search-box:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.search-btn {
    height: 45px;
    padding: 0 1.5rem;
    border-radius: 0 4px 4px 0 !important;
    background-color: #3498db;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
}

.search-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
}

/* Butonlar */
.btn-primary {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
}

/* Üst butonlar - corludayasam stil */
.site-header .btn {
    text-align: center;
    padding: 10px 15px;
    border-radius: 4px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    line-height: 1.2;
    border: none;
}

/* Üst butonlarını aynı hizaya getirme */
.button-group {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    gap: 10px;
}

.button-group .header-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 70px; /* Hepsi için sabit yükseklik */
    width: 120px; /* Hepsi için sabit genişlik */
    text-align: center;
    padding: 8px 5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.button-group .header-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.button-group .header-btn span {
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1.2;
    margin-top: 5px;
    text-transform: uppercase;
}

.button-group .header-btn i {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

/* Header butonları */
.header-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px !important;
    height: 70px;
    width: 100px;
    text-align: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.header-btn i {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.header-btn span {
    font-size: 0.7rem;
    line-height: 1.1;
    font-weight: 600;
}

/* Hesabım dropdown butonu */
.btn-group .header-btn.dropdown-toggle::after {
    display: none;
}

.site-header .btn-danger {
    background-color: #f15e5e;
    box-shadow: 0 2px 5px rgba(241, 94, 94, 0.3);
}

.site-header .btn-danger:hover {
    background-color: #e74c3c;
    transform: translateY(-3px);
}

.site-header .btn-success {
    background-color: #2ecc71;
    box-shadow: 0 2px 5px rgba(46, 204, 113, 0.3);
}

.site-header .btn-success:hover {
    background-color: #27ae60;
    transform: translateY(-3px);
}

.site-header .btn-primary {
    background-color: #3498db;
    box-shadow: 0 2px 5px rgba(52, 152, 219, 0.3);
    border-radius: 4px;
}

.site-header .btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-3px);
}

.site-header .btn-outline-primary {
    border: 1px solid #3498db;
    color: #3498db;
    background-color: transparent;
}

.site-header .btn-outline-primary:hover {
    background-color: #3498db;
    color: white;
    transform: translateY(-3px);
}

/* Top header links */
.top-header {
    border-bottom: 1px solid #f0f0f0;
}

.top-header a {
    color: #777;
    transition: color 0.3s ease;
}

.top-header a:hover {
    color: #333;
    text-decoration: none;
}

/* Reklam Alanları */
.reklam-alani {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin: 1.5rem 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.reklam-placeholder {
    padding: 2rem;
    background: #f8f9fa;
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    color: #6c757d;
    font-weight: 500;
}

.reklam-alani img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.reklam-alani.top-banner {
    margin: 1rem 0;
}

.reklam-alani.sidebar {
    margin-bottom: 1rem;
}

/* Üst reklam alanı */
.top-ad-container {
    padding: 0;
    height: 60px;
    line-height: 60px;
    overflow: hidden;
}

.top-banner-ad {
    padding: 0;
}

.top-banner-ad div {
    height: 54px;
    padding: 3px 0;
    overflow: hidden;
}

.top-banner-ad h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 0;
}

.top-banner-ad p {
    font-size: 0.6rem;
    margin-top: 0;
    line-height: 1;
}

/* Mobil görünüm için */
@media (max-width: 768px) {
    .top-ad-container {
        height: 50px;
        line-height: 50px;
    }
    
    .top-banner-ad div {
        height: 44px;
    }
    
    .top-banner-ad h1 {
        font-size: 1.3rem;
    }
    
    .top-banner-ad p {
        font-size: 0.5rem;
    }
}

@media (max-width: 576px) {
    .top-ad-container {
        height: 40px;
        line-height: 40px;
    }
    
    .top-banner-ad div {
        height: 34px;
        padding: 2px 0;
    }
    
    .top-banner-ad h1 {
        font-size: 1rem;
        line-height: 1;
    }
    
    .top-banner-ad p {
        font-size: 0.4rem;
    }
}

/* Kartlar */
.card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

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

.card-img-top {
    border-radius: 10px 10px 0 0;
    height: 200px;
    object-fit: cover;
}

/* Öne Çıkan Mekanlar */
.featured-places .card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.featured-places .card:hover {
    transform: translateY(-5px);
}

.featured-places .card-img-top {
    height: 200px;
    object-fit: cover;
}

.featured-places .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.featured-places .card-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.featured-places .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 8px 20px;
    font-size: 0.9rem;
}

.featured-places .btn-primary:hover {
    background-color: #0056b3;
}

/* Son Sorular */
.recent-questions {
    background: white;
    border-radius: 10px;
    padding: 1rem;
}

.recent-questions .list-group-item {
    border: none;
    padding: 0.5rem 0;
}

.recent-questions .list-group-item a {
    color: var(--dark-color);
    text-decoration: none;
}

.recent-questions .list-group-item a:hover {
    color: var(--primary-color);
}

/* Footer */
.site-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.footer-heading {
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #e9ecef;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.contact-info li i {
    color: var(--primary-color);
    width: 20px;
}

.newsletter .form-control {
    border-radius: 4px 0 0 4px;
    border: 1px solid #ced4da;
    height: 42px;
}

.newsletter .btn {
    border-radius: 0 4px 4px 0;
    height: 42px;
}

.footer-bottom {
    background-color: #f1f3f5;
    border-top: 1px solid #e9ecef;
}

.payment-methods {
    opacity: 0.9;
    transition: all 0.3s ease;
    max-width: 150px;
    height: auto;
}

.payment-methods:hover {
    opacity: 1;
}

.scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.scroll-to-top:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .site-header {
        padding: 0.5rem 0;
    }
    
    .main-menu .nav-link {
        padding: 0.5rem 1rem;
    }
    
    .card-img-top {
        height: 150px;
    }
    
    .how-it-works-top .row {
        flex-direction: column;
    }
    
    .how-it-works-top h5 {
        text-align: center;
        margin: 1rem 0;
    }
    
    .step-item {
        margin-bottom: 10px;
    }
    
    /* Mobil ekran için buton düzenlemeleri */
    .button-group {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .header-btn {
        height: 60px;
        width: 80px;
        margin-bottom: 5px;
        padding: 5px !important;
    }
    
    .header-btn i {
        font-size: 1rem;
        margin-bottom: 3px;
    }
    
    .header-btn span {
        font-size: 0.6rem;
    }
    
    /* Mobil görünüm için reklam alanı ayarları */
    .top-banner-ad h1, .bottom-banner-ad h1 {
        font-size: 1.8rem !important;
    }
    
    .top-banner-ad p, .bottom-banner-ad p {
        font-size: 0.7rem !important;
    }
    
    /* Mobil görünüm için arama kutusu */
    .search-box {
        width: 100%;
    }
    
    /* Mobil görünüm için üst menü logosu ve arama kutusu */
    .site-header .row {
        flex-direction: column;
    }
    
    .site-header .col-md-3, 
    .site-header .col-md-5,
    .site-header .col-md-4 {
        width: 100%;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .site-header .col-md-4 {
        text-align: center;
    }
    
    /* Footer mobil görünüm düzenlemeleri */
    .footer-heading {
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .button-group {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .button-group .header-btn {
        width: 110px;
        height: 65px;
        margin-bottom: 10px;
    }
    
    /* Çok küçük ekranlar için reklam alanı düzenlemeleri */
    .top-banner-ad h1, .bottom-banner-ad h1 {
        font-size: 1.5rem !important;
    }
    
    .top-banner-ad p, .bottom-banner-ad p {
        font-size: 0.6rem !important;
    }
    
    /* Slider içeriği küçük ekranlarda düzenleme */
    .slide-content h2 {
        font-size: 1.8rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-inner {
        height: 40vh;
    }
    
    /* Ana menü mobil görünüm iyileştirmeleri */
    .navbar-nav {
        padding: 0.5rem;
    }
    
    .dropdown-menu {
        border: none;
        background-color: rgba(0, 0, 0, 0.03);
        padding: 0;
    }
    
    /* Mobil görünümde görsellerin boyutları */
    .event-card .card-img-top,
    .featured-places .card-img-top {
        height: 150px;
    }
}

/* Extra small - Çok küçük ekranlar için ek düzenlemeler */
@media (max-width: 360px) {
    .top-banner-ad h1, .bottom-banner-ad h1 {
        font-size: 1.2rem !important;
        padding: 5px 0 !important;
    }
    
    .button-group {
        flex-direction: column;
        align-items: center;
    }
    
    .header-btn {
        margin-bottom: 5px;
        width: 100%;
        max-width: 150px;
    }
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-section h1 {
    font-weight: 700;
    color: var(--dark-color);
}

.hero-section .search-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* Üst Nasıl Çalışır */
.how-it-works-top {
    border-bottom: 1px solid #e9ecef;
}

.step-item {
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.step-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
    font-size: 1.2rem;
}

.step-text {
    display: flex;
    flex-direction: column;
}

.step-text strong {
    font-size: 0.9rem;
    color: var(--dark-color);
}

.step-text span {
    font-size: 0.8rem;
    color: var(--secondary-color);
}

/* Popüler İşletmeler */
.featured-places .card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 20px;
    height: 100%;
}

.featured-places .card:hover {
    transform: translateY(-5px);
}

.featured-places .card-img-top {
    height: 200px;
    object-fit: cover;
}

.featured-places .card-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.featured-places .card-text {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.featured-places .rating .fas {
    font-size: 0.8rem;
}

/* Blog Yazıları */
.recent-blogs .card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.recent-blogs .card:hover {
    transform: translateY(-5px);
}

.recent-blogs .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.recent-blogs .btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.recent-blogs .btn-link:hover {
    text-decoration: underline;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    height: 100%;
}

.slide-inner {
    position: relative;
    width: 100%;
    height: 500px; /* Masaüstü için yükseklik */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
    max-width: 80%;
    padding: 20px;
}

.slide-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Swiper Navigasyon Butonları */
.swiper-button-next,
.swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff !important;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 22px;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

/* Responsive Slider Ayarları */
@media (max-width: 991px) {
    .slide-inner {
        height: 400px; /* Tablet için yükseklik */
    }
    .slide-content h2 {
        font-size: 2rem;
    }
    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .slide-inner {
        height: 350px; /* Büyük mobil için yükseklik */
    }
    .slide-content h2 {
        font-size: 1.8rem;
    }
    .slide-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .slide-inner {
        height: 250px; /* Küçük mobil için yükseklik */
        background-size: contain !important; /* Önemli: Görselin tam olarak gözükmesi için */
    }
    .slide-content h2 {
        font-size: 1.5rem;
    }
    .slide-content p {
        font-size: 0.8rem;
    }
    .swiper-button-next, 
    .swiper-button-prev {
        display: none !important; /* Küçük ekranlarda navigasyon butonlarını gizle */
    }
}

/* Ana Slider için Ek Stiller */
.main-slider {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 500px; /* Varsayılan yükseklik */
}

.main-slider .swiper-slide {
    width: 100%;
    height: 100%; 
    position: relative;
    overflow: hidden;
}

.main-slider .swiper-button-next,
.main-slider .swiper-button-prev {
    color: white;
    background-color: rgba(0,0,0,0.3);
    padding: 10px;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.main-slider .swiper-button-next:hover,
.main-slider .swiper-button-prev:hover {
    background-color: rgba(0,0,0,0.5);
}

.main-slider .swiper-button-next:after,
.main-slider .swiper-button-prev:after {
    font-size: 22px;
}

/* Anlaşmalı Firmalar Slider Stilleri */
.anlasmali-firmalar-slider {
    padding: 20px 0;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    margin-bottom: 40px; /* Pagination için alt kısımda boşluk */
}

.anlasmali-firmalar-slider .swiper-pagination {
    bottom: -10px;
}

.anlasmali-firmalar-slider .swiper-button-next,
.anlasmali-firmalar-slider .swiper-button-prev {
    color: #007bff;
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.anlasmali-firmalar-slider .swiper-button-next:after,
.anlasmali-firmalar-slider .swiper-button-prev:after {
    font-size: 20px;
}

.anlasmali-firmalar-slider .swiper-button-next {
    right: 10px;
}

.anlasmali-firmalar-slider .swiper-button-prev {
    left: 10px;
}

.firma-card {
    transition: all 0.3s ease;
    height: 100%;
}

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

/* Bölüm Başlıkları */
.section-title {
    font-weight: 700;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.section-subtitle {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* Popüler Kategoriler */
.category-card {
    display: block;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    color: var(--primary-color);
}

.category-card .card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.category-card:hover .card {
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

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

.category-card .fa-4x {
    transition: transform 0.3s ease;
}

.category-card:hover .fa-4x {
    transform: scale(1.2);
}

/* Son Yorumlar */
.recent-reviews .card {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.recent-reviews .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.recent-reviews .card-text {
    font-style: italic;
    color: #555;
    position: relative;
    padding-left: 1rem;
}

.recent-reviews .card-text::before {
    content: """;
    font-size: 2rem;
    position: absolute;
    left: 0;
    top: -0.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

/* CTA Bölümü */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.png');
    opacity: 0.05;
}

.cta-section h2 {
    font-weight: 700;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
    padding: 0.75rem 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cta-section .btn-primary:hover {
    background: rgba(255,255,255,0.9);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

/* Etkinlik Kartları */
.event-card {
    transition: all 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.event-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.event-category {
    position: absolute;
    top: 10px;
    right: 10px;
}

.event-date {
    color: #0d6efd;
    font-weight: bold;
}

/* Etkinlik Filtreleri */
.filter-section {
    background: #f8f9fa;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.filter-section .form-label {
    font-weight: 500;
    color: #212529;
}

@media (max-width: 992px) {
    .button-group {
        justify-content: center;
        margin-top: 15px;
    }
}

.category-menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
}

.category-menu-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.category-menu-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    background-color: #f8f9fa;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    border: 1px solid #e9ecef;
    min-width: 120px;
    justify-content: center;
}

.category-menu-item:hover {
    background-color: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    color: #0d6efd;
}

.category-menu-item i {
    margin-right: 8px;
    color: #0d6efd;
    font-size: 1rem;
}

/* Mobil cihazlar için uyarlama */
@media (max-width: 768px) {
    .category-menu-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px 0;
        gap: 8px;
        -webkit-overflow-scrolling: touch;
    }
    
    .category-menu-item {
        flex: 0 0 auto;
        min-width: 100px;
        padding: 8px 12px;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    /* Üst menü düzenlemeleri */
    .top-header .list-inline {
        justify-content: center;
        padding: 0;
        margin: 0;
    }
    
    .top-header .list-inline-item {
        margin-bottom: 5px;
    }
}

/* Hamburger Menü Butonu */
.menu-toggle-btn {
    width: 40px;
    height: 40px;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-toggle-btn i {
    font-size: 1.5rem;
    color: #0d6efd;
}

.menu-toggle-btn:hover {
    background-color: #e9ecef;
}

/* Kenar Çekmece Menü Stilleri */
.offcanvas-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.offcanvas-title {
    font-weight: 600;
    color: #333;
}

.sidebar-nav {
    margin-top: 10px;
}

.sidebar-nav-item {
    margin-bottom: 12px;
}

.sidebar-nav-link {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.sidebar-nav-link:hover {
    background-color: #e9ecef;
    color: #0d6efd;
    transform: translateX(5px);
}

.sidebar-nav-link i {
    margin-right: 12px;
    font-size: 1.2rem;
    min-width: 25px;
    color: #0d6efd;
}

.sidebar-footer {
    margin-top: 20px;
}

.sidebar-footer .sidebar-nav-link {
    background-color: #fff;
    border: 1px solid #e9ecef;
}

.sidebar-footer .sidebar-nav-item {
    margin-bottom: 10px;
}

@media (max-width: 576px) {
    .menu-toggle-btn {
        width: 36px;
        height: 36px;
    }
    
    .menu-toggle-btn i {
        font-size: 1.3rem;
    }
}

/* Blog ve Etkinlik Sayfaları Ortak Stilleri */
.blog-page .container-fluid.bg-danger,
.blog-detail-page .container-fluid.bg-danger,
.event-detail-page .container-fluid.bg-danger {
    margin-bottom: 20px !important;
}

.category-menu-container {
    margin-top: 0 !important;
    margin-bottom: 20px !important;
}

/* Ana menü stillerini düzelt */
.main-header {
    margin-bottom: 0 !important;
}

/* Değerlendirme Sistemi */
.starrating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.starrating .rating {
    display: inline-flex;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.starrating input {
    display: none;
}

.starrating label {
    color: #ddd;
    cursor: pointer;
    font-size: 30px;
    padding: 0 5px;
    transition: all 0.3s ease;
}

.starrating label i {
    transition: all 0.2s ease;
}

.starrating label:hover,
.starrating label:hover ~ label,
.starrating input:checked ~ label {
    color: #ffc107;
    transform: scale(1.2);
}

.starrating label:hover i,
.starrating label:hover ~ label i,
.starrating input:checked ~ label i {
    text-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

/* Değerlendirme puanlarının etiketleri */
.rating-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    padding: 0 5px;
    width: 100%;
    max-width: 200px;
}

.rating-labels .low {
    font-size: 12px;
    color: #6c757d;
}

.rating-labels .high {
    font-size: 12px;
    color: #6c757d;
    text-align: right;
}

.review-list {
    margin-top: 20px;
}

.review-item {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.review-item:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

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

.reviewer-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
}

.reviewer-name {
    font-weight: bold;
}

.review-rating {
    color: #ffc107;
}

.review-date {
    font-size: 0.85rem;
    color: #6c757d;
}

.review-content {
    margin-top: 5px;
}

/* Değerlendirme İstatistikleri */
.rating-stats {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.rating-overall {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    text-align: center;
    line-height: 1;
}

.rating-stars {
    text-align: center;
    color: #ffc107;
    font-size: 20px;
    margin: 10px 0;
}

.rating-count {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 15px;
}

.rating-bar {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.rating-label {
    flex: 0 0 40px;
    font-size: 14px;
    color: #6c757d;
}

.rating-progress {
    flex: 1;
    height: 10px;
    margin: 0 10px;
    background-color: #e9ecef;
    border-radius: 5px;
    overflow: hidden;
}

.rating-progress-bar {
    height: 100%;
    background-color: #ffc107;
    border-radius: 5px;
}

.rating-percent {
    flex: 0 0 40px;
    font-size: 14px;
    color: #6c757d;
    text-align: right;
} 