/* Etkinlik Detay Sayfası Stilleri */

/* Öne Çıkan Görsel */
.page-featured-image {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Etkinlik İçeriği Kartı */
.page-content-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.page-content-card h3 {
    color: #1f2950;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #c00e0e;
}

.etkinlik-date {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.etkinlik-date i {
    color: #c00e0e;
}

.page-content-card .content {
    color: #333;
    font-size: 16px;
    line-height: 1.8;
}

.page-content-card .content p {
    margin-bottom: 20px;
}

.page-content-card .content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin: 20px 0;
}

/* Sidebar Widget Kartları */
.sidebar-widget-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.sidebar-widget-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.sidebar-widget-card:last-child {
    margin-bottom: 0;
}

/* Widget Başlık */
.widget-header {
    background-color: #1f2950;
    color: #fff;
    padding: 20px 25px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 3px solid #c00e0e;
}

.widget-body {
    padding: 25px;
}

/* Etkinlik Listesi Widget */
.widget-categories-card .widget-body {
    padding: 0;
}

.widget-categories-card .categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-categories-card .categories-list li {
    border-bottom: 1px solid #f0f0f0;
}

.widget-categories-card .categories-list li:last-child {
    border-bottom: none;
}

.widget-categories-card .categories-list li a {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget-categories-card .categories-list li a:hover {
    background-color: #f8f9fa;
    color: #c00e0e;
    padding-left: 30px;
}

.widget-categories-card .categories-list li a i {
    color: #c00e0e;
    margin-right: 10px;
    font-size: 14px;
}

/* İletişim Widget */
.widget-contact-card {
    background: linear-gradient(135deg, #1f2950 0%, #2a3a60 100%);
    color: #fff;
}

.widget-contact-card .widget-body {
    text-align: center;
    padding: 30px 25px;
}

.widget-contact-card .contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.widget-contact-card .contact-icon i {
    font-size: 32px;
    color: #fff;
}

.widget-contact-card .contact-text {
    margin-bottom: 15px;
}

.widget-contact-card .contact-text p {
    font-size: 16px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.widget-contact-card .contact-text h3 {
    margin: 0;
}

.widget-contact-card .contact-text h3 a {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.widget-contact-card .contact-text h3 a:hover {
    color: #c00e0e;
}

/* Katalog Widget */
.widget-catalog-card .widget-body {
    padding: 0;
}

.widget-catalog-card .catalog-list {
    padding: 20px 25px;
}

.widget-catalog-card .catalog-item {
    margin-bottom: 15px;
}

.widget-catalog-card .catalog-item:last-child {
    margin-bottom: 0;
}

.widget-catalog-card .catalog-item a {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.widget-catalog-card .catalog-item a:hover {
    background-color: #c00e0e;
    color: #fff;
    border-color: #c00e0e;
    transform: translateX(5px);
}

.widget-catalog-card .catalog-item a i {
    margin-right: 10px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 992px) {
    .page-featured-image {
        margin-bottom: 25px;
    }

    .page-content-card {
        margin-bottom: 30px;
    }

    .sidebar-widget-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 768px) {
    .page-featured-image {
        margin-bottom: 20px;
        border-radius: 8px;
    }

    .page-content-card {
        padding: 25px 20px;
    }

    .page-content-card h3 {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .etkinlik-date {
        font-size: 14px;
    }

    .widget-body {
        padding: 20px;
    }

    .widget-categories-card .categories-list li a {
        padding: 12px 20px;
    }

    .widget-contact-card .contact-text h3 a {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .page-content-card {
        padding: 20px 15px;
    }

    .page-content-card h3 {
        font-size: 22px;
    }

    .widget-header {
        padding: 15px 20px;
        font-size: 18px;
    }

    .widget-body {
        padding: 15px;
    }

    .widget-contact-card .contact-icon {
        width: 60px;
        height: 60px;
    }

    .widget-contact-card .contact-icon i {
        font-size: 28px;
    }
}




