@import url('https://fonts.googleapis.com/css2?family=Share+Tech+Mono&display=swap');
@import url('https://fonts.googleapis.com/css2?family=VT323&display=swap');

/* IMPORTS */
@import url('/css/TerminalCSS/projects.css');
@import url('/css/TerminalCSS/contact.css');

/* Terminal Typing Font*/
#terminalText,
.terminal-text-formatted {
    white-space: pre-wrap;
    font-family: 'Courier New', monospace;
    color: #0f0;
}

/* Terminal Container */
.terminal-container {
    background: rgb(0, 0, 0);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    position: relative;
    z-index: 1;
    gap: 50px;
}

/* Blinking cursor */
#blinkingCursor {
    color: #0f0;
    font-size: 1.2rem;
}

/* Banner Section */
.banner-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 200px; /* reduced from 40px */
}

.banner-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.banner-title,
#welcomeBase {
    font-size: 2.5rem;
    font-family: 'Share Tech Mono', monospace;
    color: #0f0;
}

#welcomeBase {
    font-size: 1.5rem;
    color: #00CFFF;
    margin-bottom: 20px;
}

/* PC Simulation */
.pc-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    width: 100vw;
    height: 100vh;
    transition: all 1s ease-in-out;
}

#pcImage {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    border: 2px solid #0f0;
    box-shadow: 0 0 20px #0f0;
}

/* Hidden Dev Access */
.hidden-dev-button {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
    opacity: 0;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 100;
}

/* Nav Links */
.nav-logo {
    height: 40px;
    width: 40px;
    vertical-align: middle;
    margin-right: 15px;
}

.main-nav a {
    color: #0077ff;
    margin: 0 15px;
    text-decoration: none;
}

.main-nav a.matrix-hover:hover {
    color: #0f0;
    text-shadow: 0 0 5px #0f0;
}

/* Layout Containers */
.main-layout,
.home-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.main-header {
    background-color: #000;
    padding: 10px 20px;
    text-align: center;
}

/* Matrix Style Font Utility */
.matrix-font {
    font-family: 'Courier New', monospace;
    color: #00ff00;
    letter-spacing: 2px;
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.welcome-header {
    text-align: center;
    font-family: 'Share Tech Mono', monospace;
    color: #0077ff;
    margin-top: 40px;
    animation: fadeIn 1s ease-in;
}

/* Toast container */
.terminal-toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Individual toast */
.terminal-toast {
  background-color: rgba(0, 0, 0, 0.85);
  color: #00ff00;
  padding: 8px 12px;
  margin-top: 8px;
  border-radius: 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 0.9rem;
  opacity: 0;
  animation: toast-in 0.3s forwards, toast-out 0.3s 4.7s forwards;
}

/* Entrance/exit animations */
@keyframes toast-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes toast-out {
  from { opacity: 1; }
  to { opacity: 0; }
}
