/* ======= Base Styles ======= */
body {
  background-color: #000;
  color: #fff;
  font-family: sans-serif;
  font-size: 18px;       /* slightly bigger paragraph font */
  line-height: 1.8;      /* more spacing between lines */
  letter-spacing: 0.03em; /* slightly more spacing between letters */
  margin-bottom: 1.2em;
}

a:link,
a:visited {
  color: #cfd6e3;
  text-decoration: underline;
}

a:hover,
a:active {
  color: #fff;
}

/* ======= Headings (thin + spaced) ======= */
h1, h2, h3, h4, h5, h6 {
  color: #ffffff;
  font-family: sans-serif;
  font-weight: 300;           /* thin */
  letter-spacing: 0.05em;     /* slightly more space between letters */
  margin-top: 1.2em;
  margin-bottom: 0.5em;
}

h1 { font-size: 60px; line-height: 1.1; }
h2 { font-size: 48px; line-height: 1.2; }
h3 { font-size: 30px; line-height: 1.3; }
h4 { font-size: 22px; line-height: 1.3; font-weight: 300; color: #cfd6e3; }

.page-title {
  text-align: center;
}

img {
    max-width: 100%;
    height: auto;
}

/* ======= Header ======= */

/* ======= Header ======= */
.site-header {
  background-color: #23282e;
}

/* Layout container */
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 15px 20px;
  gap: 15px;
  position: relative;
}

/* Logo and title grouped */
.logo-title {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Logo */
.logo {
  height: 60px;
  width: auto;
}

/* Title group */
.title-group {
  display: flex;
  flex-direction: column;
}

/* Title */
.site-title {
  font-size: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: #e1afff;
  margin: 0;
  line-height: 1.2;
}

/* Subtitle */
.site-subtitle {
  font-size: 0.9rem;
  font-weight: 300;
  color: #fff;
  margin: 5px 0 0;
  line-height: 1.2;
  text-transform: lowercase;
}

/* Desktop contact info */
.contact-info {
  width: 100%;
  text-align: right;
  font-size: 0.9rem;
  background-color: #000000;
}

.contact-info a {
  color: #cfd6e3;
  font-size: 14px;
  text-decoration: none;
}

.contact-info a:hover {
  color: #e1afff;
}

/* Menu */
.site-menu {
  background-color: #161b22;
  text-align: center;
  padding: 10px 0;
  width: 100%;
}

.site-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.site-menu ul li a {
  color: #cfd6e3;
  text-decoration: none;
  font-weight: 500;
}

.site-menu ul li a:hover {
  color: #e1afff;
}

/* Hamburger Menu Button */
.menu-icon {
  display: none;
  text-decoration: none !important;
  border: none;
  background: none;
  font-size: 32px;
  color: #cfd6e3;
  margin: 10px auto 0;
  text-align: center;
  cursor: pointer;
}

/* ====== Responsive for Mobile ====== */
@media (max-width: 768px) {
  .site-header .contact-info {
    display: none !important;
  }

  .logo-title {
    flex-direction: column;
    align-items: center;
  }

  .site-title {
    font-size: 1.7rem;
    word-wrap: break-word;
    text-align: center;
    font-weight: 700;
  }

  .site-subtitle {
    word-wrap: break-word;
    text-align: center;
  }

  .menu-icon {
    display: block;
    z-index: 9999;
  }

  .site-menu {
    display: none;
    flex-direction: column;
  }

  .site-menu.show {
    display: block;
  }

  .site-menu ul {
    flex-direction: column;
    gap: 10px;
  }
}

/* =======END HEADER======= */

/* ======= Footer ======= */
.site-footer {
  background-color: #161b22;
  padding: 15px 20px;
  color: #ffffff;
  font-size: 14px;
}

.footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 20px;
}

.footer-menu ul li a {
  color: #cfd6e3;
  text-decoration: underline;
}

.footer-menu {
  margin-bottom: 10px;
}

.footer-copyright {
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .footer-menu {
    display: none;
  }
}

.button {
  background-color: #4b0c70;
  color: #ffae00 !important;
  padding: 10px 20px;
  border: 1px solid #ffae00;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-block; /* Changed back to inline-block for natural width */
  margin: 0 auto !important; /* Keep centered */
  text-align: center !important;
  transition: background-color 0.3s ease;
width: auto; /* Force content-based width */
  max-width: fit-content; /* Restrict to content size */
}

a.button {
  text-decoration: none;
}

.button:hover,
.button:focus {
  background-color: #713096;
  color: #fad075;
text-decoration: none;
}

.button-container {
  display: block;
  text-align: center !important; /* Center the inline-block button */
  width: 100%; /* Full width for container */
}



/* ======= Containers ======= */
.container,
.main-2containers,
.standard-container {
  max-width: 1440px; /*1200*/
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.main-2containers {
  display: flex;
  gap: 20px;
}

.column {
  flex: 1;
  padding: 20px;
  box-sizing: border-box;
  color: #fff;
}

/* Background color variants */
.bg-black { background-color: #000000; }
.bg-gray1 { background-color: #161b22; border-radius: 8px; }
.bg-gray2 { background-color: #23282e; border-radius: 8px; }

@media (max-width: 768px) {
  .main-2containers {
    flex-direction: column;
  }

  .column {
    width: 100%;
  }
}

/* Three-column box block */
.three-boxes {
  display: flex;
  gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.three-boxes .box {
  flex: 1;
  background-color: #23282e;
  border: 1px solid #ffffff;
  padding: 20px;
  color: #ffffff;
  text-align: center;
  box-sizing: border-box;
}

/* Responsive: stack boxes on mobile */
@media (max-width: 768px) {
  .three-boxes {
    flex-direction: column;
  }
}

.credentials-block {
  background-color: #2b343a;
  border: 1px solid #ffffff;
  padding: 20px;
  color: #ffffff;
  font-family: monospace;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  display: inline-block;     /* shrink to fit content */
  box-sizing: border-box;
}

.align-center {
  text-align: center !important; /* Centers text horizontally */
}

/* ======= Paragraphs ======= */
p {
  font-size: 18px;         /* slightly bigger */
  line-height: 1.8;        /* more spacing between lines */
  letter-spacing: 0.03em;  /* more spacing between letters */
  margin-bottom: 1.2em;
}
