body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Courier New', Courier, monospace;
  overflow-x: hidden;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}


/* Use this for all basic links */
.link-button,
.link-button:visited {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: 1rem;
  color: #45cbff;
  text-decoration: none;
  border-bottom: 1px solid #45cbff;
  cursor: pointer;
  font-weight: bold;
}

.link-button:hover {
  background-color: #e9f9ff;
}

/* Page header (title bar) */
.page-header {
  background-color: #282828; /* Same as nav */
  color: #f2f2f2;
  padding: 2rem 1rem;
  font-family: 'Courier New', Courier, monospace;
}

.page-header-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.page-header h1 {
  font-size: 2.2rem;
  margin: 0;
  color: inherit;
}

/* Full-width tag bar section */
.tag-bar {
  background-color: #282828; 
  color: #f2f2f2;
  padding: 1rem 1rem;
  font-family: 'Courier New', Courier, monospace;
}

.tag-bar-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

/* H1 Styling */
.tag-bar h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: inherit;
}

/* Tag button layout */
#tag-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

/* Tag buttons - unselected */
#tag-filter button {
  background-color: #282828;
  border: none;
  color: #ddd;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
  padding: 0.4rem 0.8rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* Hover state */
#tag-filter button:hover {
  background-color: #333;
}

/* Selected (active) tag */
#tag-filter button.active {
  background-color: #2a2a2a; /* Slightly lighter than #222 */
  color: #45cbff;
  font-weight: bold;
}

@media (max-width: 1200px) {
  .tag-bar h1 {
    font-size: 1.6rem;
  }

  #tag-filter button {
    font-size: 0.95rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Contact Form Section */

.contact-form {
  background-color: #fff;
  color: #222;
  padding: 3rem 1rem;
  font-family: 'Courier New', Courier, monospace;
}

.contact-form-inner {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #111;
}

.contact-form label {
  display: block;
  margin-bottom: 0.3rem;
  
  margin-top: 1.2rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem;
  background: #fff;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 1rem;
  color: #222;
  box-sizing: border-box;
}

.honeypot {
  display: none;
}

.intro-section {
  height: calc(100vh - 58px); /* adjust 50px to match actual nav height */
  display: flex;
  align-items: center;       /* vertical centering */
  justify-content: center;   /* horizontal centering */
  background-image: url('/assets/images/website/ubuntudesktop.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* optional: gives a "desktop" feel */
  padding: 2rem;
}

.intro-inner {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 7rem;
  overflow: hidden;
}


.terminal-box {
  flex: 3;
  min-width: 650px;
  min-height: 400px;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.6);
  font-family: 'Courier New', Courier, monospace;
}

.terminal-header {
  background: linear-gradient(to bottom, #575757, #3e3e3e);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
}

.terminal-title {
  color: #ccc;
}

.terminal-controls {
  display: flex;
  gap: 0.4rem;
}

.terminal-controls .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.terminal-controls .grey { background-color: #aaa; }
.terminal-controls .red { background-color: #f44336; }

.terminal-body {
  background-color: #2d0922;
  padding: 1.5rem;
  font-size: 1rem;
  color: #fff;
  min-height: 400px;
  line-height: 1.6;
}

.prompt {
  color: #45cbff;
  font-weight: bold;
}

.cursor {
  display: inline-block;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.photo-box {
  flex: 1;
  min-width: 250px;
  max-width: 400px
  display: flex;
  justify-content: center;
}

.photo-box img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .intro-inner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding: 1rem;
  }

  .terminal-box {
    width: 100%;
    min-width: unset;
    max-width: 100%;
    min-height: 100%;
  }

  .terminal-body {
    min-height: 280px;
    padding: 1rem;
  }

  .photo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.photo-box img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  display: block;
}
}

.contact-faq {
  background-color: #fff;
  padding: 4rem 1rem;
  color: #111;
  font-family: 'Courier New', Courier, monospace;
}

.contact-faq-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: justify;
}

.contact-faq h2 {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #222;
}

.contact-faq p {
  margin-bottom: 2rem;
  line-height: 1.7;
}
