/*--------------------------------------
  VARIABLES & BASE
---------------------------------------*/
:root {
  --header-height: 80px;

  /* brand colors */
  --electric-Orange: #be7436;     /* original orange */
  --brand-color: var(--electric-Orange);
  --accent-color: var(--brand-color);

  --btn-primary-bg: var(--brand-color);
  --btn-primary-text: #fff;
  --btn-secondary-text: #020402; /* dark text */
  --btn-secondary-border: #020402;
  --bg-light: #f9f9f9;
}

/* Base resets */
* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  color: #222;
  -webkit-font-smoothing: antialiased;
}

/* Ensure skip link becomes visible on focus */
.sr-only-focusable.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 2000;
}
.sr-only-focusable.skip-link:focus {
  left: 16px;
  top: 10px;
  width: auto;
  height: auto;
  background: #fff;
  padding: .5rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

/*--------------------------------------
  HEADER / NAV
---------------------------------------*/
#mainNav {
  height: var(--header-height);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  background: #fff;
  z-index: 1030;
}
#mainNav .navbar-brand img {
  height: calc(var(--header-height) - 22px);
  max-height: 56px;
  width: auto;
  display: block;
}

/* Nav link decoration */
.nav-link.option-link-decoration-border-bottom-static {
  padding-bottom: .25rem;
  border-bottom: 2px solid transparent;
}
.nav-link.active.option-link-decoration-border-bottom-static {
  color: var(--brand-color) !important;
  border-bottom-color: var(--brand-color);
}

/*--------------------------------------
  BUTTONS
---------------------------------------*/
.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border: 1px solid var(--btn-primary-bg);
  text-transform: uppercase;
  font-weight: 600;
  transition: transform .15s ease, box-shadow .15s ease, background-color .12s ease;
}
.btn-primary:hover,
.btn-primary:focus {
  background-color: #9b5a2b;  /* slightly darker orange */
  color: var(--btn-primary-text);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(155,90,43,0.12);
}

.btn-secondary {
  background-color: transparent;
  color: var(--btn-secondary-text);
  border: 1px solid var(--btn-secondary-border);
  text-transform: uppercase;
  font-weight: 600;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  border-color: var(--btn-primary-bg);
}

/*--------------------------------------
  HERO
---------------------------------------*/
.sb-hero-carousel-section {
  position: relative;
  overflow: hidden;
}
.hero-slider,
.hero-slide {
  height: calc(100vh - var(--header-height));
  min-height: 360px;
}
.hero-slide {
  background-size: cover;
  background-position: center;
}

/* hero overlay content sits below the fixed header */
.hero-content {
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  height: calc(100% - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding: 1rem;
}

/* hero card aesthetic */
.hero-card {
  background: rgba(0,0,0,0.55);
  padding: 2rem;
  border-radius: 12px;
  max-width: 880px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.28);
}
.hero-card h1, .hero-card p { color: #fff; }
/* ensure sb-title keeps brand color even inside hero-card */
.hero-card .sb-title {
  color: var(--brand-color) !important;
}

/* small-screen hero tweaks */
@media (max-width: 767.98px) {
  :root { --header-height: 68px; }
  #mainNav .navbar-brand img { height: calc(var(--header-height) - 18px); max-height:48px; }
  .hero-card { padding: 1.25rem; max-width: 92%; }
  .navbar-collapse { background: #fff; padding: .75rem 1rem; }
}

/*--------------------------------------
  SECTIONS & TYPOGRAPHY
---------------------------------------*/
section[id] { padding: 4rem 0; }
.sb-section { padding: 5.25rem 0; background: linear-gradient(180deg,#fff 0%, #fbfaf8 100%); }

.sb-title {
  color: var(--brand-color);
  font-weight: 700;
}

/* small underline accent under titles */
.sb-section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}
.sb-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: var(--brand-color);
  border-radius: 3px;
}

/*--------------------------------------
  CARD & IMAGE STYLE (support section)
---------------------------------------*/
.sb-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .45s cubic-bezier(.2,.9,.2,1), box-shadow .35s ease;
  box-shadow: 0 8px 20px rgba(11,43,24,0.06);
}
.sb-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(11,43,24,0.12);
}
.card-img-custom {
  height: 220px;
  object-fit: cover;
  width: 100%;
  display: block;
}

