/* GANTRY5 DEVELOPMENT MODE ENABLED.
 *
 * WARNING: This file is automatically generated by Gantry5. Any modifications to this file will be lost!
 *
 * For more information on modifying CSS, please read:
 *
 * http://docs.gantry.org/gantry5/configure/styles
 * http://docs.gantry.org/gantry5/tutorials/adding-a-custom-style-sheet
 */

@charset "UTF-8";
.g-gridcard-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.g-gridcard-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}
.g-gridcard-item:hover {
  transform: translateY(-4px);
}
.g-gridcard-image img {
  width: 100%;
  height: auto;
  display: block;
}
.g-gridcard-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.g-gridcard-subtitle {
  font-size: 0.8rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.g-gridcard-title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.3;
  color: #222;
}
.g-gridcard-desc {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
.g-gridcard-button {
  align-self: flex-start;
  margin-top: auto;
  font-weight: bold;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-radius: 3px;
  background: #b21b1b;
  color: #fff;
}
.g-gridcard-button:hover {
  background: #8e1212;
}
/* ------------------------------------ */
/*         About Us Section Styles      */
/* ------------------------------------ */
.aboutus-section {
  text-align: center;
  padding: 4rem 2rem;
  background: #f8f8f8;
}
.aboutus-section .headline {
  font-size: 2.5rem;
  font-weight: 700;
}
.aboutus-section .subheading {
  font-size: 1.2rem;
  color: #777;
  margin-top: 0.5rem;
}
.aboutus-founder {
  max-width: 800px;
  margin: 2rem auto;
  font-size: 1.1rem;
  line-height: 1.8;
}
.aboutus-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
}
.aboutus-grid .mission-card {
  flex: 1 1 250px;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.aboutus-grid .mission-card:hover {
  transform: translateY(-5px);
}
.aboutus-cta {
  text-align: center;
  padding: 3rem 1rem;
}
.aboutus-cta .cta-button {
  display: inline-block;
  background: transparent;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}
.aboutus-cta .cta-button:hover {
  background: #444;
}
/* Make About Us paragraph wider and centered */
.g-container .item-page {
  max-width: 2000px;
  /* wider max width */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  /* some side padding for small screens */
  padding-right: 1rem;
  font-size: 1.15rem;
  /* slightly bigger font */
  line-height: 1.8;
}
.fullwidth-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem;
  background: transparent;
}
.aboutus-section {
  background: transparent !important;
}
.aboutus-founder {
  max-width: 1400px;
  margin: 2rem auto;
  padding: 1rem;
  font-size: 1.3rem;
  line-height: 1.8;
  color: #222;
  text-align: justify;
}
/* Entire header background including logo and menu */
#g-top, #g-navigation {
  background-color: #0e773d !important;
}
/* Footer background */
#g-footer {
  background-color: #0e773d !important;
}
/* Text and links in header/footer */
#g-top a, #g-navigation a, #g-header a, #g-footer a, #g-top, #g-navigation, #g-header, #g-footer {
  color: #ffffff !important;
}
.g-main-nav .g-dropdown {
  color: #000000 !important;
}
.g-main-nav .g-dropdown a, .g-main-nav .g-dropdown a:link, .g-main-nav .g-dropdown a:visited {
  color: #000000 !important;
}
.g-main-nav .g-dropdown {
  background-color: #ffffff !important;
  /* Or try #f9f9f9 */
}
/* Force submenu links to be black on white background */
#g-navigation .g-main-nav .g-dropdown, #g-navigation .g-main-nav .g-dropdown a, #g-navigation .g-main-nav .g-dropdown a:link, #g-navigation .g-main-nav .g-dropdown a:visited {
  background-color: #ffffff !important;
  color: #000000 !important;
}
/* Optional: on hover, keep color black */
#g-navigation .g-main-nav .g-dropdown a:hover {
  color: #000000 !important;
  background-color: #f2f2f2 !important;
}
/* GRID CONTENT CONTAINER */
.g-gridcontent-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding: 20px 0;
}
.g-gridcontent-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.g-gridcontent-item:hover {
  transform: translateY(-5px);
}
/* IMAGE STYLING */
.g-gridcontent-item-img img {
  width: 100%;
  height: auto;
  display: block;
}
/* CONTENT BLOCK */
.g-gridcontent-item-content {
  padding: 20px;
}
.g-gridcontent-item-text1 {
  display: block;
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.g-gridcontent-item-text2 {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.g-gridcontent-item-desc {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 15px;
}
/* BUTTON STYLE */
.button-2 {
  display: inline-block;
  padding: 10px 18px;
  background-color: #c6a36b;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}
.button-2:hover {
  background-color: #a8844e;
}
.page-header h1 {
  font-size: 1.7rem;
  /* Try 2.5rem or 36px */
  font-weight: 700;
  line-height: 1.3;
  text-transform: none;
  /* font-family: 'Archivo', sans-serif; /* Match your site’s title font */
}
#g-navigation {
  background: #234334;
  /* background: linear-gradient(to bottom, #043d2c, #043d2c) !important; */
}
#g-navigation {
  position: sticky;
  top: 0;
  z-index: 9999;
  /* keeps it above content */
  background: #fff;
  /* or your nav background */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  /* subtle shadow when scrolling */
}
/* Sticky/fixed menu */
#g-navigation {
  position: fixed !important;
  /* always on top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background-color: #234334 !important;
  /* menu background */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
/* Optional: add space so content doesn't hide under menu */
body {
  padding-top: 70px;
  /* adjust to your menu height */
}
/* Optimized vertical sidebar logo */
#left-logo {
  position: fixed;
  top: 0;
  left: 0;
  width: 70px;
  height: 100vh;
  background: none !important;
  display: block;
  /* ← change from flex to block */
  padding: 0;
  margin: 0;
  z-index: 9999;
  pointer-events: auto;
  opacity: 1;
  transform: none;
}
#left-logo img {
  width: 100%;
  /* ← full width, no gap */
  height: auto;
  max-height: 100vh;
  /* full height support */
  object-fit: contain;
  display: block;
  margin: 0;
  /* no spacing */
  padding: 0;
  /* no spacing */
}
/* Visually hide but keep text for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Apply left margin only when logo is shown */
body.show-left-logo {
  margin-left: 150px;
}
/* On mobile, remove margin and hide logo */
@media (max-width: 768px) {
  body.show-left-logo {
    margin-left: 0;
  }
}
.g-menu-item-children > .g-menu-item-container::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #f7c341;
  border-bottom: 2px solid #f7c341;
  transform: rotate(135deg);
  /* This makes it point downward */
  margin-left: 6px;
  transition: transform 0.2s ease;
}
.g-menu-item-children > .g-menu-item-container:hover::after {
  transform: rotate(135deg) translateY(2px);
}
/* Grid layout */
.mod-articlesnews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 5px 0;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: #555;
}
/* Article card */
.mod-articlesnews__item {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.mod-articlesnews__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}
/* Headline first */
.mod-articlesnews__item h4 {
  font-size: 13px;
  font-weight: 300;
  color: #222;
  margin: 0 0 10px;
  transition: color 0.3s ease;
}
.mod-articlesnews__item h4 a {
  color: inherit;
  text-decoration: none;
}
.mod-articlesnews__item h4 a:hover {
  color: #f7c341;
  text-decoration: underline;
}
/* Image second */
.mod-articlesnews__item img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 12px;
}
/* Description */
.mod-articlesnews__item .mod-articles-introtext {
  font-size: 12px;
  font-weight: normal;
  color: #777;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}
/* Read More button */
.mod-articlesnews__item .readmore a {
  display: inline-block;
  padding: 8px 18px;
  background-color: #f7c341;
  color: #000;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.mod-articlesnews__item .readmore a:hover {
  background-color: #e0b62e;
  transform: translateY(-2px);
}
.g-main-nav .g-toplevel > li > .g-menu-item-container .g-menu-parent-indicator:after {
  content: "▼";
  opacity: 1;
  text-align: center;
}
.g-main-nav .g-toplevel > li.g-parent.g-selected > .g-menu-item-container .g-menu-parent-indicator:after {
  content: "▼";
}
html {
  scroll-behavior: smooth;
}
#g-container-main {
  background: rgba(255, 255, 255, 0);
  color: #043d2c;
}
p.readmore .btn, .content_vote .btn, .contact .form-actions .btn, .login .btn, .logout .btn, .registration .btn, .profile-edit .btn, .remind .btn, .reset .btn, .profile .btn, .search #searchForm .btn, .finder #finder-search .btn, .print-mode #pop-print.btn, .edit.item-page .btn-toolbar .btn, .pager.pagenav a, .moduletable #login-form .control-group .btn, #searchForm .btn, #finder-search .btn, .btn {
  background: #043d2c;
}
dl.article-info dd {
  display: inline-block;
  padding-right: 1.5rem;
  color: #043d2c;
  font-size: 1.2rem;
  line-height: 2;
}
div.mod-languages ul {
  margin: inherit;
  padding: 0;
  list-style: none;
  text-align: center;
  transform: scale(1.7);
  /* 1.3 = 130% */
}
.fa-bars:before, .fa-navicon:before {
  content: "";
  position: fixed;
  top: 100px;
  /*    right: 15px;
    z-index: 9999; */
}
.g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content {
  word-break: normal;
  line-height: normal;
  text-transform: uppercase;
  /* smooth transition for transform, color, background */
  transition: transform 0.3s ease, background-color 0.3s ease;
  display: inline-block;
  will-change: transform;
  padding: 6px 10px;
  border-radius: 4px;
  color: #ffffff;
  /* normal color */
}
/* Smooth non-blinking hover menu */
.g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content {
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}
.g-main-nav .g-toplevel > li > .g-menu-item-container > .g-menu-item-content:hover {
  transform: scale(1.3);
  background: #f7f89b;
  color: #000;
  text-shadow: 0 0 6px #f7c341;
}
/* keyframes for flicker */
@keyframes ledFlicker {
  0% {
    opacity: 1;
    text-shadow: 0 0 3px #f7c341, 0 0 6px #f7c341;
  }
  50% {
    opacity: 0.5;
    text-shadow: 0 0 1px #f7c341, 0 0 2px #f7c341;
  }
  100% {
    opacity: 1;
    text-shadow: 0 0 3px #f7c341, 0 0 6px #f7c341;
  }
}
#g-navigation .g-main-nav .g-dropdown a {
  background-color: #ffffff !important;
  color: #043d2c !important;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  /* needed for transform */
}
#g-navigation .g-main-nav .g-dropdown a:hover {
  background-color: #043d2c !important;
  color: #ffffff !important;
  transform: scale(1.5);
  /* zoom slightly */
  /* animation: wobble 0.4s ease; */
}
/* Wobble animation 
@keyframes wobble {
  0%   { transform: scale(1.05) rotate(0deg); }
  25%  { transform: scale(1.07) rotate(1deg); }
  50%  { transform: scale(1.05) rotate(-1deg); }
  75%  { transform: scale(1.07) rotate(1deg); }
  100% { transform: scale(1.05) rotate(0deg); }
}*/
/* ===== Figma-Style Navbar for second.ba ===== */
/* Mobile menu styling */
@media (max-width: 992px) {
  #g-navigation {
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    padding: 10px 15px !important;
  }
  .g-main-nav-toggle {
    background: #ffffff !important;
    border-radius: 12px;
    padding: 10px 14px !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07);
  }
  .g-mobilemenu-container {
    background: #fff !important;
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  .g-toplevel > li > a {
    padding: 16px !important;
    border-radius: 14px;
    font-size: 17px;
  }
}
/* Language switcher – reduce flag size */
.mod-languages img, .lang-inline img {
  width: 20px !important;
  height: auto !important;
}
/* FIX: remove language switcher scaling */
#g-navigation div.mod-languages ul {
  transform: scale(1) !important;
}
/*# sourceMappingURL=custom_55.css.map */