/* ===== Global Styles ===== */
body {
  font-family: "Nimbus Sans L", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #222;
  background: #fff;
  text-align: left; /* default left-aligned */
}

/* ===== Header & Navigation ===== */
header {
  background: #111;
  color: #fff;
  padding: 0.5rem 1rem;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  max-height: 80px; /* won’t exceed this size */
  height: auto;
  width: auto;
}

nav ul.menu {
  list-style: none;
  display: flex;   /* 🔥 makes items go side by side */
  gap: 1rem;       /* space between items */
  margin: 0;
  padding: 0;
}

nav ul.menu li {
  position: relative; /* needed for dropdown positioning */
}

nav ul.menu a {
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: white;
}

/* Dropdown submenu */
.submenu {
  display: none; /* hidden by default */
  position: absolute;
  top: 100%; /* directly below parent */
  left: 0;
  background: black;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 180px;
  z-index: 999;
}

.submenu li a {
  padding: 8px 12px;
  color: white;
  white-space: nowrap;
}

.dropdown:hover .submenu {
  display: block;
}

/* ===== Hero Section ===== */
.headline {
  margin: 0.5rem 0; /* smaller gap than default */
}

.hero {
  background: url("../images/hero.jpg") no-repeat center center;
  background-size: cover;
  padding: 4rem 2rem;
  color: white;
  display: flex;
  justify-content: center;  /* centres the whole block horizontally */
  text-align: left;         /* makes the lines align from the left edge */
}

.hero-text {
  display: inline-block;    /* keeps the text block neat */
}

/* ===== Code Blocks ===== */
pre {
  background: #000;                /* pure black background */
  color: #00ff00;                  /* hacker green text */
  padding: 1rem;
  overflow-x: auto;
  border-radius: 6px;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.95rem;
  line-height: 1.5;
  text-shadow: 0 0 5px #00ff00;    /* green glow effect */
}

code {
  background: none;
  color: inherit;                  /* inherit green from pre */
  font-family: inherit;
}

.code-block {
  position: relative;
  background: black;
  border: 1px solid #0f0;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 6px;
  font-family: monospace;
  color: #0f0;
  overflow-x: auto;
}

.copy-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #111;
  color: #0f0;
  border: 1px solid #0f0;
  padding: 2px 8px;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 4px;
}

.copy-btn:hover {
  background: #0f0;
  color: #111;
}


/* ===== Table Formatting ==== */
/* Table of contents */
table {
  width: 60%;
  border-collapse: collapse; /* ensures borders touch neatly */
  margin-bottom: 2rem;
}

th, td {
  border: 1px solid #ddd; /* faint grey borders */
  padding: 0.5rem 0.75rem;
  text-align: left; /* ensure everything is left aligned */
  font-size: 0.95rem;
}

th {
  background: #111;  /* dark background for headings */
  color: #fff;       /* white text */
  font-weight: bold;
}

td a {
  color: #0066cc; /* links in table */
  text-decoration: none;
}

td a:hover {
  text-decoration: underline;
}


/* ===== Main Content ===== */
main {
  text-align: left; 
  padding: 2rem;
  font-size: 1.2rem;
}

/* ===== About Us ===== */
.about-container {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin: 2rem 0;
}

.about-image img {
  max-width: 150px;   /* smaller than 200px */
  height: auto;       /* keeps proportions */
  border-radius: 8px; /* keeps nice rounded corners */
}

.about-text {
  max-width: 700px;
  font-size: 1rem;
  line-height: 1.6;
}

.about-text h3 {
  margin-top: 0;
  font-size: 1.5rem;
}

/* ===== Footer ===== */
footer {
  background-color: #000;   /* black background */
  color: #fff;              /* white text */
  padding: 1.5rem 1rem;
  text-align: left;
}

footer a {
  color: #fff;              /* white links */
  text-decoration: underline;
}

footer a:hover {
  color: #ccc;              /* lighter grey hover */
}

footer .legal {
  font-size: 0.8rem;        /* smaller text */
  line-height: 1.4;
  margin: 0;
}

/* Add to css/style.css */

/* Base quote style */
.tk-quote-box {
  max-width: 700px;
  margin: 2rem auto;       /* centers the box */
  padding: 1.5rem;
  text-align: left;        /* left-aligns the text inside */
  font-style: italic;
  border: 2px solid #0b2540;
  border-radius: 8px;
  background: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
/* ===== Signature Quote (with photo) ===== */
.tk-quote-signature {
  max-width: 700px;
  margin: 2rem auto;
  padding: 1.5rem;
  border: 2px solid #0b2540;
  border-radius: 8px;
  background: #f9f9f9;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;           /* align photo + text side by side */
  align-items: flex-start;
  gap: 1rem;               /* space between image and text */
}


.tk-quote-signature img.quote-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;      /* circular */
  object-fit: cover;
  flex-shrink: 0;          /* don’t let it squash */
}

.tk-quote-signature p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}


/* Hamburger button */
.menu-toggle {
  display: none;   /* ✅ hidden by default (desktop) */
  background: none;
  border: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block; /* ✅ show only on mobile */
  }

  nav ul.menu {
    display: none;           /* hide menu by default */
    flex-direction: column;  /* stack vertically */
    width: 100%;             /* full width */
    background: #111;        /* match header bg */
    margin-top: 0.5rem;
  }

  nav ul.menu.show {
    display: flex;           /* show when toggled */
  }

  nav ul.menu li a {
    padding: 12px;
    border-top: 1px solid #333;
  }

  nav ul.menu .submenu {
    display: none;           /* start hidden */
    position: static;        /* flow in column layout */
    background: #222;
  }

  nav ul.menu .submenu.show {
    display: block;          /* show when tapped */
  }

  nav ul.menu .submenu li a {
    padding-left: 2rem;      /* indent submenu items */
  }

hr.quote-divider {
  display: block !important;
  height: 2 !important;
  border: none !important;
  border-top: 4px solid red !important; /* 🔥 test in bright red */
  width: 200px !important;
  margin: 2rem auto !important;
}

/* On mobile, disable hover-based dropdowns */
@media (max-width: 768px) {
  .dropdown:hover .submenu {
    display: none; /* stop hover opening */
  }

  /* Show submenu only when JS toggles "show" */
  .submenu.show {
    display: block !important;
  }
}

<!-- Legal Numbering -->
.legal-doc h2, .legal-doc h3 {
  margin-top: 1.5rem;
}

.legal-doc h3 {
  font-size: 1.1rem;
  font-weight: normal;
}
}

