/* Etkinlik Hero Bölümü Güncellemeleri */
:root {
    --color-primary: #10b981;
}

.events-hero {
    position: relative;
    padding: 7vw 0 2vw !important;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%) !important;
    overflow: hidden;
}

.no-featured-event {
    text-align: center;
    padding: 1.5vw 0 !important;
}

.events-hero__title {
    font-size: 2.8vw !important;
    font-weight: 700;
    margin-bottom: 0.8vw !important;
    line-height: 1.2;
    text-align: center !important;
    color: #1a1a1a !important;
}

.events-hero__description {
    font-size: 1vw !important;
    color: #64748b;
    max-width: 40vw !important;
    margin: 0 auto !important;
    line-height: 1.6;
    text-align: center !important;
}

/* Event Item Image */
.event-item__image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    margin-bottom: 1rem;
}

.event-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-item:hover .event-item__image img {
    transform: scale(1.05);
}

.event-item__category-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(16, 185, 129, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* Event Item Layout Updates */
.event-item {
    position: relative;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.event-item__category {
    background: #f1f5f9 !important;
    color: #64748b !important;
    padding: 4px 12px !important;
    border-radius: 20px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    display: inline-block !important;
    margin-top: 0.5rem !important;
    align-self: flex-start !important;
}

.event-item__header {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0.5rem !important;
}

.event-item__title {
    margin: 0 !important;
    align-self: stretch !important;
}

/* Event Action Button Güncellemeleri */
.event-action-btn {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    color: #6c757d !important;
    padding: 0.5rem 0.75rem !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    font-size: 0.8rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.4rem !important;
    white-space: nowrap !important;
    min-width: 100px !important;
}

.event-details-btn {
    background: var(--color-primary) !important;
    color: white !important;
    border: 1px solid var(--color-primary) !important;
    font-weight: 600 !important;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3) !important;
    min-width: 120px !important;
}

.event-details-btn:hover {
    background: #059669 !important;
    border-color: #059669 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4) !important;
}

.event-action-btn:hover {
    background: #e9ecef !important;
    border-color: #dee2e6 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

.event-action-btn span {
    font-weight: 500 !important;
    font-size: 0.8rem !important;
}

.event-action-btn i {
    font-size: 0.85rem !important;
}

/* Share Modal Styles */
.modal-share {
    max-width: 500px !important;
    width: 90vw !important;
}

.share-option {
    margin-bottom: 2rem;
}

.share-copy {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.share-link-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

#shareLink {
    flex: 1;
    background: transparent;
    border: none;
    font-size: 0.9rem;
    color: #64748b;
    outline: none;
    padding: 0;
}

.copy-link-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.copy-link-btn:hover {
    background: #059669;
    transform: translateY(-1px);
}

.copy-success {
    display: block;
    color: var(--color-primary);
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-success.show {
    opacity: 1;
}

.share-social h4 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-weight: 600;
}

.social-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.75rem;
}

.social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0.75rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.85rem;
    border: 2px solid transparent;
}

.social-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn {
    background: #f0fdf4;
    color: #25D366;
    border-color: transparent;
}

.whatsapp-btn:hover {
    background: #25D366;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.linkedin-btn {
    background: #eff6ff;
    color: #0A66C2;
    border-color: transparent;
}

