@charset "utf-8";

/* Gold glow: merged from extra-styles.css */
.gold-glow-animation {
    animation: goldSweep 3s ease-in-out;
    border-color: #edc902;
    box-shadow: 0 0 0 rgba(237,201,2,0);
    will-change: box-shadow, opacity;
    position: relative; /* needed for pseudo-element positioning */
    z-index: 0; /* keep element above its ::before layer */
}

@keyframes goldSweep {
    0%   { box-shadow: 0 0 0 rgba(237,201,2,0); }
    25%  { box-shadow: 0 6px 18px rgba(237,201,2,0.35), 0 0 40px rgba(237,201,2,0.15); }
    50%  { box-shadow: 0 10px 30px rgba(237,201,2,0.95), 0 0 80px rgba(237,201,2,0.6); }
    75%  { box-shadow: 0 6px 18px rgba(237,201,2,0.45), 0 0 40px rgba(237,201,2,0.2); }
    100% { box-shadow: 0 0 0 rgba(237,201,2,0); }
}

/* Outer glow behind the element using ::before with negative z-index */
.gold-glow-animation::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 80px);
    height: calc(100% + 80px);
    border-radius: 14px;
    pointer-events: none;
    background: radial-gradient(circle at center, rgba(237,201,2,0.45), rgba(237,201,2,0.18) 40%, rgba(237,201,2,0.06) 60%, transparent 80%);
    filter: blur(24px);
    opacity: 0;
    z-index: -1; /* place behind the element */
    animation: goldSweepOuter 3s ease-in-out;
}

@keyframes goldSweepOuter {
    0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
    25%  { opacity: 0.55; transform: translate(-50%, -50%) scale(1.06); }
    50%  { opacity: 1; transform: translate(-50%, -50%) scale(1.18); }
    75%  { opacity: 0.55; transform: translate(-50%, -50%) scale(1.06); }
    100% { opacity: 0; transform: translate(-50%, -50%) scale(0.95); }
}

/* Restrict overflow-visible to nav buttons only so modals are unaffected */
#menu .gold-glow-animation, #menu .gold-glow-animation * {
    overflow: visible;
}

/* Border-only gold glow for modals/popups (uses box-shadow only - no pseudo elements)
   This creates an outer aura around gold borders without affecting layout/overflow */
.gold-border-animation {
    animation: goldBorderSweep 3s ease-in-out;
    border-color: #edc902;
    /* Start with no extra shadow until animated */
    box-shadow: 0 0 0 rgba(237,201,2,0);
    will-change: box-shadow, opacity;
}

@keyframes goldBorderSweep {
    0%   { box-shadow: 0 0 0 rgba(237,201,2,0); }
    25%  { box-shadow: 0 8px 22px rgba(237,201,2,0.35), 0 0 40px rgba(237,201,2,0.12); }
    50%  { box-shadow: 0 14px 40px rgba(237,201,2,0.9), 0 0 90px rgba(237,201,2,0.55); }
    75%  { box-shadow: 0 8px 22px rgba(237,201,2,0.4), 0 0 40px rgba(237,201,2,0.15); }
    100% { box-shadow: 0 0 0 rgba(237,201,2,0); }
}

* {
    box-sizing: border-box;
}


body {
    background-color: #1a2a42; 
    margin: 0;
    padding: 0;
    color: white;
    font-family: 'Arial', 'sans-serif';
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}


/* HERZLICH WILLKOMMEN */
.intro {
    font-size: 2em;
    letter-spacing: 0.2em;
    padding: 0.3em 0em;
    font-family: 'Arial', 'sans-serif';
    font-weight: bold;
    text-align: center;
    color: rgb(237, 201, 2);
    -webkit-text-stroke: 0.05rem black;
    background: linear-gradient(90deg,black, #22d3ee, #f97316, #22d3ee, black);
    border-bottom: 0.2rem solid rgb(237, 201, 2);
    text-shadow: 0.1rem 0.1rem 0.2rem black;
}

/* Carousel Bereich Größe bestimmen */
.swiper {
    position: relative;
    width: 100%;
    height: 250px; 
    margin: 0 auto;
    padding: 0;/* Zentriert das Carousel */
    border-bottom: 0.2rem solid rgb(237, 201, 2);
}

/* Bilder innerhalb des Carousels anpassen */
.swiper-slide img {
    width: 100%;
    height: 100%; /* Füllt den 250px hohen Container exakt aus */
    object-fit: cover; /* Richtet das Bild an der Oberkante aus */
}

/* STICKY NAVIGATION CONTAINER */
.sticky-nav {
    z-index: 80;
    padding: 0.75rem 0;
    backdrop-filter: blur(12px); /* backdrop-blur-md */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); /* shadow-lg */
}

