/* Contact Link Widget - Field Condition Styles - RICHTIG GEIL! */

/* Style 1 - Classic (bleibt wie es war) */
.rm-project-contact-item.style-1 {
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.rm-project-contact-item.style-1:hover {
    background: rgba(0,0,0,0.05);
    transform: translateX(5px);
}

/* Style 2 - Neon Button */
.rm-project-contact-item.style-2-button {
    background: #0a0a0a;
    border-radius: 50px;
    padding: 15px 25px;
    margin: 10px 0;
    border: 2px solid #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.rm-project-contact-item.style-2-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.2), transparent);
    transition: left 0.5s ease;
}

.rm-project-contact-item.style-2-button:hover::before {
    left: 100%;
}

.rm-project-contact-item.style-2-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
    border-color: #00ffff;
}

.style-2-button-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    position: relative;
    z-index: 2;
}

.style-2-number {
    background: #00ff88;
    color: #000;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.style-2-title {
    font-weight: 600;
    flex: 1;
}

.style-2-arrow {
    font-size: 20px;
    font-weight: bold;
    transition: transform 0.3s ease;
    color: #00ff88;
}

.rm-project-contact-item.style-2-button:hover .style-2-arrow {
    transform: translateX(5px);
    color: #00ffff;
}

/* Style 3 - Glitch Card */
.rm-project-contact-item.style-3-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 25px;
    margin: 15px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 2px solid #ff0066;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.rm-project-contact-item.style-3-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 0, 102, 0.3);
    border-color: #ff00ff;
}

.rm-project-contact-item.style-3-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 0, 102, 0.1) 50%, transparent 70%);
    animation: glitch 2s infinite;
}

@keyframes glitch {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(2px); }
    75% { transform: translateX(-2px); }
}

.style-3-card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.style-3-icon {
    font-size: 32px;
    color: #ff0066;
    text-shadow: 0 0 10px rgba(255, 0, 102, 0.5);
}

.style-3-title {
    font-weight: 600;
    color: white;
    flex: 1;
}

.style-3-badge {
    background: linear-gradient(45deg, #ff0066, #ff00ff);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    position: absolute;
    top: -10px;
    right: -10px;
    box-shadow: 0 0 15px rgba(255, 0, 102, 0.5);
}

/* Style 4 - Fire Pill */
.rm-project-contact-item.style-4-pill {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    border-radius: 50px;
    padding: 12px 25px;
    margin: 10px 0;
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.rm-project-contact-item.style-4-pill::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: fire 3s infinite;
}

@keyframes fire {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.rm-project-contact-item.style-4-pill:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
}

.style-4-pill-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    position: relative;
    z-index: 2;
}

.style-4-dot {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.rm-project-contact-item.style-4-pill:hover .style-4-dot {
    transform: scale(1.5);
    box-shadow: 0 0 20px rgba(255, 255, 255, 1);
}

/* Style 5 - Cyber Minimal */
.rm-project-contact-item.style-5-minimal {
    padding: 20px 0;
    border-bottom: 2px solid #00ffff;
    margin: 10px 0;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rm-project-contact-item.style-5-minimal:hover {
    border-bottom-color: #ff00ff;
    padding-left: 20px;
    background: rgba(0, 255, 255, 0.05);
}

.style-5-line {
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff00ff);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.rm-project-contact-item.style-5-minimal:hover .style-5-line {
    width: 20px;
}

.style-5-arrow {
    color: #00ffff;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.rm-project-contact-item.style-5-minimal:hover .style-5-arrow {
    transform: translateX(5px);
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

/* Style 6 - Matrix Modern */
.rm-project-contact-item.style-6-modern {
    background: #000;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #00ff00;
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.3);
}

.rm-project-contact-item.style-6-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 0, 0.1), transparent);
    animation: matrix 4s infinite;
}

@keyframes matrix {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.rm-project-contact-item.style-6-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.5);
    border-color: #00ffff;
}

.style-6-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #00ff00;
    position: relative;
    z-index: 2;
}

.style-6-accent {
    width: 4px;
    height: 40px;
    background: #00ff00;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 255, 0, 0.8);
}

.style-6-icon {
    font-size: 24px;
    color: #00ff00;
    animation: matrix-pulse 2s infinite;
    text-shadow: 0 0 15px rgba(0, 255, 0, 0.8);
}

@keyframes matrix-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

/* Style 7 - Galaxy */
.rm-project-contact-item.style-7-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 20px;
    padding: 25px;
    margin: 15px 0;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.rm-project-contact-item.style-7-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="white" opacity="0.3"/><circle cx="80" cy="30" r="0.5" fill="white" opacity="0.5"/><circle cx="40" cy="70" r="0.8" fill="white" opacity="0.4"/><circle cx="70" cy="80" r="0.6" fill="white" opacity="0.6"/></svg>');
    animation: stars 20s infinite linear;
}

@keyframes stars {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.rm-project-contact-item.style-7-gradient:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

.style-7-gradient-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    position: relative;
    z-index: 2;
}

.style-7-sparkle {
    font-size: 28px;
    animation: galaxy-sparkle 3s infinite;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

@keyframes galaxy-sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
}

/* Style 8 - Holographic */
.rm-project-contact-item.style-8-outlined {
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 20px;
    margin: 15px 0;
    position: relative;
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
}

.rm-project-contact-item.style-8-outlined::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ff0066, #00ffff, #ff00ff, #00ff88);
    background-size: 400% 400%;
    animation: holographic 3s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.rm-project-contact-item.style-8-outlined:hover::before {
    opacity: 0.1;
}

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

.rm-project-contact-item.style-8-outlined:hover {
    background: #1a1a1a;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.style-8-outlined-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.style-8-corner {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 20px;
    height: 20px;
    background: linear-gradient(45deg, #ff0066, #00ffff);
    border-radius: 0 12px 0 12px;
    transition: all 0.3s ease;
}

.rm-project-contact-item.style-8-outlined:hover .style-8-corner {
    background: white;
    transform: rotate(45deg);
}

/* Style 9 - Neon Shadow */
.rm-project-contact-item.style-9-shadow {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 25px;
    margin: 15px 0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid #333;
}

.rm-project-contact-item.style-9-shadow:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    border-color: #00ffff;
}

.style-9-shadow-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    color: white;
}

.style-9-glow {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
    animation: neon-glow 2s infinite alternate;
}

@keyframes neon-glow {
    0% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.3); }
    100% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.6); }
}

.rm-project-contact-item.style-9-shadow:hover .style-9-glow {
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.5) 0%, transparent 70%);
}

/* Style 10 - Electric Underline */
.rm-project-contact-item.style-10-underline {
    padding: 20px 0;
    margin: 10px 0;
    position: relative;
    transition: all 0.3s ease;
}

.rm-project-contact-item.style-10-underline:hover {
    padding-left: 20px;
}

.style-10-underline-inner {
    position: relative;
    display: inline-block;
}

.style-10-underline-effect {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00ffff, #ff00ff, #00ff88);
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.rm-project-contact-item.style-10-underline:hover .style-10-underline-effect {
    width: 100%;
    animation: electric 2s infinite;
}

@keyframes electric {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.4); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .rm-project-contact-item {
        margin: 8px 0;
        padding: 15px;
    }
    
    .style-2-button-inner,
    .style-3-card-inner,
    .style-6-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .style-2-number,
    .style-3-badge {
        position: static;
        margin: 0 auto;
    }
}
