/* ============================================= */
/*   SNIPGLOBAL.ORG - Gemischte Variante (angepasst) */
/* ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: #cccccc;
    font-family: 'Courier New', Courier, monospace;
    line-height: 1.6;
    font-size: 17px;
}

/* ==================== MENÜ mit starkem Hover-CRT ==================== */
.main-menu {
    background-color: #1a1a1a;
    border-bottom: 3px solid #444444;
    padding: 15px 0;
    margin-bottom: 0px;
}

.main-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.main-menu a {
    color: #00ff9d;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    padding: 10px 25px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    text-shadow: 0 0 5px #00ff9d;
}

.main-menu a:hover,
.main-menu a.active {
    color: #ffffff;
    border: 2px solid #00ff9d;
    background-color: #222222;
    text-shadow: 0 0 15px #00ff9d,
                 0 0 25px #00ff9d;
    box-shadow: 0 0 20px #00ff9d;
}

/* ==================== HAUPTINHALT ==================== */
.content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 10px 20px;
}

/* Intro Bereich */
#intro h1 {
    font-size: 1.83rem;
    color: #00ff9d;
    margin-bottom: 0px;
    text-shadow: 0 0 10px #00ff9d;
    letter-spacing: 3px;
}

#intro p {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #e6e3e3;
}

/* Mechanische Buttons (für später) */
.btn-mechanical {
    display: inline-block;
    background-color: #1f1f1f;
    color: #00ff9d;
    padding: 12px 30px;
    border: 3px solid #555555;
    font-family: 'Courier New', monospace;
    font-weight: bold;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    margin-top: 0px;
}

.btn-mechanical:hover {
    background-color: #00ff9d;
    color: #000000;
    border-color: #00ff9d;
    box-shadow: 0 0 15px #00ff9d;
}

/* Terminal & Projekte Bereiche */
#terminal, #projekte {
    margin-top: 0px;
    padding: 10px 20px;
}

#intro {
    margin: 0;
    padding: 5;
}

.pdf-box {
    margin-top: 10px;
    border: 2px solid #ffffff;
    background: #ffffff;

    width: 100%;
    height: 330vh;
    overflow: hidden;
}

.pdf-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
  text-align: center;
  padding: 5px;
  border-top: 1px solid #111;
}

.footer,
.footer * {
  color: ##c2c2c2 !important;
  font-size: 13px !important;
}

/* Standardmäßig ist die Warnung unsichtbar */
#mobile-warning {
  display: none;
}

/* Sobald der Bildschirm kleiner als 1024px ist (Tablets & Smartphones) */
@media (max-width: 1023px) {
  #desktop-content {
    display: none; /* Versteckt deine normale Website */
  }
  
  #mobile-warning {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-color: #111; /* Dunkler Hintergrund */
    color: #fff;
    text-align: center;
    padding: 20px;
    z-index: 9999;
  }
}