/* subtle card title decoration */
.option-collection-title-decoration-arrow {
  position: relative;
  padding-left: .25rem;
  font-weight: 600;
}

/*--------------------------------------
  ANIMATIONS (reveal + small helpers)
---------------------------------------*/
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-on-scroll,
.animate-fade-in,
.animate-slide-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .65s ease, transform .65s ease;
}
.animate-slide-up.animate-visible,
.animate-on-scroll.animate-visible,
.animate-fade-in.animate-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* helpful delay classes (simple) */
.animate-on-scroll.delay-1, .animate-fade-in.delay-1, .animate-slide-up.delay-1 { transition-delay: .12s; }
.animate-on-scroll.delay-2, .animate-fade-in.delay-2, .animate-slide-up.delay-2 { transition-delay: .24s; }
.animate-on-scroll.delay-3, .animate-fade-in.delay-3, .animate-slide-up.delay-3 { transition-delay: .36s; }

/*--------------------------------------
  FOOTER tweaks
---------------------------------------*/
.option-icons-color-accent .bi { color: var(--brand-color); }
footer {
  background-color: var(--bg-light) !important;
  background-image: none !important;
  padding-top: 3rem;
}

/*--------------------------------------
  SMALL SCREENS
---------------------------------------*/
@media (max-width: 991.98px) {
  :root { --header-height: 72px; }
  .sb-card .card-img-custom { height: 200px; }
}
@media (max-width: 420px) {
  .hero-card h1 { font-size: 1.4rem; }
  .hero-card p { font-size: 0.98rem; }
}

/*--------------------------------------
  Utilities (you had some of these)
---------------------------------------*/
.text-center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* About carousel container */
.about-carousel {
  position: relative;
  border: 3px solid var(--brand-color);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
  border-radius: 18px;
}

/* About images inside carousel */
.about-carousel .about-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-carousel .about-img:hover {
  transform: scale(1.05);
}

/* Slick dots styling (optional) */
.about-carousel .slick-dots {
  bottom: 12px;
}
.about-carousel .slick-dots li button:before {
  font-size: 10px;
  color: var(--brand-color);
  opacity: 0.75;
}
.about-carousel .slick-dots li.slick-active button:before {
  opacity: 1;
  color: var(--brand-color);
}

@media (max-width: 768px) {
  .about-carousel .about-img {
    height: 300px;
  }
}
/* hide slick dots completely */
.hero-slider .slick-dots,
.about-carousel .slick-dots { display: none !important; }

/* ---- Annual report meta / action alignment ---- */
.report-meta {
  display: flex;
  align-items: center;            /* vertical center text + buttons */
  justify-content: space-between; /* left text / right actions */
  gap: 1rem;
  padding: 0.85rem 1.1rem;
}

/* Actions container */
.report-actions {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-left: 0.5rem;
  flex-shrink: 0;                 /* prevent actions from shrinking on small widths */
}

/* Make download button visually stronger and fixed height */
.report-actions .btn.btn-primary {
  background: var(--brand-color);
  border-color: var(--brand-color);
  color: #fff;
  padding: 0.6rem 1.05rem;
  font-weight: 700;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  height: 44px;
}

/* Secondary open button (lighter) */
.report-actions .btn.btn-outline-secondary {
  background: transparent;
  border-radius: 10px;
  padding: 0.45rem 0.9rem;
  height: 40px;
  display: inline-flex;
  align-items: center;
}

/* Ensure button text doesn't wrap */
.report-actions .btn { white-space: nowrap; }

/* If the left block grows tall (long title), keep actions centered to middle */
.report-meta > * { min-width: 0; }

/* Responsive: stack text & actions vertically on narrow screens */
@media (max-width: 768px) {
  .report-meta {
    flex-direction: column;
    align-items: stretch;
    gap: .75rem;
  }
  .report-actions {
    justify-content: flex-start;
    margin-left: 0;
  }
  .report-actions .btn.btn-primary { width: 100%; }
  .report-actions .btn.btn-outline-secondary { width: 100%; }
}
