@charset "UTF-8";
/* ==========================================================================
 * openDANES — MAIN bundle
 * - Include this on every page.
 * - Keeps the same output as assets/CSS/style_0.2.scss
 * ========================================================================== */
/* ==========================================================================
   openDANES — Variables (single source of truth)

   - All variables are `!default` so page bundles can override before import.
   - Defaults match your current style_0.2.scss palette & sizes.
   ========================================================================== */
/* Colors */
/* used by search/tags */
/* Tables */
/* Callouts */
/* Typography */
/* used by search/tags */
/* Icons */
/* Cards */
/* Breakpoints (match originals) */
/* ==========================================================================
   Base / global element styles (from style_0.2.scss)
   ========================================================================== */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  /* Custom thin scrollbar */
}
* ::-webkit-scrollbar {
  width: 4px;
}
* ::-webkit-scrollbar-track {
  background: #FEFBF1;
}
* ::-webkit-scrollbar-thumb {
  background: #52053E;
  border-radius: 5px;
}
* ::-webkit-scrollbar-thumb:hover {
  background: #67074e;
}
* body {
  overflow-x: hidden;
  background-color: #FEFBF1;
}

/* Page headings */
h1 {
  font-family: "Taviraj", serif;
  font-size: 3.2vw;
  padding: 15px;
  margin-top: 15px;
  text-align: center;
}

/* Main content */
section {
  font-family: "Taviraj", serif;
  margin: 15px 20vw;
  /* Paragraphs + links */
  /* Lists */
  /* Images (enlarge on hover; disabled on very small screens in responsive partial) */
}
section h2, section h3, section h4, section h5, section h6 {
  padding-bottom: 10px;
  margin: 15px 0;
}
section h2 {
  font-size: 2.7vw;
  border-bottom: #330327 solid 1px;
}
section h2 i {
  font-size: inherit;
}
section h3 {
  font-size: 2vw;
  padding-top: 10px;
}
section h3 i {
  font-size: inherit;
}
section h4, section h5, section h6 {
  font-size: 1.7vw;
  padding-top: 10px;
}
section h4 i, section h5 i, section h6 i {
  font-size: inherit;
}
section blockquote {
  font-style: italic;
  padding-left: 3vw;
  border-left: #52053E solid;
}
section p {
  padding: 15px 0;
  text-align: justify;
  font-size: 18px;
}
section p a, section p i {
  padding: none !important;
  text-align: inherit !important;
  font-size: inherit !important;
}
section p a {
  text-decoration: none;
  color: #05878a;
  border-bottom: #05878a 1px dashed;
  transition: color 0.25s ease-in-out, border-bottom 0.25s ease-in-out;
}
section p a:hover {
  color: #9a6b23;
  border-bottom: #9a6b23 1px dashed;
}
section p a.footnote, section p a.reversefootnote {
  border: none;
}
section p a.image-link {
  border-bottom: none;
}
section ul, section ol {
  padding: 15px;
  text-align: justify;
  font-size: 18px;
}
section ul li, section ol li {
  font-size: 18px;
  text-align: justify;
  padding: 0 5px;
}
section ul li a, section ol li a {
  text-decoration: none;
  color: #05878a;
  border-bottom: #05878a 1px dashed;
  transition: color 0.25s ease-in-out, border-bottom 0.25s ease-in-out;
}
section ul li a:hover, section ol li a:hover {
  color: #9a6b23;
  border-bottom: #9a6b23 1px dashed;
}
section ul {
  margin: 0 7.5px;
}
section .fig {
  font-size: 16px;
  padding: 5px 25px 15px 25px;
  line-height: 1.4;
  font-style: italic;
}
section .fig a {
  font-size: 16px;
}
section img {
  max-width: 100%;
  height: auto;
  padding: 0 2.5vw;
  transition: max-width 0.3s ease-in-out;
}
section img:hover {
  max-width: 130%;
}
section img.not-enlarge {
  transition: none;
}
section img.not-enlarge:hover {
  max-width: 100%;
}
section i {
  font-size: 25px;
  padding: 1px;
}

/* ==========================================================================
   Components (from style_0.2.scss)
   - prompts/callouts
   - code blocks
   - tables
   - embeds
   ========================================================================== */