.nav-container {
    max-width: 80rem; /* max-w-7xl */
    margin: 0 auto;
    padding: 0 1rem;
}

/* GRID FÜR 4 BUTTONS PRO REIHE */
.nav-grid {
    list-style: none;
    padding: 0.5rem 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* grid-cols-4 */
    gap: 0.4rem; /* gap-1.5 */
}

/* BUTTON STYLING */
.btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem 0.1rem; /* py-3 */
    border-radius: 10px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: -0.025em;
    transition: all 0.2s ease-out;
    background-color: #1f3e72; /* bg-[#112240] */
    color: white;
    border: 1px solid rgba(226, 38, 38, 0.05);
    font-size: 8.5px; /* text-[8.5px] */
}

.btn a:hover {
    background-color: #162d55; /* hover:bg-[#162d55] */
    border-color: rgba(34, 211, 238, 0.25); /* hover:border-cyan-400/25 */
}

/* AKTIVER BUTTON (CYAN) */
.btn a.active {
    background-color: #22d3ee; /* bg-cyan-400 */
    border-color: #22d3ee; /* border-cyan-400 */
    color: #0a1120; /* text-[#0a1120] */
    box-shadow: 0 4px 6px -1px rgba(34, 211, 238, 0.25); /* shadow-cyan-400/25 */
    transform: scale(1.02); /* scale-[1.02] */
    z-index: 10;
}

/* MAIN CONTENT WRAPPER & GLASS CARD */
.main-wrapper {
    max-width: 80rem;
    margin: 0 auto;
    padding: 1rem 1rem 3rem 1rem;
}

.glass-card {
    background-color: rgba(17, 34, 64, 0.25); /* bg-[#112240]/25 */
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem; /* rounded-3xl */
    padding: 1.5rem;
    min-height: 400px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5); /* shadow-2xl */
}

.glass-card-mini {
background-color: rgba(17, 34, 64, 0.25); /* bg-[#112240]/25 */
    backdrop-filter: blur(16px);
    border: 1px solid rgb(237, 201, 2);
    border-radius: .5rem; /* rounded-3xl */
    padding: 0.4rem 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.content-section {
    display: none;
}

.content-section.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.content-section p {
    text-align: left;
}

/* Grid-Regeln für das <skills> Container-Element */
skills {
    display: grid;
    grid-template-columns: minmax(0, 1fr); /* Verhindert Spalten-Überlauf */
    justify-items: center; /* Zentriert die Karten horizontal im Grid-Container */
    gap: 2rem; /* Erzeugt die gewünschten Abstände zwischen den Karten */
    padding: 1.5rem 0;
    max-width: 100%; /* Stellt sicher, dass der Container nicht aus dem Main-Wrapper ragt */
}

@media (min-width: 768px) {
    skills {
        grid-template-columns: repeat(2, minmax(0, 1fr)); /* Tablet: 2 Spalten */
    }
}

@media (min-width: 1024px) {
    skills {
        grid-template-columns: repeat(3, minmax(0, 1fr)); /* Desktop: Maximal 3 Spalten */
    }
}

/* Erhöht den unteren Abstand der Überschriften in den Skill-Karten */
skills h2 {
    margin-bottom: 1.2rem;
    display: flex;
    align-items: flex-end; /* Text und Icon-Rahmen sind unten bündig */
    gap: 0.8rem; /* Abstand zwischen Emoji-Rahmen und Text */
    line-height: 1.3; /* Bessere Lesbarkeit bei Zeilenumbruch */
}

/* BADGE STYLING */
.badge {
    display: inline-block;
    white-space: nowrap;
    background-color: rgba(34, 211, 238, 0.1); /* Zartes Cyan */
    color: #22d3ee; /* Cyan Text */
    border: 1px solid rgba(34, 211, 238, 0.3);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px; /* Pillen-Form */
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* STRENGTHS GRID */
.strengths-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 1024px) {
    .strengths-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.strength-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 1rem;
    display: flex; /* Macht die Karte zu einem Flex-Container */
    flex-direction: column; /* Stapelt die Inhalte vertikal */
    justify-content: space-between; /* Sorgt dafür, dass der CTA-Button unten bleibt */
    transition: all 0.2s;
}

.strength-card:hover {
    border-color: rgba(34, 211, 238, 0.2);
    background: rgba(255, 255, 255, 0.04);
}

/* BLOGS SECTION SPEZIFISCHES STYLING */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem; /* Abstand unter dem Header */
}

