:root {
  --primary-color: #5AE98B;
  /* --primary-color: rgb(0,255,0); */
  --secondary-color: rgba(90, 233, 139, .8);
  --highlight-color: #518B66;
  --dark-color: #222222;
  --light-color: white;
  --link-font: 14px;
  --main-background: #white;
  --dark-background: #222222;
  --nav-background: rgba(253, 253, 253, 0.98);
  --secondary-background: #F2F2F2;
}

::selection {
  background: var(--primary-color);
  /* Background color of the selection */
  color: var(--light-color);
  /* Color of the text during selection */
}

/* For Mozilla Firefox */
::-moz-selection {
  background: var(--primary-color);
  color: var(--light-color);
}

/* Basic Reset */
body,
h1,
h2,
h3,
p,
ul,
li,
nav,
div,
button {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Styling the body */
body {
  font-family: "Inter", sans-serif;
  background-color: #ffffff;
  /* Adjust the background color as needed */
  /* color: white; */
  font-size: 16px;
  /* Base font size */
  /* zoom: 0.9; */

}

body.zoom {
  zoom: 0.9;
}


:root {
  --global-alert-h: 0px;
}

:root { --global-alert-h: 44px; } /* adjust to match your alert */
.site-header.no-alert { --global-alert-h: 0px; }
.site-header.has-alert .navbar { top: var(--global-alert-h); }
main { padding-top: var(--header-offset, 0px); }


#site-navbar {
  top: var(--global-alert-h, 0px);
}




/* Alert bar */
.global-alert {
  background: #111;
  color: #fff;
  /* position: sticky; */
  top: 0;
  z-index: 10;
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: 14px;
  min-height: 40px;
}

.global-alert .container {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  padding-right: 40px;

}

.global-alert a {
  color: #fff;
  text-decoration: underline;
}

/* If your navbar is fixed/sticky, offset it by the alert height */
.site-header.has-alert .navbar {
  top: var(--global-alert-h);
}

/* When no alert, ensure it sits flush */
.site-header.no-alert .navbar {
  top: 0;
}

/* Close button */
.alert-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  margin-left: 12px;
}

.alert-close:hover {
  opacity: 0.7;
}

.alert-close {
  position: absolute;
  right: 8px;
  top: 16px;
  transform: translateY(-50%);
}

html.alert-dismissed #global-alert {
  display: none !important;
}


h1 {
  font-weight: 700;
  /* Bold weight for h1 headers */
}

strong {
  font-weight: 700;
  /* Bold weight for strong tags */
}

p {
  font-weight: 400;
  /* Regular weight for paragraphs */
  margin: 15px 0;
  line-height: 1.6;
  color: #8D8D8D;
  font-size: 16px;
}

.medium-text {
  font-weight: 500;
  /* Medium weight for text you want to stand out a bit */
}

img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

/*  */

.selected {
  color: var(--primary-color);
}

.highlight {
  color: var(--primary-color);
}

button.carousel-link {
  all: unset;
  /* reset browser button styles */
  display: inline-block;
  cursor: pointer;
  padding: 6px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  background: none;
  color: inherit;
  font: inherit;
}

button.carousel-link.active {
  border: 1px solid #2a7d2e;
  /* your green or whatever */
  background: #f0fef0;
  color: #2a7d2e;
}


/* animations */

.fade-in-viewport {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 0.6s ease-out;
  visibility: hidden;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.menu-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  border-bottom: 2px solid #2dde88;
  /* match green from image */
  padding-bottom: 2px;
  transition: all 0.2s ease-in-out;
  margin: 30px auto;
}

.menu-link .arrow {
  font-size: 1.1em;
  transition: transform 0.2s ease;
}

.menu-link:hover {
  color: #111;
  border-bottom-color: #1fc376;
  /* slightly darker green on hover */
}

.menu-link:hover .arrow {
  transform: translateX(3px);
}


/* Main Container */
.container {
  width: 100%;
  max-width: 1512px;
  /* This is the maximum width your content will stretch to. Adjust as needed. */
  margin: 0 auto;
  /* This centers your container in the middle of the viewport. */
  padding: 0 25px;
  /* This adds some padding on the sides. */
  overflow: hidden;
}

/* buttons */

.nav-button {
  display: block;
  background: var(--primary-color);
  border: 0;
  font-weight: 700;
  color: var(--light-color);
  padding: 8px 12px;
  border-radius: 10px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  /* Smooth transition for transform and background color */

  cursor: pointer;
  /* Change cursor to pointer to indicate button is clickable */
  outline: none;
  /* Remove outline to keep the design clean */
}

.primary-button {
  display: inline-block;
  background: var(--primary-color);
  border: 0;
  font-weight: 700;
  color: var(--light-color);
  padding: 15px 20px;
  border-radius: 2px;
  margin: 2px 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
  /* Smooth transition for transform and background color */
  cursor: pointer;
  /* Change cursor to pointer to indicate button is clickable */
  outline: none;
  /* Remove outline to keep the design clean */
  text-decoration: none;

}

.primary-button a {
  text-decoration: none;
}



.primary-button:hover,
.nav-button:hover {
  transform: scale(1.05);
  /* Slightly enlarge the button */
  background-color: var(--secondary-color);
  /* Shift to a secondary color on hover */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  /* Add a subtle shadow for depth */
  cursor: pointer;

}


/* sections */
section {
  margin: 100px 0;
}

section:first-child {
  margin: 0;
}

.section-title {
  padding: 75px 0;
  font-weight: 400;
  font-size: 48px;
  text-align: center;
  text-transform: capitalize;

}

.section-para {
  text-align: center;
  max-width: 550px;
  margin: 0 auto;
  font-size: 1.3em;
  margin-bottom: 50px;
}


@media (max-width: 800px) {
  .section-title {
    padding: 35px 0;
  }

  .section-para {
    padding: 0 25px;
  }
}