/**
 * Social Icons in der unteren rechten Ecke
 */

.social-icons-dock {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    position: fixed;
    bottom: 140px; /* Über dem Player */
    right: 20px;
    z-index: 9999;
}

.social-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF1C2E 0%, #C50333 100%);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 28, 46, 0.3);
}

.social-icon-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 28, 46, 0.5);
    background: linear-gradient(135deg, #ff3344 0%, #d91444 100%);
}

.social-icon-link i,
.social-icon-link svg {
    font-size: 24px;
    width: 24px;
    height: 24px;
}

/* Mobile: Icons etwas kleiner und näher an den Rand */
@media (max-width: 767px) {
    .social-icons-dock {
        bottom: 110px;
        right: 15px;
        gap: 8px;
    }
    
    .social-icon-link {
        width: 36px;
        height: 36px;
    }
    
    .social-icon-link i,
    .social-icon-link svg {
        font-size: 20px;
        width: 20px;
        height: 20px;
    }
}

/* Quick Event Row - horizontal container for input + plus button */
.quick-event-row {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
}

/* Quick Event Creator */
.quick-event-creator {
    position: absolute;
    right: 48px; /* Position next to the icon (40px icon + 8px gap) */
    display: none;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    height: 40px;
}

.quick-event-creator.show {
    display: flex;
    opacity: 1;
}

.quick-event-input {
    width: 300px;
    height: 40px;
    padding: 0 15px;
    border: 2px solid #FF1C2E;
    border-radius: 20px;
    background: rgba(20, 20, 20, 0.95);
    color: white;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    line-height: 36px;
}

.quick-event-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.quick-event-input:focus {
    background: rgba(30, 30, 30, 0.98);
    box-shadow: 0 4px 20px rgba(255, 28, 46, 0.4);
}

@media (max-width: 767px) {
    .quick-event-creator {
        right: 44px; /* Position next to mobile icon (36px icon + 8px gap) */
        height: 36px;
    }
    
    .quick-event-input {
        width: 200px;
        height: 36px;
        font-size: 13px;
        padding: 0 12px;
        line-height: 32px;
    }
}

/* Event-specific Social Icons (on event detail page) */
.event-social-icons {
    display: none; /* Hidden by default, shown only on event detail pages */
}

/* Show event icons only when on event detail page */
body:has(.event-detail-container) .event-social-icons {
    display: flex;
}

/* Hide main social icons on event detail page to avoid duplication */
body:has(.event-detail-container) .social-icons-dock:not(.event-social-icons) {
    display: none;
}