.linkedin-btn:hover {
    background: #0A66C2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

.facebook-btn {
    background: #eff6ff;
    color: #1877F2;
    border-color: transparent;
}

.facebook-btn:hover {
    background: #1877F2;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

.twitter-btn {
    background: #f8fafc;
    color: #000000;
    border-color: transparent;
}

.twitter-btn:hover {
    background: #000000;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background-size: 400% 400%;
    color: white;
    border-color: transparent;
    animation: gradientShift 3s ease infinite;
}

.instagram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(188, 24, 136, 0.3);
    animation-duration: 1s;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.modal-body {
    max-height: 70vh !important;
    overflow-y: auto !important;
    padding: 1.5rem !important;
}

/* Custom Scrollbar */
.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #059669;
}

.modal-content {
    border-radius: 12px !important;
}

.modal-large {
    max-width: 800px !important;
    width: 90vw !important;
}

/* Events Layout Responsive */
.events-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.events-mini-calendar {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.events-list-container {
    min-height: 400px;
}

/* Filter Section Responsive */
.events-filters {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 1rem;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.filter-search {
    position: relative;
    flex: 1;
}

.filter-search input {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.filter-search input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.filter-search i {
    position: absolute;
    left: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 0.9rem;
}

.filter-category select,
.filter-date input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #f8fafc;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-category select:focus,
.filter-date input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Tablet responsive (768px - 1024px) */
@media (max-width: 1024px) {
    .events-layout {
        grid-template-columns: 250px 1fr;
        gap: 1.5rem;
    }
    
    .events-mini-calendar {
        padding: 1rem;
    }
    
    .events-filters {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .filter-category select,
    .filter-date input {
        min-width: 120px;
    }
    
    .social-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile responsive (max-width: 768px) */
@media (max-width: 768px) {
    .events-hero {
        padding: 6vw 0 4vw !important;
    }
    
    .events-hero__title {
        font-size: 6vw !important;
        margin-bottom: 1.5vw !important;
    }
    
    .events-hero__description {
        font-size: 3.5vw !important;
        max-width: 80vw !important;
    }
    
    /* Layout becomes single column */
    .events-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .events-mini-calendar {
        order: 2;
        position: static;
        margin-top: 2rem;
    }
    
    .events-list-container {
        order: 1;
    }
    
    /* Filters stack vertically */
    .events-filters {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1rem;
    }
    
    .filter-search {
        order: 1;
    }
    
    .filter-category,
    .filter-date {
        order: 2;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .filter-search input {
        width: 100%;
        padding: 1rem 1rem 1rem 3rem;
        font-size: 1rem;
        border-radius: 10px;
    }
    
    .filter-search i {
        left: 1rem;
        font-size: 1rem;
    }
    
    .filter-category select,
    .filter-date input {
        padding: 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
    }
    
    /* Event items mobile layout - Minimal */
    .event-item {
        margin-bottom: 0.75rem;
    }
    
    .event-item__image {
        height: 100px;
        margin-bottom: 0.5rem;
    }
    
    .event-item__content {
        padding: 0.5rem;
        padding-right: 3.5rem;
    }
    
    .event-item__date {
        position: absolute;
        top: 6px;
        right: 6px;
        background: rgba(255, 255, 255, 0.95);
        padding: 0.3rem;
        border-radius: 6px;
        text-align: center;
        min-width: 50px;
        backdrop-filter: blur(10px);
        z-index: 2;
    }
    
    .event-date__day {
        font-size: 0.7rem !important;
        font-weight: 700 !important;
        color: var(--color-primary) !important;
        line-height: 1 !important;
    }
    
    .event-date__month {
        font-size: 0.6rem !important;
        color: #64748b !important;
        font-weight: 600 !important;
    }
    
    .event-item__title {
        font-size: 0.9rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.25rem !important;
        -webkit-line-clamp: 2 !important;
    }
    
    .event-item__category {
        font-size: 0.65rem !important;
        padding: 1px 6px !important;
    }
    
    .event-item__meta {
        margin: 0.5rem 0 !important;
    }
    
    .event-meta__item {
        font-size: 0.7rem !important;
        margin-bottom: 0.1rem !important;
    }
    
    .event-item__description {
        font-size: 0.75rem !important;
        line-height: 1.3 !important;
        margin-bottom: 0.5rem !important;
        -webkit-line-clamp: 1 !important;
    }
    
    .event-item__actions {
        padding: 0 0.5rem 0.5rem !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
    }
    
    .event-item__buttons {
        display: flex !important;
        gap: 0.25rem !important;
        justify-content: space-between !important;
    }
    
    .event-action-btn {
        padding: 0.25rem 0.4rem !important;
        font-size: 0.65rem !important;
        min-width: auto !important;
        flex: 1 !important;
    }
    
    .event-details-btn {
        flex: 2 !important;
        min-width: auto !important;
    }
    
    .event-action-btn span {
        font-size: 0.65rem !important;
    }
    
    .event-action-btn i {
        font-size: 0.65rem !important;
    }
    
    /* Status badge mobile */
    .event-item__status {
        margin-bottom: 0.5rem !important;
    }
    
    .status-badge {
        padding: 0.2rem 0.4rem !important;
        font-size: 0.6rem !important;
        border-radius: 12px !important;
    }
    
    /* Share modal mobile */
    .modal-share {
        width: 95vw !important;
        max-width: none !important;
    }
    
    .social-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }
    
    .social-btn {
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .social-btn i {
        font-size: 1.25rem;
    }
    
    .share-link-container {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .copy-link-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Small mobile (max-width: 480px) */
@media (max-width: 480px) {
    .events-hero__title {
        font-size: 7vw !important;
    }
    
    .events-hero__description {
        font-size: 4vw !important;
        max-width: 90vw !important;
    }
    
    .event-item__image {
        height: 160px;
    }
    
    .event-item__content {
        padding: 0.75rem;
    }
    
    .event-item__title {
        font-size: 1rem !important;
    }
    
    .event-meta__item {
        font-size: 0.8rem !important;
    }
    
    .event-item__description {
        font-size: 0.85rem !important;
    }
    
    .event-action-btn {
        padding: 0.625rem 0.75rem !important;
        font-size: 0.8rem !important;
    }
    
    .event-action-btn span {
        font-size: 0.8rem !important;
    }
    
    .event-action-btn i {
        font-size: 0.8rem !important;
    }
    
    /* Mini calendar mobile adjustments */
    .events-mini-calendar {
        padding: 0.75rem;
    }
    
    .mini-calendar-header h3 {
        font-size: 1rem !important;
    }
    
    .mini-calendar-grid {
        font-size: 0.8rem !important;
    }
    
    /* Modal mobile */
    .modal-large {
        width: 95vw !important;
        margin: 1rem !important;
    }
    
    .modal-body {
        padding: 1rem !important;
    }
    
    /* Share modal small mobile */
    .social-buttons {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .social-btn {
        flex-direction: row;
        justify-content: center;
        padding: 0.75rem;
    }
    
    .social-btn i {
        font-size: 1.1rem;
    }
} 