.blog-date {
    font-size: 0.75rem; /* Entspricht text-[10px] */
    color: rgba(255, 255, 255, 0.5); /* Entspricht text-gray-400 */
}

.blog-title {
    font-size: 1.125rem; /* Entspricht text-lg */
    font-weight: bold; /* Entspricht font-bold */
    color: white; /* Entspricht text-white */
    margin-bottom: 0.75rem; /* Entspricht mb-2 */
    line-height: 1.3; /* Entspricht leading-snug */
}

.blog-image-container {
    width: 100%;
    padding-bottom: 100%; /* Erzeugt ein 1:1 Seitenverhältnis */
    position: relative;
    overflow: hidden; /* Stellt sicher, dass abgerundete Ecken korrekt dargestellt werden */
    border-radius: 12px; /* Abgerundete Ecken für das Bild */
    margin-bottom: 1rem; /* Abstand unter dem Bild */
}

.blog-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Bild füllt den Container aus und schneidet ggf. ab */
    display: block;
}

.blog-image-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem; /* Größe des Fallback-Emojis */
    background: linear-gradient(135deg, rgba(34, 211, 238, 0.2), #112240, rgba(249, 115, 22, 0.2)); /* Farbverlauf für Fallback */
}

.blog-teaser {
    font-size: 0.875rem; /* Entspricht text-sm */
    color: white; /* Entspricht text-white */
    line-height: 1.6; /* Entspricht leading-relaxed */
    flex-grow: 1; /* Lässt den Teaser den verfügbaren Platz einnehmen */
    margin-bottom: 1rem; /* Abstand vor dem Button */
}

.blog-cta {
    display: inline-flex; /* Für die Ausrichtung von Text und Pfeil */
    align-items: center;
    gap: 0.5rem; /* Abstand zwischen Text und Pfeil */
    margin-top: auto; /* Schiebt den Button an den unteren Rand der Karte */
    text-decoration: none; /* Entfernt die Unterstreichung */
}

.blog-cta:hover {
    opacity: 0.9; /* Reduziert die Deckkraft beim Hover */
}

.blog-cta svg {
    width: 0.875rem; /* Größe des Pfeil-Icons */
    height: 0.875rem; /* Größe des Pfeil-Icons */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* PROFILE LAYOUT (3 SPALTEN) */
.profile-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 2.5rem;
    align-items: center;
}

/* Lässt den Inhalt im Bereich Erfahrung die volle Breite der Karte nutzen */
#erfahrung .section-header {
    grid-column: 1 / -1;
}

.header-top-row {
    display: flex;
    justify-content: space-between; /* Schiebt Inhalt nach links und rechts */
    align-items: center; /* Richtet beide vertikal mittig zueinander aus */
    gap: 1rem;
    flex-wrap: wrap; /* Erlaubt Umbruch auf sehr kleinen Bildschirmen */
    margin-bottom: 0.5rem;
}