section {
  /* Prompt / callout styles */
  /* Code blocks */
  /* Inline code */
  /* Tables */
  /* Embeds */
}
section blockquote.prompt-tip {
  background-color: rgba(123, 247, 144, 0.2);
  border-radius: 10px;
  font-style: normal;
  padding: 0;
  border: #03b303 solid 1px;
}
section blockquote.prompt-tip p {
  padding: 13px;
}
section blockquote.prompt-tip p::before {
  content: "\f0eb";
  color: #03b303;
  font: var(--fa-font-solid);
  padding-right: 13px;
  padding-top: 5px;
}
section blockquote.prompt-info {
  background-color: #e1f5fe;
  border-radius: 10px;
  font-style: normal;
  padding: 0;
  border: #0070cb solid 1px;
}
section blockquote.prompt-info p {
  padding: 13px;
}
section blockquote.prompt-info p::before {
  content: "\f05a";
  color: #0070cb;
  font: var(--fa-font-solid);
  padding-right: 13px;
  padding-top: 5px;
}
section blockquote.prompt-warning {
  background-color: #fff3cd;
  border-radius: 10px;
  font-style: normal;
  padding: 0;
  border: #ef9c03 solid 1px;
}
section blockquote.prompt-warning p {
  padding: 13px;
}
section blockquote.prompt-warning p::before {
  content: "\f06a";
  color: #ef9c03;
  font: var(--fa-font-solid);
  padding-right: 13px;
  padding-top: 5px;
}
section blockquote.prompt-danger {
  background-color: rgba(248, 215, 218, 0.56);
  border-radius: 10px;
  font-style: normal;
  padding: 0;
  border: #df3c30 solid 1px;
}
section blockquote.prompt-danger p {
  padding: 13px;
}
section blockquote.prompt-danger p::before {
  content: "\f071";
  color: #df3c30;
  font: var(--fa-font-solid);
  padding-right: 13px;
  padding-top: 5px;
}
section div.highlight {
  padding: 15px 0;
}
section div pre.highlight {
  background-color: black;
  color: #FEFBF1;
  border-radius: 0 0 5px 5px;
  font-family: "Source Code Pro", monospace;
  white-space: pre-wrap;
  word-break: break-all;
  width: 100%;
  margin: 0;
  padding: 1px;
}
section div.highlight > button {
  height: fit-content;
  padding: 5px 15px;
  font-family: "Taviraj", serif;
  background-color: #5a175d;
  color: #FEFBF1;
  border: none;
  cursor: pointer;
  width: -webkit-fill-available;
  text-align: right;
  border-radius: 5px 5px 0 0;
}
section button span.code-button-emoticon {
  font: var(--fa-font-solid);
  padding-right: 13px;
  padding-top: 5px;
}
section code.language-plaintext.highlighter-rouge {
  padding: 3px 5px;
  border-radius: 4px;
  background-color: rgba(254, 218, 117, 0.3);
  font-size: 14px;
}
section table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
}
section table thead {
  background-color: rgba(254, 218, 117, 0.6);
  border-radius: 10px;
}
section table tbody tr {
  background-color: rgba(254, 218, 117, 0.3);
}
section table tbody tr:nth-child(2n+1) {
  background-color: rgba(254, 218, 117, 0.1);
}
section table th,
section table td {
  padding: 10px;
  text-align: left !important;
}
section .video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 0;
}
section .video-container iframe {
  border-radius: 10px;
}
section .luwian {
  font-family: 'Noto Sans Anatolian Hieroglyphs', sans-serif;
  font-weight: bold;
  font-size: x-large;
}

/* ==========================================================================
   Layout (header/footer) from style_0.2.scss
   ========================================================================== */
