@charset "UTF-8";
/* CSS Document */

/* ============================= */
/* UTILITIES                     */
/* ============================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ============================= */
/* BASE BODY TYPOGRAPHY          */
/* ============================= */
body {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1rem;
  max-width: 1440px;
  line-height: 1.4;
  margin-left: 25px;
  margin-right: 25px;
  color: #333;
}

/* Mobile adjustments */
@media screen and (max-width: 600px) {
  body {
    font-size: 1rem;
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* Desktop adjustment (FIXED: was too large) */
@media screen and (min-width: 1200px) {
  body {
    font-size: 1.1rem;
    margin-left: 50px;
    margin-right: 50px;
  }
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

/* ============================= */
/* PAGE TITLE                    */
/* ============================= */
.title {
  font-family: 'Noto Serif', serif;
  font-size: 1.6em;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 150%;
  margin: 1em;
  text-align: center;
}

/* ============================= */
/* DAY HEADINGS                  */
/* ============================= */
.day-heading {
  font-size: 1.4rem;
  font-weight: bold;
  text-transform: uppercase;
  margin: 2rem 0 1rem;
  background: #1e7582;
  color: white;
  padding: 12px;
}

/* ============================= */
/* OPEN PUBLIC NOTICE            */
/* ============================= */
.open_public {
  font-family: 'Noto Sans', sans-serif;
  color: #666;
  text-transform: uppercase;
  padding: 0.75rem;
  font-size: 1.05rem;
  line-height: 150%;
  text-align: center;
}

/* ============================= */
/* PANEL TYPOGRAPHY (FIXED)      */
/* ============================= */

.panel_detail {
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
}

.panel_alternate {
  background: #fafafa;
}

.panel_title_orange {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #b85a00;
}

.panel_subtitle {
  font-size: 0.95rem;
  line-height: 1.35;
  color: #444;
}

.panel_subtitle strong {
  font-weight: 700;
  color: #000;
}

/* ============================= */
/* CALENDAR LABELS               */
/* ============================= */
.calendar_title {
  color: #324046;
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

/* ============================= */
/* COLLAPSIBLE (PAPERS)          */
/* ============================= */
.collapsible {
  background-color: #F5F5F5;
  color: #032D0D;
  cursor: pointer;
  padding: 14px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 1.05rem;
  margin-top: 0.4rem;
}

.collapsible:hover,
.active {
  background-color: #A9A9A9;
  color: white;
}

.collapsible:after {
  content: '\002B';
  color: #032D0D;
  font-weight: bold;
  float: right;
}

.active:after {
  content: "\2212";
}

/* Paper title + author hierarchy */
.paper-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.author-name {
  font-size: 0.95rem;
  color: #444;
}

/* ============================= */
/* ABSTRACT CONTENT              */
/* ============================= */
.content_abstract {
  padding: 14px 18px;
  max-height: 0;
  overflow: hidden;
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.5;
  transition: max-height 0.2s ease-out;
  background-color: #f1f1f1;
}

/* ============================= */
/* GENERAL PAGE CONTAINERS       */
/* ============================= */
.everypage-container {
  color: #000;
  font-size: 1rem;
  line-height: 160%;
  margin: 2rem;
  font-family: 'Noto Sans', sans-serif;
}

.everypage-container a {
  color: #490025;
  font-weight: bold;
}

.everypage-container p {
  margin: 1rem 0;
  text-align: left;
}

/* ============================= */
/* IMAGES                        */
/* ============================= */
img {
  width: 100%;
  height: auto;
  max-width: 100%;
}

/* ============================= */
/* FOOTER                        */
/* ============================= */
footer {
  padding: 2em 3em;
  background-color: #DCDADA;
}

.footer-text {
  font-size: 0.75rem;
  margin-bottom: 2em;
  opacity: 75%;
}

.footer-text a {
  font-size: 0.8rem;
}

/* Mobile footer */
@media (max-width: 600px) {
  footer {
    padding: 1em;
  }

  .footer-text {
    font-size: 0.65rem;
  }
}

/* ============================= */
/* NAVBAR                         */
/* ============================= */
.navbar {
  display: flex;
  font-family: 'Noto Sans', sans-serif;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background-color: #1e7582;
  color: #fff;
}

.nav-links a {
  color: #fff;
}

.menu {
  display: flex;
  gap: 1em;
  font-size: 18px;
}

.menu li:hover {
  background-color: #245e6e;
  border-radius: 5px;
  transition: 0.3s ease;
}

.menu li {
  padding: 5px 14px;
}

/* Dropdown */
.services {
  position: relative;
}

.dropdown {
  background-color: rgba(30, 117, 130, 1);
  padding: 1em 0;
  position: absolute;
  display: none;
  border-radius: 8px;
  top: 35px;
}

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

/* Responsive navbar */
input[type=checkbox] {
  display: none;
}

.hamburger {
  display: none;
  font-size: 24px;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    position: absolute;
    background-color: #245e6e;
    right: 0;
    left: 0;
    text-align: center;
    padding: 16px 0;
    z-index: 2;
  }

  input[type=checkbox]:checked ~ .menu {
    display: block;
  }

  .hamburger {
    display: block;
  }
}
