/* ETKİNLİKLER SAYFASI - SADE TASARIM */

/* BANNER */
.page-banner {
    background: linear-gradient(135deg, rgba(255, 107, 139, 0.9) 0%, rgba(157, 78, 221, 0.9) 100%);
    padding: 100px 0 60px;
    text-align: center;
    color: white;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/pattern2.png');
    opacity: 0.1;
}

.page-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* ETKİNLİK ANLAYIŞIMIZ */
.etkinlik-anlayisimiz {
    padding: 80px 0;
    background: #f8f9fa;
}

.etkinlik-baslik {
    text-align: center;
    margin-bottom: 50px;
}

.etkinlik-baslik h2 {
    font-size: 2.5rem;
    color: #4A235A;
    margin-bottom: 15px;
}

.baslik-cizgi {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B8B, #7D3C98);
    border-radius: 2px;
    margin: 0 auto;
}

.etkinlik-icerik {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.etkinlik-metin {
    padding-right: 30px;
}

.vurgulu {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4A235A;
    margin-bottom: 25px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #FF6B8B;
}

.etkinlik-metin p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.etkinlik-ilkeler {
    margin: 30px 0;
}

.ilke {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    color: #555;
    font-size: 1.1rem;
}

.ilke i {
    color: #4A235A;
    font-size: 1.2rem;
}

.whatsapp-baglanti {
    margin-top: 40px;
    padding: 25px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.whatsapp-baglanti p {
    margin-bottom: 20px;
    color: #4A235A;
    font-weight: 500;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.etkinlik-gorsel {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    height: 400px;
}

.etkinlik-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.etkinlik-gorsel:hover img {
    transform: scale(1.05);
}

/* ETKİNLİKLER GALERİSİ */
.etkinlikler-galeria {
    padding: 80px 0;
    background: white;
}

.galeri-baslik {
    text-align: center;
    margin-bottom: 50px;
}

.galeri-baslik h2 {
    font-size: 2.5rem;
    color: #4A235A;
    margin-bottom: 15px;
}

.galeri-baslik p {
    font-size: 1.1rem;
    color: #7D3C98;
    max-width: 600px;
    margin: 0 auto;
}

.etkinlik-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.etkinlik-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.etkinlik-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #FF6B8B;
}

.etkinlik-resim {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.etkinlik-resim img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.etkinlik-item:hover .etkinlik-resim img {
    transform: scale(1.1);
}

.etkinlik-kategori {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF6B8B;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.etkinlik-bilgi {
    padding: 25px;
}

.etkinlik-bilgi h3 {
    font-size: 1.4rem;
    color: #4A235A;
    margin-bottom: 10px;
}

.etkinlik-tarih {
    color: #7D3C98;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.etkinlik-tarih::before {
    content: '📅';
}

.etkinlik-aciklama {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* WHATSAPP BÖLGESİ */
.whatsapp-bolgesi {
    background: linear-gradient(135deg, #f9f7ff 0%, #f5f0ff 100%);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
}

.whatsapp-icerik {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.whatsapp-icon {
    width: 80px;
    height: 80px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
}

.whatsapp-text h3 {
    font-size: 1.8rem;
    color: #4A235A;
    margin-bottom: 10px;
}

.whatsapp-text p {
    color: #7D3C98;
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 18px 40px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* RESPONSIVE TASARIM */
@media (max-width: 992px) {
    .etkinlik-icerik {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .etkinlik-metin {
        padding-right: 0;
    }
    
    .etkinlik-gorsel {
        height: 350px;
    }
    
    .etkinlik-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-banner {
        padding: 80px 0 40px;
    }
    
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .etkinlik-baslik h2,
    .galeri-baslik h2 {
        font-size: 2rem;
    }
    
    .whatsapp-bolgesi {
        padding: 30px 20px;
    }
    
    .whatsapp-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .etkinlik-grid {
        grid-template-columns: 1fr;
    }
    
    .etkinlik-item {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .whatsapp-icerik {
        text-align: center;
    }
    
    .whatsapp-text h3 {
        font-size: 1.5rem;
    }
}

/* ANİMASYON */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.etkinlik-item {
    animation: fadeIn 0.6s ease forwards;
    opacity: 0;
}

.etkinlik-item:nth-child(1) { animation-delay: 0.1s; }
.etkinlik-item:nth-child(2) { animation-delay: 0.2s; }
.etkinlik-item:nth-child(3) { animation-delay: 0.3s; }
.etkinlik-item:nth-child(4) { animation-delay: 0.4s; }
.etkinlik-item:nth-child(5) { animation-delay: 0.5s; }
.etkinlik-item:nth-child(6) { animation-delay: 0.6s; }