header {
  background-color: #52053E;
  background-size: cover;
  width: 100%;
  padding: 10px;
  font-family: "Taviraj", serif;
  color: #FEFBF1;
  position: relative;
  z-index: 1000;
}
header .navigation {
  width: 100%;
}
header .nav-header {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
header .nav-header .nav-logo {
  margin-right: 10px;
}
header .nav-header .nav-logo img {
  max-height: 70px;
}
header .nav-header .nav-title {
  font-size: 30px;
  font-weight: bold;
  margin: 0 10px;
  color: #FEFBF1;
  text-decoration: none;
  transition: color 0.3s ease;
}
header .nav-header .nav-title:hover {
  color: #feda75;
}
header .nav-toggle {
  display: none;
}
header .nav-toggle-label {
  cursor: pointer;
  padding: 10px 20px;
}
header .nav-toggle-label span i {
  font-size: 35px;
  color: #FEFBF1;
  transition: color 0.3s ease;
}
header .nav-toggle-label span i:hover {
  color: #feda75;
}
header .nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  flex-direction: column;
  background-color: #330327;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.5);
}
header .nav-links li {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
header .nav-links li a {
  text-decoration: none;
  color: #FEFBF1;
  transition: background-color 0.3s, color 0.3s;
  display: block;
  padding: 20px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
header .nav-links li a:hover {
  color: #feda75;
  background-color: rgba(255, 255, 255, 0.05);
}
header .nav-links li a img {
  display: none;
  /* Hide the extra logo inside the links since it's already in nav-header */
}
header .nav-links li:last-child {
  border-bottom: none;
}
header .nav-toggle:checked ~ .nav-links {
  display: flex;
}

footer {
  background-color: #52053E;
  background-size: cover;
  width: 100vw;
  height: auto;
  font-family: "Taviraj", serif;
  color: #FEFBF1;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  padding: 20px;
}
footer div {
  padding: 10px;
  flex: 1 1 0px;
}
footer div h3 {
  color: #feda75;
}
footer div a {
  text-decoration: none;
  color: #FEFBF1;
  transition: color 0.3s ease-in-out;
}
footer div a i {
  font-size: 25px;
  padding: 1px;
}
footer div a:hover {
  color: #feda75;
  cursor: pointer;
}

#credits {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
#credits p {
  padding: 10px;
}

/* ==========================================================================
   Responsive rules from style_0.2.scss (kept identical)
   ========================================================================== */
/* Tablet */
@media (max-width: 1024px) {
  h1 {
    font-size: 4vw;
  }

  section {
    margin: 15px 15vw;
  }
  section h2 {
    font-size: 3.5vw;
  }
  section h3 {
    font-size: 3vw;
  }
  section h4,
  section h5,
  section h6 {
    font-size: 2.5vw;
  }
  section p {
    font-size: 2vw !important;
  }
  section code.language-plaintext.highlighter-rouge {
    font-size: 1.75vw !important;
  }
  section ul,
  section ol {
    font-size: 2vw !important;
  }
  section ul li,
  section ol li {
    font-size: 2vw !important;
  }
  section .fig,
  section .fig a {
    font-size: 1.5vw;
  }
}
/* Landscape phone */
@media (max-width: 900px) {
  section {
    margin: 15px 10vw;
  }

  blockquote {
    padding-left: 5vw !important;
  }

  blockquote.prompt-tip,
  blockquote.prompt-info,
  blockquote.prompt-warning,
  blockquote.prompt-danger {
    padding: 0 !important;
  }
}
/* Phone */
@media (max-width: 700px) {
  h1 {
    font-size: 40px;
  }

  section h2 {
    font-size: 35px;
  }
  section h3 {
    font-size: 30px;
  }
  section h4,
  section h5,
  section h6 {
    font-size: 25px;
  }
  section p {
    text-align: left;
    font-size: 17px !important;
  }
  section code.language-plaintext.highlighter-rouge {
    font-size: 15px !important;
  }
  section ul,
  section ol {
    text-align: left;
    font-size: 17px !important;
  }
  section ul li,
  section ol li {
    font-size: 17px !important;
  }
  section .fig,
  section .fig a {
    font-size: 14px;
  }
  section div pre.highlight {
    flex-direction: column;
    white-space: pre-wrap;
    word-break: break-all;
  }
  section div pre.highlight > button {
    opacity: 1 !important;
    width: fit-content;
    align-self: center;
    margin: 10px;
  }

  footer {
    flex-direction: column;
    text-align: justify;
    align-items: flex-start;
  }

  #credits {
    flex-direction: column;
  }
}
/* Very small phone */
@media (max-width: 500px) {
  blockquote {
    padding-left: 10vw !important;
  }

  blockquote.prompt-tip,
  blockquote.prompt-info,
  blockquote.prompt-warning,
  blockquote.prompt-danger {
    padding: 0 !important;
  }

  img {
    transition: none;
  }
  img:hover {
    max-width: 100% !important;
  }
}
