/* Global Styles */
body {
  margin: 0;
  padding: 0;
  background-color: #1E1E1E;
  color: #C5C8C6;
  font-family: 'Fira Code', monospace;
}

body {
  margin: 0;
}

body:not(.terminal-visible) {
  /* background-image: url('images\\windows_background.webp'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background: linear-gradient(to right, #4facfe, #0b2729);

}

/* Terminal Styles */
.terminal {
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
  border-radius: 5px;
  overflow: hidden;
  background-color: #1E1E1E;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
}

.terminal-header {
  display: flex;
  align-items: center;
  background-color: #2D2D2D;
  padding: 5px 10px;
  color: #fff;
}

.terminal-buttons {
  display: flex;
  gap: 5px;
}

.terminal-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.close {
  background-color: #E75480; /* Pastel red */
}

.minimize {
  background-color: #F0E68C; /* Pastel yellow */
}

.maximize {
  background-color: #9ACD32; /* Pastel green */
}

.terminal-title {
  margin-left: auto;
  font-size: 14px;
}

.terminal-body {
  background-color: #1E1E1E;
  padding: 15px;
  min-height: 200px;
  color: #C5C8C6;
  font-size: 16px;
  line-height: 1.4;
  white-space: pre-wrap;
  overflow-y: auto;
}

.syntax-command {
  color: #8AB1F0;
}

.syntax-output {
  color: #D19A66;
}

.syntax-info {
  color: #98C379;
}

.prompt {
  color: #61AFEF;
}

#typed-text {
  margin: 0;
}

.cursor {
  display: inline-block;
  width: 10px;
  background-color: #528BFF;
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
  50% {
      opacity: 0;
  }
}

.ascii-art {
  font-size: 14px;
  margin-right: 5px;
  color: #61AFEF;
  margin: 0;
  padding: 0;
  line-height: 1.2;
  display: inline-block;
}

.info-messages {
  margin-left: 20px;
}

.info-message {
  color: white;
  margin-bottom: 5px;
  margin-top: 10px;
  font-size: small;
}

.hidden {
  display: none;
}

#main-content {
  color: #C5C8C6;
  background-color: #1E1E1E;
  font-family: 'Fira Code', monospace;
}

header, footer {
  text-align: center;
  padding: 20px 0;
}

header h1 {
  font-size: 2em;
  margin-bottom: 0.5em;
  color: #61AFEF;
}

header p {
  font-size: 1.2em;
  color: #C5C8C6;
}

main {
  padding: 20px;
}

p {
  margin-bottom: 1em;
}

ul {
  list-style-type: none;
  padding: 0;
}

ul li {
  margin-bottom: 0.5em;
  padding-left: 1.2em;
  position: relative;
}

ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D19A66;
}

.status-ok {
  color: #98C379;
}

.fade-in {
  animation: fadeIn 0.5s forwards;
}

.fade-out {
  animation: fadeOut 0.5s forwards;
}

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

@keyframes fadeOut {
  from {
      opacity: 1;
  }
  to {
      opacity: 0;
  }
}

#main-content {
  opacity: 0;
}

@media (min-width: 600px) {
  main {
      padding: 40px;
  }
}

/* Browser Window Styles */
#browser-window {
  width: 90%;
  max-width: 800px;
  margin: 50px auto;
  border-radius: 5px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
  opacity: 0; /* Start hidden */
}

.browser-header {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  padding: 5px 10px;
  border-bottom: 1px solid #ccc;
}

.browser-buttons {
  display: flex;
  gap: 5px;
}

.browser-button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.browser-button.close {
  background-color: #E75480; /* Pastel red */
}

.browser-button.minimize {
  background-color: #F0E68C; /* Pastel yellow */
}

.browser-button.maximize {
  background-color: #9ACD32; /* Pastel green */
}

.browser-url-bar {
  margin-left: 10px;
  flex-grow: 1;
}

.browser-url-bar input {
  width: 100%;
  padding: 5px;
  border: none;
  background-color: #fff;
  color: #333;
  font-family: 'Fira Code', monospace;
  font-size: 14px;
}

.browser-url-bar input:focus {
  outline: none;
}

#browser-content {
  padding: 20px;
  color: #333;
  font-family: 'Fira Code', monospace;
}

#contact {
  padding: 20px 0;
}

#contact p {
  margin-bottom: 1em;
}

#contact a {
  color: #61AFEF;
  text-decoration: none;
}

#contact a:hover {
  text-decoration: underline;
}

header h1 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 10px;
}

header p {
    font-size: 1.2em;
    color: #555;
}

section {
    margin-bottom: 40px;
}

section h2 {
    font-size: 2em;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-category {
    margin-bottom: 30px;
}

.service-category h3 {
    font-size: 1.5em;
    color: #34495e;
    margin-bottom: 10px;
}

.service-category p {
    font-size: 1em;
    color: #555;
    margin-bottom: 10px;
}

.service-category ul {
    list-style-type: disc;
    margin-left: 20px;
    color: #555;
}

.service-category ul li {
    margin-bottom: 5px;
}

#why-me ul {
    list-style-type: none;
    padding-left: 0;
}

#why-me ul li {
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}

#contact a {
    color: #3498db;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}