.pdf-btn {
    text-decoration: none; /* Entfernt Unterstreichung vom Link */
    font-size: 0.7rem; /* Etwas kleiner, damit er gut zur Badge passt */
    padding: 0.5rem 1rem; /* Kompakteres Padding */
    white-space: nowrap; /* Verhindert Zeilenumbruch im Button-Text */
}

.profile-pic {
    width: 100%;
    max-width: 320px;
    border-radius: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    margin: 0 auto;
}

.story-card {
    background-color: rgba(255, 255, 255, 0.03) !important;
    padding: 2rem !important;
    min-height: auto !important;
    width: 100%;
    min-width: 0; /* Verhindert, dass langer Inhalt das Grid seitlich sprengt */
    max-width: 500px; /* Verhindert, dass die Karten auf Tablets zu breit werden und ermöglicht die Zentrierung */
}

.quote {
    font-style: italic;
    color: #edc902;
    border-left: 3px solid #f97316;
    padding-left: 1.5rem;
    margin-top: 2rem;
    line-height: 1.6;
}

/* RESPONSIVE UPDATES */
@media (min-width: 640px) {
    .nav-grid { gap: 0.75rem; }
    .btn a { font-size: 13px; padding: 1rem 0.5rem; }
}

@media (max-width: 1024px) {
    .profile-layout {
        grid-template-columns: 1fr;
        justify-items: center; /* Zentriert Profilbild und Story-Karten im einspaltigen Layout */
        text-align: center;
        gap: 3rem;
    }
    .quote { border-left: none; padding-left: 0; }
}

