/* ===========================
   Base Reset & Typography
=========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* Ensures consistent sizing across elements */
}

body {
  font-family: 'Segoe UI', Roboto, sans-serif;
  background-color: #1c1c1c;
  color: #e0e0e0;
  line-height: 1.6;
}

/* ===========================
   Layout Containers
=========================== */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 2em;
}

/* ===========================
   Header & Navigation
=========================== */
header {
  background-color: #1c1c1c;
  border-bottom: 1px solid #333;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 2em;
  font-weight: bold;
  color: #ff6600;
  margin-bottom: 0.1em

}

.sub-logo {
  font-size: 0.75em;
  font-weight: normal;
  color: #ff6600;
}

.tagline {
  font-size: 1em;
  font-weight: 500;
  color: #ff6600;
  font-family: 'Segoe UI', Roboto, sans-serif;
  margin-top: 0;
  
}

nav a {
  margin-left: 1.5em;
  color: #e0e0e0;
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: #ff6600;
}

/* ===========================
   Hero Section
=========================== */
.hero {
  background-color: #2a2a2a;
  padding: 5em 2em;
  text-align: center;
}

.hero h1 {
  font-size: 2.5em;
  color: #ff6600;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.2em;
  max-width: 700px;
  margin: 0 auto 1em;
}

.cta {
  display: inline-block;
  margin-top: 1em;
  padding: 0.75em 1.5em;
  background-color: #ff6600;
  color: #1c1c1c;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
}

.cta:hover {
  background-color: #e65c00;
}

/* ===========================
   Section Styling
=========================== */
.section {
  padding: 4em 2em;
  background-color: #1c1c1c;
}

.section h2 {
  text-align: center;
  color: #ff6600;
  margin-bottom: 1em;
}

/* ===========================
   Grid & Card Layout
=========================== */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  justify-content: center;
}

.card {
  background-color: #2a2a2a;
  padding: 1.5em;
  border-radius: 8px;
  flex: 1 1 280px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.card h3 {
  color: #ff6600;
  margin-bottom: 0.5em;
  font-family: 'Fira Code', monospace;
}

.card ul {
  padding-left: 1.2em;
}

.card ul li {
  margin-bottom: 0.5em;
  font-size: 0.95em;
  list-style: disc;
  color: #e0e0e0;
}

/* ===========================
   Link Styling
=========================== */
a {
  color: #80cbc4;
}

a:hover {
  color: #ff6600;
}

/* ===========================
   Responsive Design
=========================== */
@media (max-width: 600px) {
  .grid {
    flex-direction: column;
  }
}

/* ===========================
   Form Styling
=========================== */
form {
  background-color: #1c1c1c;
  border: 1px solid #ff6600;
  padding: 20px;
  color: #ff6600;
  font-family: monospace;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 8px;
  margin-top: 4px;
  margin-bottom: 16px;
  background-color: #2a2a2a;
  border: 1px solid #ff6600;
  color: #ff6600;
  font-family: monospace;
}

textarea {
  resize: vertical;
}

/* Honeypot field: hidden from users, visible to bots */
.honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

/* ===========================
   Modal Styling
=========================== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);

  /* Flex centering */
  align-items: center;
  justify-content: center;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: #1c1c1c;
  padding: 20px;
  border: 1px solid #ff6600;
  width: 90%;
  max-width: 500px;
  color: #ff6600;
  font-family: monospace;
  position: relative;
}

/* Close button for modal */
.close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #ff6600;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}

/* ===========================
   Contact Form Specific
=========================== */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 8px;
  margin: 8px 0 16px;
  background-color: #2a2a2a;
  border: 1px solid #ff6600;
  color: #ff6600;
  font-family: monospace;
}

.contact-form label {
  font-weight: bold;
  display: block;
  margin-top: 12px;
}

.contact-form .honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
  left: -9999px;
}

/* Submit button */
.submit-btn {
  background-color: #ff6600;
  color: #1c1c1c;
  border: none;
  padding: 10px 20px;
  font-family: monospace;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.submit-btn:hover {
  background-color: #ffa64d;
}

/* Trigger button for modal */
.contact-trigger {


  background-color: #1c1c1c;
  color: #e0e0e0;
  font-family: 'Segoe UI', Roboto, sans-serif;
  font-weight: bold;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.contact-trigger:hover {
  color: #e0e0e0;

}

.etic-date {
  display: inline-block;
  background-color: #2a2a2a;
  color: #ff6600;
  font-family: monospace;
  padding: 4px 8px;
  border: 1px solid #ff6600;
  border-radius: 4px;
  font-size: 0.9em;
  margin-bottom: 2em

}





