/*
Theme Name: Sanat Etkinlikleri
Theme URI: https://ornek.com/
Author: Senin Adın
Author URI: https://ornek.com/
Description: Sanat etkinlikleri için özel tema.
Version: 1.0
*/
/* Bu dosya, single-event (etkinlik detay) sayfası için 2024-05-10 tarihli style.css'in yedeğidir. */

/* Şehir Sayfası Stilleri */
.city-hero {
    position: relative;
    width: 100%;
    min-height: 140px;
    max-height: 320px;
    background: linear-gradient(90deg, #990000 0%, #b71c1c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
	padding: 7.5rem 2rem 3rem;
    box-shadow: 0 4px 20px rgba(153, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 2.5rem;
}
.city-hero-content {
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: none;
    box-shadow: none;
    padding: 0;
}
.city-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
    color: #fff;
    text-shadow: none;
    letter-spacing: -1px;
}
.city-hero-content p {
    font-size: 1.15rem;
    opacity: 0.98;
    max-width: 600px;
    line-height: 1.5;
    margin-bottom: 0;
    color: #fff;
}
@media (max-width: 900px) {
    .city-hero {
        height: 150px;
        border-radius: 0 0 18px 18px;
    }
    .city-hero-content h1 {
        font-size: 2rem;
    }
    .city-hero-content p {
        font-size: 1rem;
    }
}
@media (max-width: 600px) {
    .city-hero {
        height: 90px;
        min-height: 60px;
        border-radius: 0 0 10px 10px;
    }
    .city-hero-content h1 {
        font-size: 1.2rem;
    }
    .city-hero-content p {
        font-size: 0.95rem;
    }
}

.city-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.stat-item i {
    font-size: 1.5rem;
    color: #fff;
}

.stat-item .number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.stat-item .label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Şehir Sayfası İçerik Alanı */
.city-content {
    padding: 3rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Modern Filtre Alanı (Şehir Sayfası) */
.compact-filter {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(153,0,0,0.08);
    max-width: 900px;
    margin: 2.5rem auto 2rem auto;
    padding: 2.2rem 2rem 1.7rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.inline-filter-form .filter-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: end;
}
.filter-item {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}
.filter-label {
    font-weight: 700;
    color: #222;
    font-size: 1.05rem;
    margin-bottom: 0.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.filter-item select {
    padding: 0.9rem 1.1rem;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    background: #fff;
    transition: all 0.3s;
}
.filter-item select:focus {
    border-color: #990000;
    box-shadow: 0 0 0 2px rgba(153,0,0,0.08);
    outline: none;
}
.filter-buttons {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}
.filter-button {
    flex: 1;
    background: #990000;
    color: #fff;
    border: none;
    padding: 1rem 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.filter-button:hover {
    background: #800000;
}
.reset-button {
    flex: 1;
    background: #fff;
    color: #990000;
    border: 1.5px solid #e0e0e0;
    padding: 1rem 0;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(153,0,0,0.03);
    text-decoration: none;
}
.reset-button:hover {
    background: #f8f8f8;
    color: #800000;
    border-color: #990000;
}
@media (max-width: 900px) {
    .compact-filter {
        padding: 1.2rem 0.7rem 1rem 0.7rem;
    }
    .inline-filter-form .filter-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
}
@media (max-width: 600px) {
    .compact-filter {
        padding: 0.7rem 0.2rem 0.5rem 0.2rem;
    }
    .inline-filter-form .filter-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .filter-buttons {
        flex-direction: column;
        gap: 0.7rem;
    }
    .filter-button, .reset-button {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .city-hero-content {
        padding: 2rem;
    }

    .city-hero-content h1 {
        font-size: 3rem;
    }

    .city-content {
        padding: 2rem;
    }
}

@media (max-width: 992px) {
    .city-hero {
        height: 350px;
    }

    .city-hero-content h1 {
        font-size: 2.5rem;
    }

    .stat-item {
        padding: 0.8rem 1.2rem;
    }

    .stat-item .number {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .city-hero {
        height: 300px;
        border-radius: 0 0 20px 20px;
    }

    .city-hero-content {
        padding: 1.5rem;
    }

    .city-hero-content h1 {
        font-size: 2rem;
    }

    .city-hero-content p {
        font-size: 1rem;
    }

    .city-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .stat-item {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 150px;
    }
}

@media (max-width: 480px) {
    .city-hero {
        height: 250px;
    }

    .city-hero-content h1 {
        font-size: 1.8rem;
    }

    .stat-item {
        flex: 1 1 100%;
    }
}

/* Etkinlik Grid Düzenlemeleri */
.city-events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.no-events-message {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.no-events-message h3 {
    color: #990000;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-events-message p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Etkinlik Kartları Ana Stilleri */
.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 2rem 0;
    padding: 1rem;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.event-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.08);
}

.event-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

.event-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2C2C2C;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Tarih ve Saat Bilgisi */
.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #990000;
    font-weight: 600;
    font-size: 0.95rem;
    background: none;
    padding: 0;
}

.event-meta i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    color: #990000;
}

/* Lokasyon Bilgisi - Ayrı Stil */
.event-location {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 0;
    background: none;
}

.event-location i {
    color: #990000;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
    margin-top: 0.2rem;
}

.event-location span {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.4;
    flex: 1;
}

/* Fiyat ve Bilet Butonu */
.event-actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.event-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #990000;
    margin-right: auto;
}

.ticket-button {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    background-color: #990000;
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.ticket-button:hover {
    background-color: #800000;
    transform: translateY(-2px);
}

/* Responsive Düzenlemeler */
@media (max-width: 768px) {
    .event-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
        padding: 0.5rem;
    }

    .event-info {
        padding: 1.2rem;
    }

    .event-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .event-meta span {
        font-size: 0.9rem;
    }

    .event-location span {
        font-size: 0.9rem;
    }

    .event-price {
        font-size: 1.2rem;
    }

    .ticket-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .event-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .event-card img {
        height: 200px;
    }

    .event-meta {
        gap: 0.6rem;
    }

    .event-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .event-price {
        text-align: center;
    }

    .ticket-button {
        text-align: center;
        justify-content: center;
    }
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 4rem 0 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.5rem;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-logo h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-column.about p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links, .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

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

.footer-links a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #ccc;
}

.contact-info i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

.contact-info a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-info p {
    color: #ccc;
    margin: 0;
}

.policy-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 2rem;
}

.policy-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.policy-links a:hover {
    color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
    }

    .footer-info {
        flex-direction: column;
        text-align: center;
    }

    .policy-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 3rem 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-info li {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* HERO ALANI MODERN TASARIM */
.event-hero-content {
    position: absolute;
    left: 2.5rem;
    bottom: 2.5rem;
    z-index: 2;
    padding: 2rem 2.5rem;
    background: linear-gradient(120deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
    color: #222;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    max-width: 520px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.event-hero-content:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.event-header h1 {
    font-size: 2.4rem;
    font-weight: 800;
    margin: 0 0 0.4rem 0;
    color: #222;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.event-header .event-category {
    display: inline-block;
    background: linear-gradient(90deg, #990000 0%, #cc0000 100%);
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 16px;
    padding: 0.5rem 1.4rem;
    box-shadow: 0 2px 8px rgba(153,0,0,0.2);
    letter-spacing: 0.5px;
    margin-bottom: 0.4rem;
}

.event-meta {
    display: flex;
    gap: 0.8rem;
    font-size: 1.1rem;
    color: #444;
    font-weight: 500;
    width: 100%;
    flex-wrap: wrap;
}

.event-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    background: rgba(245,245,245,0.9);
    border-radius: 14px;
    padding: 0.6rem 1.2rem;
    font-size: 1.05rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    color: #333;
    transition: all 0.2s ease;
}

.event-meta .meta-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.event-meta .meta-item i {
    color: #990000;
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .event-hero-content {
        left: 1.5rem;
        bottom: 1.5rem;
        padding: 1.5rem;
        max-width: 90%;
        min-width: 0;
        border-radius: 20px;
    }
    
    .event-header h1 {
        font-size: 1.8rem;
    }
    
    .event-header .event-category {
        font-size: 1rem;
        padding: 0.4rem 1.2rem;
    }
    
    .event-meta {
        gap: 0.6rem;
    }
    
    .event-meta .meta-item {
        padding: 0.5rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 600px) {
    .event-hero-content {
        left: 1rem;
        bottom: 1rem;
        padding: 1.2rem;
        border-radius: 16px;
    }
    
    .event-header h1 {
        font-size: 1.5rem;
    }
    
    .event-header .event-category {
        font-size: 0.9rem;
        padding: 0.3rem 1rem;
    }
    
    .event-meta {
        gap: 0.5rem;
    }
    
    .event-meta .meta-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

/* --- Şehir Detay (tax-city) Etkinlik Kartları ve İçerik Modern Tasarım --- */
.city-events-page .event-grid {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(153,0,0,0.08);
    padding: 2.5rem 2rem;
    margin-top: -3rem;
    margin-bottom: 2rem;
}

.city-events-page .event-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(153,0,0,0.10);
    border: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.city-events-page .event-card:hover {
    box-shadow: 0 16px 40px rgba(153,0,0,0.18);
    transform: translateY(-6px) scale(1.01);
}

.city-events-page .event-image-inner, .city-events-page .event-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #990000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-events-page .event-image-inner img, .city-events-page .event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    transition: transform 0.4s;
}

.city-events-page .event-card:hover .event-image-inner img,
.city-events-page .event-card:hover .event-image img {
    transform: scale(1.05);
}

.city-events-page .event-info, .city-events-page .event-card-content {
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.city-events-page .event-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #990000;
    margin-bottom: 0.7rem;
    letter-spacing: -0.5px;
}

.city-events-page .event-details, .city-events-page .event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 1.05rem;
    color: #333;
}

.city-events-page .location-date span, .city-events-page .event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #990000;
    font-weight: 500;
}

.city-events-page .event-category {
    display: inline-block;
    background: #990000;
    color: #fff;
    border-radius: 30px;
    padding: 0.5rem 1.3rem;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.7rem;
    box-shadow: 0 2px 8px rgba(153,0,0,0.12);
    letter-spacing: 0.2px;
}

.city-events-page .event-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Responsive */
@media (max-width: 900px) {
    .city-events-page .event-grid {
        padding: 1.2rem 0.5rem;
    }
    .city-events-page .event-info, .city-events-page .event-card-content {
        padding: 1.2rem 1rem 1rem 1rem;
    }
    .city-events-page .event-image-inner, .city-events-page .event-image {
        height: 160px;
    }
}
@media (max-width: 600px) {
    .city-events-page .event-grid {
        padding: 0.5rem 0.2rem;
    }
    .city-events-page .event-info, .city-events-page .event-card-content {
        padding: 0.8rem 0.5rem 0.7rem 0.5rem;
    }
    .city-events-page .event-card h3 {
        font-size: 1.7rem !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
}

/* --- Tekil Etkinlik (single-event) Hero Görseli Üstünde Overlay Bilgi --- */
.single-event-page .event-hero {
    position: relative;
    width: 100%;
    height: 440px;
    min-height: 320px;
    max-height: 520px;
    overflow: hidden;
    border-radius: 24px;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 32px rgba(153,0,0,0.10);
    display: flex;
    align-items: stretch;
    justify-content: stretch;
}
.single-event-page .event-hero-image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
.single-event-page .event-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.single-event-page .event-hero-overlay-info {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    background: linear-gradient(to top, rgba(44,44,44,0.92) 80%, rgba(44,44,44,0.25) 100%);
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 700px;
    margin-left: 3rem;
    margin-bottom: 1rem;
}
.single-event-page .event-hero-overlay-info h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1.1rem;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.single-event-page .event-hero-overlay-info .event-category {
    display: inline-block;
    background: #fff;
    color: #990000;
    border-radius: 30px;
    padding: 0.5rem 1.3rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    box-shadow: 0 2px 8px rgba(153,0,0,0.12);
    letter-spacing: 0.2px;
}
.single-event-page .event-hero-overlay-info .event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.7rem;
}
.single-event-page .event-hero-overlay-info .event-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-weight: 500;
    background: rgba(255,255,255,0.10);
    border-radius: 12px;
    padding: 0.6rem 1.2rem;
    font-size: 1.08rem;
}
.single-event-page .event-hero-overlay-info .event-meta .meta-item i {
    color: #ffbaba;
    font-size: 1.2rem;
}

@media (max-width: 900px) {
    .single-event-page .event-hero {
        height: 280px;
        min-height: 180px;
        border-radius: 14px;
    }
    .single-event-page .event-hero-overlay-info {
        padding: 1.2rem 1rem 1rem 1rem;
        border-bottom-left-radius: 14px;
        border-bottom-right-radius: 14px;
        margin-left: 0.5rem;
        max-width: 95vw;
    }
    .single-event-page .event-hero-overlay-info h1 {
        font-size: 1.3rem;
    }
}
@media (max-width: 600px) {
    .single-event-page .event-hero {
        height: 160px;
        min-height: 100px;
        border-radius: 8px;
    }
    .single-event-page .event-hero-overlay-info {
        padding: 0.7rem 0.5rem 0.5rem 0.5rem;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        margin-left: 0.2rem;
        max-width: 99vw;
    }
}

.single-event-page .event-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2.5rem;
    margin: 0 auto;
    padding: 2.5rem 2rem;
    background: transparent;
    max-width: 1200px;
}
.single-event-page .event-content {
    background: #fff;
    border-radius: 0 0 0 18px;
    box-shadow: 0 4px 24px rgba(153,0,0,0.08);
    padding: 2rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
/* Etkinlik Hakkında Bölümü - Modern Tasarım */
.single-event-page .event-description {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(153,0,0,0.08);
    padding: 2.5rem;
    border: 1px solid rgba(153,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.single-event-page .event-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #990000, #ff6b6b, #990000);
    background-size: 200% 100%;
    animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.single-event-page .event-description h2 {
    color: #2c3e50;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    background: linear-gradient(135deg, #990000, #2c3e50);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-left: 1rem;
}

.single-event-page .event-description h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 1.5rem;
    background: linear-gradient(135deg, #990000, #ff6b6b);
    border-radius: 2px;
}

.single-event-page .event-description p {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.single-event-page .event-description p:last-child {
    margin-bottom: 0;
}

.single-event-page .event-description h1,
.single-event-page .event-description h3,
.single-event-page .event-description h4,
.single-event-page .event-description h5,
.single-event-page .event-description h6 {
    color: #2c3e50;
    font-weight: 600;
    margin: 1.5rem 0 1rem 0;
    line-height: 1.4;
}

.single-event-page .event-description h1 { font-size: 1.8rem; }
.single-event-page .event-description h3 { font-size: 1.4rem; }
.single-event-page .event-description h4 { font-size: 1.2rem; }
.single-event-page .event-description h5 { font-size: 1.1rem; }
.single-event-page .event-description h6 { font-size: 1rem; }

.single-event-page .event-description ul,
.single-event-page .event-description ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.single-event-page .event-description li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #4a5568;
}

.single-event-page .event-description blockquote {
    background: linear-gradient(135deg, rgba(153,0,0,0.05), rgba(255,107,107,0.05));
    border-left: 4px solid #990000;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #4a5568;
}

.single-event-page .event-description img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    margin: 1rem 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-event-page .event-description img:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.single-event-page .event-description a {
    color: #990000;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.single-event-page .event-description a:hover {
    border-bottom-color: #990000;
}

.single-event-page .event-description strong {
    color: #2c3e50;
    font-weight: 600;
}

.single-event-page .event-description em {
    color: #990000;
    font-style: italic;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .single-event-page .event-description {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .single-event-page .event-description h2 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
    
    .single-event-page .event-description p {
        font-size: 1rem;
        line-height: 1.7;
        text-align: left;
    }
    
    .single-event-page .event-description h1 { font-size: 1.5rem; }
    .single-event-page .event-description h3 { font-size: 1.3rem; }
    .single-event-page .event-description h4 { font-size: 1.2rem; }
    .single-event-page .event-description h5 { font-size: 1.1rem; }
    .single-event-page .event-description h6 { font-size: 1rem; }
    
    .single-event-page .event-description blockquote {
        padding: 1rem;
        margin: 1rem 0;
    }
}

@media (max-width: 480px) {
    .single-event-page .event-description {
        padding: 1.2rem;
        border-radius: 12px;
    }
    
    .single-event-page .event-description h2 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .single-event-page .event-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .single-event-page .event-description blockquote {
        padding: 0.8rem;
        margin: 0.8rem 0;
    }
}
.single-event-page .event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.single-event-page .ticket-box, .single-event-page .location-box {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(153,0,0,0.08);
    padding: 2rem 2rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.single-event-page .ticket-box h3, .single-event-page .location-box h3 {
    color: #990000;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.single-event-page .ticket-box .price {
    color: #2ecc71;
    font-size: 1.1rem;
    font-weight: 700;
}
.single-event-page .ticket-box .price.paid {
    color: #990000;
}
.single-event-page .btn-ticket {
    background: #990000;
    color: #fff;
    border-radius: 5px;
    padding: 0.7rem 1.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}
.single-event-page .btn-ticket:hover {
    background: #800000;
}
.single-event-page .location-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #222;
}
.single-event-page .location-info i {
    color: #990000;
    font-size: 1.3rem;
}
.single-event-page .location-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}
.single-event-page .location-actions {
    margin-top: 1rem;
}
.single-event-page .btn-map {
    background: #990000;
    color: #fff;
    border-radius: 5px;
    padding: 0.5rem 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.single-event-page .btn-map:hover {
    background: #800000;
}

/* Responsive */
@media (max-width: 1100px) {
    .single-event-page .event-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1.2rem 0.5rem;
    }
    .single-event-page .event-content {
        border-radius: 0 0 18px 18px;
    }
}
@media (max-width: 900px) {
    .single-event-page .event-hero {
        grid-template-columns: 1fr;
    }
    .single-event-page .event-hero-content {
        min-height: unset;
        padding: 2rem 1rem;
    }
    .single-event-page .event-hero-image img {
        min-height: 200px;
    }
    .single-event-page .event-content-wrapper {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 1.2rem 0.5rem;
    }
    .single-event-page .event-content, .single-event-page .ticket-box, .single-event-page .location-box {
        padding: 1.2rem 1rem 1rem 1rem;
    }
}
@media (max-width: 600px) {
    .single-event-page .event-hero-content h1 {
        font-size: 1.3rem;
    }
    .single-event-page .event-content-wrapper {
        padding: 0.5rem 0.2rem;
    }
    .event-card h3,
    .home .event-card h3 {
        font-size: 1.7rem !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
    .event-card h2,
    .home .event-card h2 {
        font-size: 2rem !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
}

/* --- Ana Sayfa Event Card Düzenlemeleri --- */
.home .event-card .event-info {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.home .event-card .event-details {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.home .event-card .location-date span,
.home .event-card .event-meta span {
  background: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
}

.home .event-card .event-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  margin-left: auto;
  margin-top: 0.7rem;
}

.home .event-card .event-price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #990000;
  margin-bottom: 0.3rem;
  text-align: right;
}

.home .event-card .event-button {
  background: #990000;
  color: #fff;
  border-radius: 8px;
  padding: 0.6rem 1.3rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  margin-top: 0.1rem;
  transition: background 0.2s;
  text-align: right;
}
.home .event-card .event-button:hover {
  background: #800000;
}

.home .event-card .location-date .location {
  color: #990000;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* İstatistik Kartları Modern Tasarım */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    justify-content: center;
    align-items: stretch;
    max-width: 900px;
    margin: 2.5rem auto 2rem auto;
    padding: 0 1rem;
}

.stat-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(153,0,0,0.10), 0 1.5px 6px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.2rem 1.2rem 1.7rem 1.2rem;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    min-height: 140px;
    border: 1.5px solid rgba(153,0,0,0.07);
}

.stat-card:hover {
    box-shadow: 0 12px 40px rgba(153,0,0,0.18), 0 2px 8px rgba(0,0,0,0.08);
    transform: translateY(-6px) scale(1.03);
}

.stat-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fff0f0 0%, #ffeaea 100%);
    border-radius: 16px;
    color: #990000;
    font-size: 2.1rem;
    margin-bottom: 1.1rem;
    box-shadow: 0 2px 8px rgba(153,0,0,0.07);
}

.stat-number {
    font-size: 2.4rem;
    font-weight: 900;
    color: #990000;
    margin-bottom: 0.3rem;
    letter-spacing: -1px;
    text-align: center;
}

.stat-label {
    color: #222;
    font-size: 1.08rem;
    font-weight: 600;
    text-align: center;
    opacity: 0.92;
    letter-spacing: 0.01em;
}

/* Responsive */
@media (max-width: 900px) {
    .stats-container {
        gap: 1.5rem;
        max-width: 98vw;
    }
    .stat-card {
        padding: 1.5rem 0.7rem 1.2rem 0.7rem;
    }
    .stat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    .stat-number {
        font-size: 1.7rem;
    }
}
@media (max-width: 600px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0;
    }
    .stat-card {
        min-height: 110px;
        padding: 1.1rem 0.5rem 0.8rem 0.5rem;
    }
    .stat-icon {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
        margin-bottom: 0.7rem;
    }
    .stat-number {
        font-size: 1.2rem;
    }
    .stat-label {
        font-size: 0.98rem;
    }
}

/*
Theme Name: Sanat Etkinlikleri
Theme URI: http://example.com/sanat-etkinlikleri
Author: Your Name
Author URI: http://example.com
Description: Sanat etkinlikleri için özel tasarlanmış WordPress teması
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: sanat-etkinlikleri
*/ 

@media (max-width: 600px) {
    .event-card h2,
    .home .event-card h2 {
        font-size: 2rem !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }
}
@media (max-width: 600px) {
  .single-event-page .event-hero {
    height: auto !important;
    min-height: 100px !important;
    max-height: none !important;
    flex-direction: column !important;
    border-radius: 0 !important;
    margin-bottom: 1.2rem !important;
    position: relative !important;
  }
  .single-event-page .event-hero-image {
    position: relative !important;
    height: 230px !important;
    min-height: 100px !important;
    max-height: 220px !important;
    width: 100% !important;
	padding-top: 40px !important;
  }
  .single-event-page .event-hero-image img {
    height: 100% !important;
    object-fit: cover !important;
  }
  .single-event-page .event-hero-content {
    position: static !important;
    left: 0 !important;
    bottom: 0 !important;
    padding: 1rem !important;
    max-width: 100vw !important;
    min-width: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: #222 !important;
    box-shadow: none !important;
    margin: 0 !important;
  }	
}
@media (max-width: 600px) {
  .single-event-page .event-header h1 {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }
  .single-event-page .event-meta .meta-item {
    font-size: 0.9rem !important;
    padding: 0.3rem 0.6rem !important;
  }
}
@media (max-width: 600px) {
  .about-hero,
  .contact-hero,
  .city-hero {
    padding-top: 7.5rem !important;
    padding-bottom: 2rem !important;
    min-height: 120px !important;
    border-radius: 0 !important;
    margin-top: 1.5rem !important;
  }
  header {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
    min-height: 48px !important;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2.5rem !important;
    line-height: 1.5 !important;
    text-align: center !important;
    padding: 5 20px !important;
  }
}