/* styles.css - Main stylesheet for SWIAT website */

/* Poppins Font Definition */
@font-face {
    font-family: 'Poppins';
    src: url("../assets/fonts/Poppins.2f07ada47e98.woff2") format('woff2');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Poppins auf gesamte Website anwenden */
body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Token Card Styles */
.token-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.token-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Card Content Styles */
.detail-label { 
    font-weight: 500; 
    color: #003745; 
}

.detail-value { 
    color: #003745; 
}

.link-hover:hover { 
    color: #003745; 
}

.version-toggle { 
    font-weight: 500; 
}

/* Language Switcher Styles */
.language-switcher {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 55, 69, 0.1);
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
    color: #003745;
    min-width: 70px;
    justify-content: flex-start;
}

.language-btn:hover {
    background: rgba(0, 55, 69, 0.1);
    transform: translateY(-1px);
}

.language-btn.active {
    background: #003745;
    color: white;
    box-shadow: 0 2px 4px rgba(0, 55, 69, 0.2);
}

.language-btn.active:hover {
    background: #004a5a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
        padding: 6px;
    }
    
    .language-btn {
        padding: 6px 8px;
        font-size: 12px;
        min-width: 60px;
    }
}