/* 
   TS-PREMIUM PORTFOLIO THEME
   Speziell entworfen für das Portfolio von Mohammad Al Aloush
   Kombiniert Glassmorphismus, Neon-Glow und exquisite Typografie.
*/

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
    --bg-color: #0b0f19;
    --card-bg: rgba(17, 24, 39, 0.75);
    --card-border: rgba(255, 255, 255, 0.08);
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --primary: #8b5cf6;
    --primary-glow: rgba(139, 92, 246, 0.25);
    --secondary: #06b6d4;
    --secondary-glow: rgba(6, 182, 212, 0.25);
    --accent: #10b981;
}

/* Globale Stile & Hintergrund-Animationen */
body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    background-color: var(--bg-color) !important;
    color: var(--text-main) !important;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -150px;
    left: -100px;
    background: radial-gradient(circle, var(--primary-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    filter: blur(100px);
    pointer-events: none;
}

body::after {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, var(--secondary-glow) 0%, rgba(0,0,0,0) 70%);
    z-index: -1;
    filter: blur(120px);
    pointer-events: none;
}

/* Tailwind-Überschreibungen für nahtlose Integration */
.bg-gray-100 {
    background-color: var(--bg-color) !important;
}

.text-gray-800 {
    color: var(--text-main) !important;
}

.text-gray-700 {
    color: var(--text-muted) !important;
}

/* Hero-Bereich (Header) */
.hero-section {
    background: linear-gradient(135deg, rgba(23, 27, 44, 0.8) 0%, rgba(13, 17, 33, 0.9) 100%) !important;
    border-bottom: 1px solid var(--card-border) !important;
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.15) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
}

.hero-section h1 {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    background: linear-gradient(135deg, #ffffff 30%, #c084fc 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
}

.hero-section p {
    color: #cbd5e1 !important;
}

.hero-section img {
    border-color: rgba(139, 92, 246, 0.5) !important;
    box-shadow: 0 0 25px rgba(139, 92, 246, 0.25) !important;
}

/* Sektionstitel mit modernem Gradient-Unterstrich */
.section-title {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 700 !important;
    border-bottom: none !important;
    position: relative;
    padding-bottom: 12px !important;
    color: #ffffff !important;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

/* Glassmorphismus-Karten */
.bg-white, .bg-gray-50 {
    background: var(--card-bg) !important;
    backdrop-filter: blur(16px) !important;
    border: 1px solid var(--card-border) !important;
    border-radius: 20px !important;
    color: var(--text-main) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.card-link:hover .bg-white, .card-link:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.12) !important;
}

.card-link:hover .bg-white {
    border-color: rgba(139, 92, 246, 0.4) !important;
}

/* Textfarben innerhalb der Karten */
.text-blue-800 {
    color: #c084fc !important; /* Sanftes Premium-Violett für Verknüpfungen */
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.bg-white p {
    color: var(--text-muted) !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

.bg-white h3 {
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

/* Sprachwahl-Knöpfe */
.lang-btn {
    background-color: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: var(--text-muted) !important;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease !important;
}

.lang-btn:hover {
    background-color: rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.3) !important;
}

/* Buttons (z.B. E-Mail senden) */
.bg-blue-600 {
    background: linear-gradient(135deg, var(--primary) 0%, #7c3aed 100%) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3) !important;
    transition: all 0.3s ease !important;
}

.bg-blue-600:hover {
    background: linear-gradient(135deg, #9f67ff 0%, #8b5cf6 100%) !important;
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5) !important;
}

/* Footer-Bereich */
footer.bg-gray-800 {
    background-color: rgba(10, 15, 26, 0.95) !important;
    border-top: 1px solid var(--card-border) !important;
    color: var(--text-muted) !important;
}

/* Responsives Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 2rem !important;
    }
}