/* KONTAKT BUTTONS */
.contact-btn {
    background: linear-gradient(135deg, #f97316, #edc902);
    color: #0a1120;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

.carousel-btn {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 50;
}


.backmenu-btn {
    display: inline-block;
    background: linear-gradient(135deg, #f97316, #edc902);
    color: #0a1120;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.75rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.arrow-backmenu, .arrow-dropdown, .arrow-up-modal {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 3;
    fill: none;
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px;
}

.arrow-backmenu, .arrow-up-modal {
    animation: bounceUp 2s ease-in-out infinite;
}

.arrow-dropdown {
    animation: bounceDown 2s ease-in-out infinite;
}

footer-a {
    display: flex;
    justify-content: center;
    padding: 3rem 0;
    width: 100%;
}

footer {
    background-color: #1a2a42;
    color: white;
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #edc902;
}

/* SCROLLABLE MODAL CONTENT */
.modal-content.scrollable {
    max-height: 80vh;
    overflow-y: auto;
    /* Versteckt den Scrollbalken für Firefox und IE/Edge */
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

/* Versteckt den Scrollbalken für Chrome, Safari und Opera */
.modal-content.scrollable::-webkit-scrollbar {
    display: none;
}

.legal-text h3 {
    color: #22d3ee;
    font-size: 1rem;
    margin-top: 1.5rem;
}

.scroll-hint {
    text-align: center;
    padding: 0.5rem 0;
    color: #edc902;
    font-size: 1.2rem;
    transition: opacity 0.3s ease;
}

/* Trennlinie für den oberen Scroll-Hinweis */
.scroll-hint.top {
    position: sticky;
    top: -2.5rem; /* Gleicht das Padding des Modals aus */
    background-color: #112240; /* Hintergrundfarbe des Modals */
    z-index: 20;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    margin: -2.5rem 0 1rem 0;
}

/* Trennlinie für den unteren Scroll-Hinweis */
.scroll-hint.bottom {
    position: sticky;
    bottom: -2.5rem; /* Gleicht das Padding des Modals aus */
    background-color: #112240;
    z-index: 20;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 0;
    margin: 1rem 0 -2.5rem 0;
}

.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

/* MODAL STYLING */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #112240;
    padding: 2.5rem;
    border: 2px solid #edc902;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 450px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    /* Startzustand für den Übergang (statt Animation) */
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, border-color 0.4s ease, box-shadow 0.4s ease;
}

/* Cookie Modal Spezial-Design */
.cookie-modal-content {
    max-width: 600px; /* Breiter für Text auf Desktop */
    text-align: center;
    /* animation removed - using extra-styles.css gold-glow fallback */
}

@media (max-width: 768px) {
    .cookie-modal-content {
        width: 100%;
        height: 100%;
        max-width: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 1.5rem;
    }
}

/* Zustand, wenn das Modal geöffnet ist */
.modal.open .modal-content {
    opacity: 1;
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    cursor: pointer;
    color: #22d3ee;
        z-index: 100; /* Stellt sicher, dass das X über der fixierten Zeile bleibt */
}

/* Styling für Kontaktlinks im Modal */
.contact-link {
    color: #22d3ee; /* Cyan-Farbe für die Links */
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-link:hover {
    color: #edc902; /* Gold-Farbe beim Hover */
    text-decoration: underline;
}

/* Styling für die Trennlinie im Modal */
.modal-divider {
    border: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 1rem 0;
}

.contact-button-container {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
}

.btn-full {
    text-decoration: none;
    text-align: center;
    display: block;
}

/* Individueller Button für das Dropdown-Menü */
.dropdown-toggle-btn {
    background: linear-gradient(135deg, #f97316, #edc902);
    color: #0a1120;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    font-weight: 800;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
    transition: all 0.9s ease;
    
    text-transform: none; /* Keine erzwungene Großschreibung */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin:0 auto;
    width: 80%; /* Dehnt den Button auf 80% aus */
    max-width: 80%;
}

@media (max-width: 768px) {
    .main-wrapper {
        padding: 0.5rem 0.5rem 2rem 0.5rem; /* Weniger Abstand zum Bildschirmrand */
    }

    .glass-card {
        padding: 1rem; /* Mehr Platz für den Inhalt in der Karte */
    }

    .dropdown-toggle-btn {
        font-size: 0.95rem; /* Etwas kleinere Schrift auf Mobile */
        width: 100%;        /* Button füllt nun die gesamte Breite der Karte aus */
        max-width: 100%;
    }

    /* Anpassung für CTA-Buttons innerhalb der Dropdown-Listen auf Mobilgeräten */
    .dropdown-item .contact-btn {
        width: 100%; /* Button nimmt die volle Breite des Dropdown-Items ein */
        white-space: normal; /* Text darf umbrechen */
        text-align: center; /* Text im Button zentrieren */
        padding: 0.6rem 0.8rem; /* Kompakteres Padding */
        font-size: 0.7rem; /* Etwas kleinere Schriftgröße */
    }

    .current-module-header {
        flex-direction: column;     /* Elemente untereinander anordnen */
        align-items: flex-start;    /* "AKTUELL IM FOKUS" linksbündig ausrichten */
        gap: 0.5rem;                /* Etwas Abstand zwischen Badge und Counter */
    }

    .current-module-header .module-counter {
        align-self: center;         /* Den Counter horizontal zentrieren */
    }
}

/* Aktuelles Modul Anzeige */
.current-module-card {
    background: rgba(34, 211, 238, 0.05) !important;
    border: 1px solid rgba(34, 211, 238, 0.3) !important;
    margin-bottom: 2rem;
    min-height: auto !important;
    text-align: center;
    padding: 2rem !important;
}

.current-module-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.module-counter {
    font-weight: 900;
    color: #edc902;
    font-size: 1.1rem;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
}

.dropdown-toggle-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.6);
}

/* Animation für den Pfeil im Dropdown-Button */
.arrow-dropdown {
    display: inline-block;
    animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

@keyframes bounceUp {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* CONTENT DROPDOWN (DETAILS/SUMMARY) */
.content-dropdown {
    margin-top: 1.5rem;
    width: 100%;
    max-width: none; 
    margin-left: auto; /* Zentriert den Container */
    margin-right: auto; /* Zentriert den Container */
    justify-content: center; /* Zentriert den Inhalt horizontal */
}

.content-dropdown summary {
    list-style: none; /* Entfernt den Standard-Pfeil */
    outline: none;
    width: 100%;
    display: flex; /* Flexbox aktivieren für die Zentrierung */
    justify-content: center;
}

.content-dropdown summary::-webkit-details-marker {
    display: none; /* Entfernt Pfeil in Safari/Chrome */
}

.dropdown-list {
    margin-top: 1rem;
    background-color: rgba(31, 62, 114, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    list-style: none;
    padding: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    width: 100%;
    animation: fadeIn 0.9s ease-out;
}

.dropdown-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 0.5rem;
}

.dropdown-item:last-child {
    border-bottom: none;
}

.item-date {
    color: #22d3ee;
    font-weight: 800;
    font-size: 0.85rem;
}

.item-company {
    color: white;
    font-weight: 700;
    font-size: 1.2rem; /* h3-ähnliche Größe */
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    overflow-wrap: break-word;
}

.item-role {
    color: white;
    font-style: italic;
    font-size: 1rem; /* h4-ähnliche Größe */
}

/* Desktop: Trennzeichen automatisch einfügen */
@media (min-width: 769px) {
    .item-date::after {
        content: "—";
        margin-left: 0.5rem;
        color: rgba(255, 255, 255, 0.3);
    }

    .item-company::after {
        content: "•";
        margin-left: 0.5rem;
        color: #22d3ee; /* Cyanfarbener Punkt */
    }
}

/* Mobile: Elemente untereinander stapeln */
@media (max-width: 768px) {
    .dropdown-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
}

/* SPEZIFISCHE ZENTRIERUNG FÜR DIE PRAKTIKUMS-CARD */
.praktikum-container {
    max-width: 100% !important; /* Nutzt die volle Breite der Sektion */
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert alle Elemente horizontal */
    text-align: center;   /* Zentriert die Texte innerhalb der Elemente */
}

.status-date {
    margin-bottom: 2rem;
}

.status-heading {
    color: #22d3ee;
    margin-bottom: 1rem;
}

.status-list {
    text-align: left; /* Die Liste bleibt linksbündig für bessere Lesbarkeit */
    display: inline-block;
    margin: 0 auto;
    padding-left: 1.5rem;
}

/* STATUS INDIKATOR (NEON GREEN PULSE) */
.status-indicator {
    background-color: #39FF14; /* Neon-Grün */
    color: #0a1120; /* Dunkle Schrift für hohen Kontrast */
    border: 3px solid #ccffcc; /* Hellerer Rahmen */
    border-radius: 10px;
    padding: 1.2rem 2rem;
    font-size: 1.8rem;
    font-weight: 900;
    text-align: center;
    margin: 1.5rem auto;
    width: fit-content;
    display: block;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.5);
    animation: statusPulse 2s infinite ease-in-out;
    cursor: default; /* Zeigt an, dass es kein klickbarer Link ist */
}

@keyframes statusPulse {
    0% { transform: scale(1); box-shadow: 0 0 10px rgba(57, 255, 20, 0.4); }
    50% { transform: scale(1.03); box-shadow: 0 0 25px rgba(57, 255, 20, 0.8); }
    100% { transform: scale(1); box-shadow: 0 0 10px rgba(57, 255, 20, 0.4); }
}

/* Mobile Anpassung für den Status Indikator */
@media (max-width: 768px) {
    .status-indicator {
        font-size: 1.2rem; /* Kleinere Schrift für Mobile */
        padding: 0.8rem 1.2rem; /* Kompakteres Padding */
        border-width: 2px; /* Etwas dünnerer Rahmen */
        margin: 1rem auto; /* Zentriert den Block sicher auf der horizontalen Achse */
        display: block;
        width: fit-content; /* Sorgt dafür, dass der Button nur so breit wie der Text ist */
    }
}

/* Spezielle Anpassung für die detaillierten Praktikumsinhalte */
.praktikum-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left;
}

@media (min-width: 769px) {
    .praktikum-item .item-date::after,
    .praktikum-item .item-company::after {
        display: none; /* Entfernt Trennstriche für vertikales Layout */
    }
}

.praktikum-text {
    margin-top: 0.6rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    overflow-wrap: break-word;
    text-align: left;
}

.underline-signature {
    color: grey;
    font-size: smaller;
}