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

:root {
  --yellow: #f3efb2;
  --green: #e1a91c;
  --black: #000;
  --white: #fff;
}

body {
  font-family: "Mulish", Arial, Helvetica, sans-serif;
}
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}


@media (max-width: 1000px) {
  .sticky-header {
  position: static;
  top: auto;
  z-index: 1000;
}
} 






/* =========================
   TOP BAR
========================= */
.top-bar {
  background: var(--yellow);
  height: 36px;
  padding: 4px 0;
}

.top-bar .inner {
  max-width: 1200px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.language {
  font-size: 13px;
  color: #000;
  white-space: nowrap;
  margin-right: auto;
}

.search-form {
  display: flex;
  align-items: center;
}

.search-form input {
  height: 20px;
  padding: 2px 6px;
  border: 1px solid #000;
  font-size: 12px;
}

.search-form button {
  width: 22px;
  height: 22px;
  background: #000;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* =========================
   HAMBURGER
========================= */
/* Hamburger → X */
.hamburger {
  width: 26px;
  height: 18px;
  position: relative;
  cursor: pointer;
  display: none;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000000;
  transition: transform .3s ease, opacity .3s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

/* ACTIVE = X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 8px;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 8px;
}

/* =========================
   STICKY HAMBURGER (MOBILE)
========================= */
@media (max-width: 1000px) {
  .hamburger {
    position: fixed !important;
    top: 12px;
    right: 15px;
    z-index: 9999;
    display: flex !important;
  }
}



/* =========================
   MAIN HEADER (GREEN)
========================= */
.header-main {
  background: var(--green);
  height: 97.984px;
  /*background-image: url("/web-assets/web_backgrounds/nav-bar_element_art.webp");*/
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /* fills entire 1024×162 area */
}

/* =========================
   COOKIE BANNER (global)
========================= */
.cookie-overlay {
  position: fixed;
  inset: auto;
  left: 40px;
  bottom: 40px;
  background: none;
  backdrop-filter: blur(4px);
  display: flex;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 6000;
}

.cookie-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cookie-modal {
  background: var(--green);
  width: 90%;
  max-width: 480px;
  padding: 30px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  text-align: center;
  opacity: 0.9;
  border: solid 1px var(--black);
}

.cookie-overlay.active .cookie-modal {
  transform: translateY(0);
}

.cookie-modal h2 {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 15px;
}

.cookie-modal p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--black);
}

.cookie-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.cookie-actions button {
  padding: 8px 16px;
  border: none;
  cursor: pointer;
}

.cookie-actions .cookie-accept {
  background: var(--black);
  color: var(--white);
}

.cookie-actions .cookie-reject {
  background: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.header-main .inner {
  max-width: 1200px;
  height: 100%;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
}

/* Default size */
.logo img {
  height: 60px;
  transition: height 0.3s ease;
}

/* Text image (logotype) if needed separately */
.logo span img {
  height: 64px;
  transition: height 0.3s ease;
}

/* Shrunk state */
.logo.shrink img {
  height: 48px;
}

.logo.shrink span img {
  height: 34px;
}

/* Responsive */
@media (max-width: 1200px) {
  .logo img {
    height: 50px;
  }

  .logo.shrink img {
    height: 36px;
  }
}

.social {
  display: flex;
  gap: 15px;
}

.social svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  cursor: pointer;
}

/* =========================
   SOCIAL MEDIA ICONS
========================= */

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: transparent; /* example green background */
}

.social-icons a img {
  width: 22px;
  height: 22px;
  cursor: pointer;
  filter: brightness(0) invert(1); /* solid white */
  transition: transform 0.2s ease, filter 0.2s ease, drop-shadow 0.2s ease;
}

.social-icons a img:hover {
  transform: translateY(-5px);
  filter: brightness(0) invert(1) drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}

/* =========================
   NAVBAR
========================= */
.navbar {
  background: #fff;
  height: 40px;
}

.navbar .inner {
  max-width: 1200px;
  height: 100%;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar a {
  color: #000;
  text-decoration: none;
  font-size: 13px;
  padding: 0 8px;
  white-space: nowrap;
}

.navbar a:not(:last-child)::after {
  content: "|";
  padding-left: 10px;
}

/* =========================
   UNDER NAV
========================= */
.under-nav {
  height: 161.797px;
  background-color: var(--green);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; /* fills entire 1024×162 area */
}

.under-nav .inner {
  max-width: 1200px;
  height: 100%;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.under-nav .text {
  color: #fff;
  padding: 0 0 0 20px;
}

.under-nav h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.under-nav p {
  font-size: 16px;
}

.under-nav .art {
  height: 100%;
  display: flex;
  align-items: center;
}

.under-nav .art img {
  height: 80%;
}

/* ≤980px */
@media (max-width: 980px) {
  .under-nav {
    height: 104.188px;
  }

  .under-nav .inner {
    padding: 0;
  }

  .under-nav .art {display: none;}

}

/* =========================
   STRIP SHARE
========================= */
.strip-share {
  background: #fff;
  height: 75.39px;
  border-bottom: 1px solid #ddd;
}

.strip-path a {
  color: var(--green);
  text-decoration: none;
}


.strip-share .inner {
  max-width: 1200px;
  height: 100%;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.strip-path {
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
}


.strip-path a:visited {
  color: var(--green); /* or any color you want */
  text-decoration: none;
}

.strip-path a:hover {
  text-decoration: none; /* optional */
  color:#e18c1c;
}


.strip-social {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  font-weight: 700;
  color: var(--green);
}


/* STRIP SHARE — SOCIAL ICONS (SOLID YELLOW, SAME BEHAVIOR AS HEADER) */
.strip-share .strip-social-icons {
  display: flex;
  gap: 12px;
}

.strip-share .strip-social-icons svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.strip-share .strip-social-icons svg:hover {
  transform: translateY(-5px);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.4));
}


@media (max-width: 980px) {
  .strip-share {
    height: 98.391px;
  }

  .strip-share .inner {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    text-align: center;
  }
}


/* =========================
   BOX ELEMENT
========================= */
.box-element {
  background: var(--yellow);
  padding: 70px 15px 80px;
}

.box-element .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.box-item {position: relative;
}


.box-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(230, 227, 170);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.box-item:hover::after {
  opacity: 0.2; /* subtle, elegant */
}


.box-item h3 {
  font-size: 19px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.box-item a {
  text-decoration: none;
  color: var(--black);
  font-size: 19px;
}

.box-item img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 15px;
}

/* =========================
   BOX ELEMENT – MOBILE ALTERNATE SCALE
========================= */
@media (max-width: 760px) {

  .box-element .box-item {
    transition: transform 0.2s ease;
  }

  /* 1st and 3rd items */
  .box-element .box-item:nth-child(odd) {
    transform: scale(0.9);
  }

  /* 2nd and 4th items stay normal */
  .box-element .box-item:nth-child(even) {
    transform: scale(1);
  }
}


/* =========================
   (FIX RATIO)
========================= */

.box-item .media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;   /* ← adjust if you want another ratio */
  overflow: hidden;
  margin-bottom: 15px;
}

.box-item .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ≤1000px */
@media (max-width: 1000px) {
  .box-element .inner {
    gap: 25px;
  }

}

/* ≤760px (stack) */
@media (max-width: 760px) {
  .box-element .inner {
    grid-template-columns: 1fr;
    gap: 45px;
  }
}

/* =========================
   FOOTER
========================= */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 20px 15px;
  font-size: 12px;
}

.footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.footer a {
  color: var(--white);
  text-decoration: none;
  margin: 0 6px;
  white-space: nowrap;
}

.footer .brand {
  opacity: 0.7;
}

/* ≤760px */
@media (max-width: 760px) {
  .footer .inner {
    flex-direction: column;
    text-align: center;
  }
}




/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 75vw;
  height: 100vh;
  background: #fff;
  z-index: 3000;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-top: 80px; /* space below header */
  border-right: 1px solid #000;
}

.mobile-menu a {
  padding: 15px 20px;
  font-size: 16px;
  color: #000;
  text-decoration: none;
  border-bottom: 1px solid #ddd;
}

.mobile-menu.active {
  transform: translateX(0);
}


/* MENU LOGO */

.mobile-menu-logo {
  text-align: center;
  margin-bottom: 25px;
}

.mobile-menu-logo img {
  max-width: 160px;
  height: auto;
}

/* =========================
   BREAKPOINTS
========================= */

/* ≤1200px */
@media (max-width: 1200px) {
  .header-main {
    height: 63.563px;
  }

  .logo span {
    font-size: 28px;
  }
}

/* ≤1000px */
@media (max-width: 1000px) {
  .navbar {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .top-bar .inner {
    justify-content: flex-end;
  }

}

/* ≤980px */
@media (max-width: 980px) {
  .top-bar {
    /* height: 19.186px; */
    padding: 7.5px 0 7.5px 0;
  }

  .search-form {
    display: none;
  }

  .top-bar .inner {
    justify-content: flex-end;
    gap: 10px;
  }

  .header-main {
    height: 152.984px;
  }

  .header-main .inner {
    flex-direction: column;
    justify-content: center;
    gap: 15px;
  }
}

/* ≤760px */
@media (max-width: 760px) {
  .top-bar {
    height: 55px;
    padding: 15px 0 10px 0;
  }
}

/* =========================
   LEGAL PAGE STYLING
========================= */

.legal {
  background: #fff;
  padding: 50px 15px 70px;
}

.legal > div {
  max-width: 900px;
  margin: 0 auto;
  font-family: "Source Sans 3", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #111;
}

.legal p {
  margin-bottom: 18px;
}

.legal strong {
  font-weight: 600;
}

.legal h3 {
  margin: 35px 0 15px;
  font-size: 15px;
  font-weight: 700;
}

.legal h3 strong {
  font-weight: 700;
}
/* Author link styling */
.author-link {
  text-decoration: none !important;
  font-weight: 700;
}