:root {
  /* Fonts */
  --we-font-body: "Roboto", sans-serif;
  --we-font-heading: "Poppins", sans-serif;
  --we-font-nav: "Poppins", sans-serif;
  --we-header-font: "Poppins", sans-serif;
  
  --we-bg: #ffffff;
  --we-surface: #ffffff;
  --we-surface-2: #e2e8f0;
  /* --we-border: rgba(30, 41, 59, 0.12); */


  /* Header */
  --we-header-bg: #1A0610;
  
  --we-header-text: var(--we-white);
  --we-header-span: var(--we-accent);
  --we-header-border: var(--we-border);
  --we-header-shadow: var(--we-shadow-soft);

  --we-text: #1e293b;
  --we-heading: #0f172a;
  --we-text-muted: #64748b;
  --we-link: var(--we-accent);
  --we-link-hover: color-mix(in srgb, var(--we-accent), black 15%);
  
  --we-accent: #C2185B;
  --we-accent-rgb: 194, 24, 91;
  --we-on-accent: #ffffff;
  
  --we-secondary: #C2185B;
  --we-secondary-rgb: 194, 24, 91;
  --we-on-secondary: #ffffff;
  
  --we-on-dark: #ffffff;
  --we-on-light: #0f172a;

  --we-nav-toggle: var(--we-contrast);
  
  --we-footer-content: var(--we-accent);
  --we-footer-content-rgb: var(--we-accent-rgb);
  --we-footer-legal-bg: var(--we-header-bg);
  --we-footer-legal-rgb: var(--we-accent-rgb);
  
  /* --we-border: rgba(30, 41, 59, 0.12); */
  --we-shadow-soft: 0 2px 20px rgba(30, 41, 59, 0.10);

  /* Navigation */
  --we-nav-text: var(--we-white);
  --we-nav-hover: var(--we-white);
  --we-nav-hover-underline: var(--we-accent);
  
  --we-nav-mobile-bg: var(--we-accent);
  --we-nav-dropdown-bg: var(--we-accent);
  --we-nav-dropdown-bg-hover: var(--we-white);
  --we-nav-dropdown-text: var(--we-white);
  --we-nav-dropdown-hover: var(--we-black);
  
  --we-white: #ffffff;
  --we-white-rgb: 255, 255, 255;
  --we-black: #000000;
  --we-black-rgb: 0, 0, 0;
  --we-gray: #808080;
  --we-gray-rgb: 128, 128, 128;

  /* Radius */
  --we-radius-sm: 8px;
  --we-radius-md: 14px;
  --we-radius-lg: 22px;

  /* Shadow */
  --we-shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.06);
  --we-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.10);

  /* Spacing */
  --we-space-1: 0.25rem;
  --we-space-2: 0.5rem;
  --we-space-3: 0.75rem;
  --we-space-4: 1rem;
  --we-space-5: 1.5rem;
  --we-space-6: 2rem;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/* Temporary CSS for testing div visibility 
div {
  outline: 1px dashed red;
  background-color: rgba(255, 0, 0, 0.1); 
  color: black;

}
*/

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}
/*DEV*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: var(--we-font-body);
    color: var(--we-text);
    background-color: var(--we-bg);
    position: relative; /* Required for pseudo-element positioning */
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    min-height: 100vh; /* Ensure body covers at least the full viewport height */
    overflow: auto; /* Allow scrolling */
}
body::before {
    content: ""; /* Required for pseudo-element */
    background-size: cover;
    background-repeat: no-repeat; /* Changed to no-repeat for better effect */
    background-position: center top;
    background-attachment: fixed;
    position: fixed; /* Use fixed instead of absolute to avoid gaps */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place it behind the content */
}

#main {
  margin-top: 0px;
}
.clear {
  margin-top: 20px;
  padding: 20px;
}

a {
  color: var(--we-link);
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  color: var(--we-link-hover);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--we-font-heading);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--we-contrast);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--we-accent);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 20px;
  scroll-margin-top: 72px;
  overflow: clip;
}

.section-header {
  text-align: center;
  margin: 20px;
}

.section-header h2 {
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 300;
  margin-bottom: 20px;
  color: var(--we-heading);
}

.section-header h3 {
  color: var(--we-heading);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-header p {
  margin: 0 auto;
  color: var(--we-text);
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: var(--we-accent);
  color: var(--we-on-accent);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--we-on-accent);
  line-height: 0;
}

.scroll-top:hover {
  background: rgba(var(--we-accent-rgb), 0.85);
  color: var(--we-on-accent);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
:root {
  --header-height: 80px;
}

body {
  padding-top: var(--header-height);
}

#header {
  height: var(--header-height);
  padding: 0;
  display: flex;
  align-items: center;
  z-index: 997;
  background: var(--we-header-bg);
  transition: all 0.5s;
}

#header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

.header {
  padding: 0;
  box-shadow: var(--we-header-shadow);
}

.header.sticked {
  background: var(--we-header-bg);
  box-shadow: var(--we-header-shadow);
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
  margin-bottom: 5px;
}

.header .logo h1 {
  color: var(--we-header-text);
  font-family: var(--we-header-font);
  margin: 0;
  /* text-transform: uppercase; */
  font-weight: 600;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.1);
  max-width: 600px;
  white-space: nowrap;
  overflow: hidden; 
  text-overflow: ellipsis; 
  font-size: clamp(1.5rem, 3vw, 2.5rem); /* Adjust font size dynamically */
  display: inline-block; /* Keep the text inline */
}

.header .logo h1 span {
  color: var(--we-header-span);
  /* Inherit the font size from h1 or adjust separately if needed */
}

.header .logo h2 {
  color: var(--we-header-text);
  font-family: var(--we-header-font);
  margin: 0;
  /* text-transform: uppercase; */
  font-weight: 600;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.1);
  max-width: 600px;
  white-space: nowrap;
  overflow: hidden; 
  text-overflow: ellipsis; 
  font-size: clamp(1.5rem, 3vw, 2.5rem); /* Adjust font size dynamically */
  display: inline-block; /* Keep the text inline */
}

.header .logo h2 span {
  color: var(--we-header-span);
  /* Inherit the font size from h1 or adjust separately if needed */
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  color: var(--we-on-accent);
  background: var(--we-accent);
  padding: 8px 23px;
  border-radius: 4px;
  transition: 0.3s;
  font-family: var(--we-font-nav);
}

.header .:hover,
.header .btn-getstarted:focus:hover {
  color: var(--we-on-accent);
  background: rgba(var(--we-accent-rgb), 0.85);
}

@media (max-width: 1279px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu > ul > li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu > ul > li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: color-mix(in srgb, var(--we-nav-text), transparent 20%);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--we-font-nav);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu > ul > li > a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -27px;
    left: 0;
	color: var(--we-nav-text);
    background-color: var(--we-nav-hover-underline);
    visibility: hidden;
    width: 0;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover > a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--we-nav-text);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--we-nav-dropdown-bg);
	color: var(--we-nav-text);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    border: 1px solid color-mix(in srgb, var(--we-on-accent), transparent 85%);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--we-nav-dropdown-text);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--we-nav-dropdown-hover);
	background: var(--we-nav-dropdown-bg-hover);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--we-nav-text);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--we-nav-mobile-bg);
    border: 1px solid color-mix(in srgb, var(--we-text), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--we-nav-dropdown-text);
    padding: 10px 20px;
    font-family: var(--we-font-nav);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--we-accent), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--we-accent);
    color: var(--we-on-accent);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--we-nav-dropdown-hover);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--we-accent);
    color: var(--we-on-accent);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--we-nav-dropdown-bg);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 25px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Carousel Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  min-height: 80vh;
  background-size: cover;
  background-position: center;
  padding: 60px 0;
  margin: 0;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}
.hero ul li{
	display: inline-block;
}

.hero .carousel-item {
  overflow: hidden;
}

@media (max-width: 640px) {
  .hero .container {
    padding: 0 60px;
  }
}

.hero h1 {
  color: rgba(var(--we-white-rgb), 1); 
  /*color: var(--we-white);*/
  font-family: var(--we-font-heading);
  font-size: clamp(28px, 5vw, 60px);
  font-weight:200;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
}
.hero h1 span {
  color: var(--we-accent);
}
.hero h2 {
  color: rgba(var(--we-white-rgb), 1);
  font-family: var(--we-font-heading);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 300;
  line-height: 44px;
  margin-bottom: 20px;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
}
.hero h3 {
  color: rgba(var(--we-white-rgb), 1); 
  animation: fadeInDown 1s both 0.4s;
  font-family: var(--we-font-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
}
.hero h5 {
  margin:16px 0;
  color: var(--we-white);
  font-family: var(--we-font-heading);
  font-size: 16px;
  line-height: 34px;
  font-weight: 400;
}
.hero p {
  color: rgba(var(--we-white-rgb), 1);
  animation: fadeInDown 1s both 0.4s;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
}

.hero .img {
  margin-bottom: 40px;
  animation: fadeInDownLite 1s both;
}

/* Base hero button */
.hero .btn-hero {
  min-width: 170px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 2px solid transparent;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  text-shadow: none;
  transition: all 0.2s ease;
}

.hero .btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.45);
}

/* Main CTA */
.hero .btn-hero--accent {
  background: var(--we-accent);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.hero .btn-hero--accent:hover {
  background: var(--we-accent-hover, var(--we-accent));
  color: #fff;
  border-color: rgba(255,255,255,0.75);
}

/* Secondary CTA */
.hero .btn-hero--secondary {
  background: var(--we-secondary);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.hero .btn-hero--secondary:hover {
  background: var(--we-secondary-hover, var(--we-secondary));
  color: #fff;
  border-color: rgba(255,255,255,0.75);
}




.hero-animated .btn-hero--accent {
  background: var(--we-accent);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.hero-animated .btn-hero--accent:hover {
  background: var(--we-accent-hover, var(--we-accent));
  color: #fff;
  border-color: rgba(255,255,255,0.75);
}

/* Secondary CTA */
.hero-animated .btn-hero--secondary {
  background: var(--we-secondary);
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}

.hero-animated .btn-hero--secondary:hover {
  background: var(--we-secondary-hover, var(--we-secondary));
  color: #fff;
  border-color: rgba(255,255,255,0.75);
}

.hero .btn-get-started {
  font-family: var(--we-font-body);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.5s;
  animation: fadeInUp 1s both 0.6s;
  background: var(--we-accent);
  color: var(--we-on-accent);
  border: 2px solid var(--we-accent);
}

.hero .btn-get-started:hover {
  background: var(--we-accent-rbg);
  color: var(--we-on-accent);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(var(--we-secondary-rgb), 0.4);
  color: rgba(var(--we-white-rgb), 0.98);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-next-icon {
  padding-left: 3px;
}

.hero .carousel-control-prev-icon {
  padding-right: 3px;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

.hero .carousel-indicators li {
  list-style-type: none;
  cursor: pointer;
  background: rgba(var(--we-secondary-rgb), 0.5);
  overflow: hidden;
  border: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  opacity: 0.6;
  transition: 0.3s;
}

.hero .carousel-indicators li.active {
  opacity: 1;
  background: var(--we-accent);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDownLite {
  from {
    opacity: 0;
    transform: translate3d(0, -10%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# Animated Hero Section
--------------------------------------------------------------*/
.hero-animated {
  width: 100%;
  min-height: 120vh;
  /* background: url("../img/hero-bg.png"); 
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;*/
  position: relative;
  padding: 120px 0 40px 0;
  margin-bottom: 40px;
}
.hero-animated:before {
  content: "";
  /* background: rgba(var(--we-accent-rgb), 0.45);  */
  position: absolute;
  inset: 0;
}

.hero-animated h1 {
  margin: 0 0 10px 0;
  font-size: 42px;
  font-weight: 300;
  color: var(--we-white);
  font-family: var(--we-font-heading);
}
.hero-animated h1 span {
  color: var(--we-accent);
}
.hero-animated p {
  color: rgba(var(--we-white-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-animated h2 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 300;
  color: var(--we-white);
  font-family: var(--we-font-heading);
}

.hero-animated h2 span {
  color: var(--we-accent);
}

.hero-animated p {
  color: rgba(var(--we-white-rgb), 0.8);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero-animated .btn-hero {
  margin:5px;
  font-family: var(--we-font-body);
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 30px;
  color: rgba(var(--we-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  background: var(--we-accent);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--we-white-rgb), 0.5);
}
.hero-animated .btn-hero:hover {
  border-color: rgba(var(--we-white-rgb), 0.5);
  background: rgba(var(--we-accent-rgb), 0.85);
  color: rgba(var(--we-white-rgb), 1);
}
.hero-animated .btn-get-search {
  font-family: var(--we-font-body);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 15px;
  color: rgba(var(--we-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  background: var(--we-accent);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--we-white-rgb), 0.5);
}
.hero-animated .btn-get-search:hover {
  border-color: rgba(var(--we-white-rgb), 0.5);
  background: rgba(var(--we-accent-rgb), 0.85);
  color: rgba(var(--we-white-rgb), 1);
} 

.hero-animated .btn-get-started {
  font-family: var(--we-font-body);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  border-radius: 5px;
  transition: 0.5s;
  animation: fadeInUp 1s both 0.6s;
  background: var(--we-accent);
  color: var(--we-accent);
  border: 2px solid var(--we-accent);
}

.hero-animated .btn-get-started:hover {
  background: var(--we-accent);
  color: var(--we-on-accent);
}

.hero-animated .animated {
  margin-bottom: 60px;
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (min-width: 992px) {
  .hero-animated .animated {
    max-width: 45%;
  }
}

@media (max-width: 991px) {
  .hero-animated .animated {
    max-width: 60%;
  }
}

@media (max-width: 575px) {
  .hero-animated .animated {
    max-width: 80%;
  }
}

.hero-animated .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--we-on-accent);
  background: var(--we-accent);
  font-family: var(--we-font-body);
}

.hero-animated .btn-get-started:hover {
  background: rgba(var(--we-accent-rgb), 0.8);
}

.hero-animated .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--we-font-heading);
  color: var(--we-secondary);
  font-weight: 600;
}

.hero-animated .btn-watch-video i {
  color: var(--we-accent);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-animated .btn-watch-video:hover {
  color: var(--we-accent);
}

.hero-animated .btn-watch-video:hover i {
  color: rgba(var(--we-accent-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-animated h2 {
    font-size: 32px;
  }

  .hero-animated p {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .hero-animated .btn-get-started,
  .hero-animated .btn-watch-video {
    font-size: 14px;
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }

  100% {
    transform: translateY(-10px);
  }
}

/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/


.hero-fullscreen {
  width: 100%;
  min-height: 80vh;
    position: relative;
  overflow: hidden;
  background-color: #0b2d2f; /* fallback while image loads */
  /* background: url("../img/hero-fullscreen-bg.jpg") center center; */
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.hero-fullscreen:before {
  content: "";
  /* background: rgba(var(--we-accent-rgb), 0.45);  */
  position: absolute;
  inset: 0;
}

@media (min-width: 1365px) {
  .hero-fullscreen {
    background-attachment: fixed;
  }
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Place the video behind other content */
}
.video-wrapper video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-fullscreen h1 {
  color: rgba(var(--we-white-rgb), 1);
  font-size: 40px;
  font-family: var(--we-font-heading);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  text-align: center;
}
.hero-fullscreen h2 {
  color: rgba(var(--we-white-rgb), 1);
  font-size: 20px;
  font-family: var(--we-font-heading);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  text-align: center;
}
.hero-fullscreen h2 span {
  color: var(--we-accent);
  font-family: var(--we-font-heading);
}
.hero-fullscreen h3 {
  color: rgba(var(--we-white-rgb), 1);
  font-family: var(--we-font-body);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25)
}
.hero-fullscreen h3 span {
  color: var(--we-accent);
}

.hero-fullscreen .card{
  background: rgba(var(--we-white-rgb), 0.2);
  z-index:100;
}
.hero-fullscreen p {
  color: var(--we-text);
  margin: 0 0 30px 0;
  font-size: 20px;
  font-weight: 400;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
}

/* Hero Search Button */
.hero-fullscreen .btn-hero {
  margin:5px;
  font-family: var(--we-font-body);
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 10px;
  color: rgba(var(--we-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.35);
  background: var(--we-accent);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--we-white-rgb), 0.5);
}
.hero-fullscreen .btn-hero:hover {
  border-color: rgba(var(--we-white-rgb), 0.5);
  background: rgba(var(--we-white-rgb), 0.5);
  color: #ffffff;
}
.hero-fullscreen .btn-get-search {
  font-family: var(--we-font-body);
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 25px;
  color: rgba(var(--we-white-rgb), 1);
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
  background: var(--we-accent);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--we-white-rgb), 0.5);
}
.hero-fullscreen .btn-get-search:hover {
  border-color: rgba(var(--we-white-rgb), 0.5);
  background: rgba(var(--we-white-rgb), 0.1);
  color: rgba(var(--we-white-rgb), 1);
} 

.hero-fullscreen .btn-get-started {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.5s;
  color: var(--we-on-accent);
  background: var(--we-accent);
  font-family: var(--we-font-heading);
}

.hero-fullscreen .btn-get-started:hover {
  background: rgba(var(--we-accent-rgb), 0.8);
}

.hero-fullscreen .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  font-family: var(--we-font-heading);
  color: var(--we-secondary);
  font-weight: 600;
}

.hero-fullscreen .btn-watch-video i {
  color: var(--we-accent);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero-fullscreen .btn-watch-video:hover {
  color: var(--we-accent);
}

.hero-fullscreen .btn-watch-video:hover i {
  color: rgba(var(--we-accent-rgb), 0.8);
}

@media (max-width: 640px) {
  .hero-fullscreen h1 {
    font-size: 32px;
  }
  
  .hero-fullscreen h2 {
    font-size: 16px;
  }

  .hero-fullscreen p {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .hero-fullscreen .btn-get-started,
  .hero-fullscreen .btn-watch-video {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

/* =========================
   Footer Base
========================= */

.footer {
  color: rgba(var(--we-white-rgb), 0.8);
  font-size: 14px;
}

.footer a {
  transition: 0.3s;
}


/* =========================
   Fancy Footer Content
========================= */

.footer .footer-content {
  margin-top: 20px;
  background: var(--we-footer-content, #1f2937);
  padding: 40px 0 0 0;
}

.footer .footer-content .footer-info {
  margin-bottom: 30px;
}

.footer .footer-content .footer-info img {
  max-width: 175px;
  height: auto;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--we-white, #fff);
}

.footer .footer-content .footer-info h3 span {
  color: var(--we-accent);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: var(--we-font-heading);
  color: var(--we-contrast, #fff);
}

.footer .footer-content h4 {
  color: var(--we-white, #fff);
  font-size: 16px;
  font-weight: 600;
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

.footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--we-accent);
  bottom: 0;
  left: 0;
}


/* =========================
   Fancy Footer Links
========================= */

.footer .footer-content .footer-links ul,
.footer .footer-content .footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul li,
.footer .footer-content .footer-contact li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child,
.footer .footer-content .footer-contact li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links i,
.footer .footer-content .footer-contact i {
  padding-right: 5px;
  color: rgba(var(--we-white-rgb), 0.8);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links a,
.footer .footer-content .footer-contact a {
  color: rgba(var(--we-white-rgb), 0.8);
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}

.footer .footer-content .footer-links a:hover,
.footer .footer-content .footer-contact a:hover {
  color: var(--we-white, #fff);
  text-decoration: none;
}


/* =========================
   Newsletter
========================= */

.footer .footer-newsletter h3 {
  color: var(--we-white, #fff);
  font-size: 22px;
  margin-bottom: 15px;
}
.footer .footer-newsletter a {
  color: rgba(var(--we-white-rgb), 0.8);
  text-decoration: none;
}
.footer .footer-newsletter a:hover {
  color: var(--we-white, #fff);
  text-decoration: none;
}

/* =========================
   Shared Legal Footer
   Used by fancy + simple footer
========================= */

.footer .footer-legal {
  background: var(--we-footer-legal-bg, #111827);
  color: var(--we-footer-legal-text, #d1d5db);
  padding: 25px 0;
}

.footer .footer-legal a {
  color: var(--we-accent);
  text-decoration: none;
}

.footer .footer-legal a:hover {
  color: rgba(var(--we-accent-rgb), 0.8);
  text-decoration: none;
}

.footer .footer-legal .copyright {
  line-height: 1.6;
}

.footer .footer-legal .copyright img {
  vertical-align: middle;
  margin-right: 4px;
}


/* =========================
   Shared Social Links
========================= */

.footer .social-links a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--we-accent);
  color: var(--we-on-accent, #fff);
  border-radius: 4px;
  font-size: 18px;
  text-decoration: none;
}

.footer .social-links a:hover {
  background: rgba(var(--we-accent-rgb), 0.8);
  color: var(--we-on-accent, #fff);
  text-decoration: none;
}

.footer .social-links i {
  color: inherit;
  line-height: 1;
}

 /* Footer Newsletter Button overlays content background color */
#footer  .btn-newsletter {
  margin: 0 0 10px 0;
  font-family: var(--we-font-heading);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  color: var(--we-on-accent);
  background: rgba(var(--we-accent-rgb), 0);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(var(--we-white-rgb), 0.2);
}
#footer .btn-newsletter:hover {
  border-color: rgba(var(--we-white-rgb), 0.5);
}

.cookie-note {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--we-surface);
  color: var(--we-contrast);
  padding: 10px 16px;
  font-size: 13px;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  z-index: 9999;
}

.cookie-note a {
  text-decoration: none;
}

.cookie-note button {
  margin-left: 10px;
}

/*--------------------------------------------------------------
# Primary Buttons  (cookie button)
--------------------------------------------------------------*/
 .btn-primary {
     background: var(--we-accent);
     border: 2px solid var(--we-accent);
	 padding: 10px 10px;
	 margin:5px;
}
 .btn-primary:hover {
     background: none;
     color: var(--we-accent);
	 border: 2px solid var(--we-accent);
}
.btn-learn {
	color: var(--we-accent);
	border: 2px solid var(--we-accent);
	padding: 5px 10px;
	margin:5px;
}
.btn-learn:hover {
  background: var(--we-accent);
  color: var(--we-on-accent);
}
/*--------------------------------------------------------------
# Secondary Buttons 
--------------------------------------------------------------*/
 .btn-secondary {
     background: var(--we-secondary);
     border: 2px solid var(--we-secondary);
	 margin:5px;
	 padding: 10px 10px;
	 color: var(--we-on-secondary);
}
 .btn-secondary:hover {
     background: none;
     color: var(--we-on-secondary);
	 border: 2px solid var(--we-secondary);
}
/*--------------------------------------------------------------
# Go Button
--------------------------------------------------------------*/
 .btn-go {
     background: var(--we-secondary);
     border: 2px solid var(--we-accent);
	 max-height:60px;
	 margin:5px;
	 color: var(--we-on-accent);
}
 .btn-go:hover {
     background: none;
     color: var(--we-on-accent);
	 border: 2px solid var(--we-on-accent);
}

 .btn-primary-q {
     background: var(--we-accent);
	 color: var(--we-on-accent);
	 padding: 5px 10px;
	 max-height:40px;
	 margin-bottom:15px;
}
 .btn-primary-q:hover {
     background: var(--we-accent);
     color: var(--we-on-accent);
}

.qty-control .form-control {
  text-align: center;
  padding: 0;
}
/*--------------------------------------------------------------
# Engine Base
--------------------------------------------------------------*/
#engine .engine {
  margin: 0;
  padding: 0;
  
}



/*--------------------------------------------------------------
# Engine Grid Item
--------------------------------------------------------------*/
#engine .grid.engine-item {
  position: relative;
  overflow: hidden;
  padding: 10px;
  margin: 0;
  background: transparent;
  background-clip: content-box;
}

/* Image wrapper */
#engine .grid.engine-item .image-wrap {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

#engine .grid.engine-item .image-wrap img,
#engine .grid.engine-item img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
  transition: transform 0.4s ease-in-out;
  border: 0;
}

/* Hover image zoom */
#engine .grid.engine-item:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Overlay
--------------------------------------------------------------*/
#engine .grid.engine-item .engine-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  text-align: center;
  transition: all 0.4s ease-in-out;
}

#engine .grid.engine-item:hover .engine-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.8);
}

/* Centered overlay info */
#engine .grid.engine-item .engine-info,
#engine .grid.engine-item .engine-info {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 10px;
  transform: translate(-50%, -50%);
  text-align: center;
}

/*--------------------------------------------------------------
# Titles / Text
--------------------------------------------------------------*/
#engine .grid.engine-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--we-font-body);
  color: var(--we-white);
  text-shadow: 2px 2px var(--we-black);
}

#engine .grid.engine-item h5 {
  margin: 5px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--we-white);
}

#engine .grid.engine-item .featured-text {
  margin: 5px;
  font-size: 14px;
  font-weight: 200;
  text-align: center;
  color: var(--we-contrast);
}

/* Optional created date */
#engine .grid.engine-item .created {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(var(--we-contrast-rgb), 0.85);
}

/*--------------------------------------------------------------
# Mood Marker
--------------------------------------------------------------*/
#engine .grid.engine-item .mood-marker {
  position: absolute;
  z-index: 5;
  margin: -5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--we-secondary);
}

#engine .grid.engine-item .text-positive,
#engine .grid.engine-item .text-negative {
  margin: 0;
  white-space: nowrap;
  padding: 0 0 0 10px;
}

#engine .grid.engine-item .text-positive i,
#engine .grid.engine-item .text-negative i {
  margin-right: 0 !important;
}

/* Mood positions */
#engine .grid.engine-item .mood-top-left {
  top: 0;
  left: 0;
}

#engine .grid.engine-item .mood-top-right {
  top: 10px;
  right: 10px;
}

#engine .grid.engine-item .mood-bottom-left {
  bottom: 10px;
  left: 10px;
}

#engine .grid.engine-item .mood-bottom-right {
  bottom: 10px;
  right: 10px;
}

/*--------------------------------------------------------------
# Engine List Item
--------------------------------------------------------------*/
#engine .list.engine-item {
  position: relative;
  width: 95%;
  margin: 20px;
  padding: 20px;
  border-radius: var(--we-radius-sm);
  background: transparent;
  box-shadow: 0 5px 25px rgba(var(--we-contrast-rgb), 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

#engine .list.engine-item:hover {
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# List Layout
--------------------------------------------------------------*/
#engine .list.engine-item .two-column-template {
  display: flex;
  flex-direction: row;
}

#engine .list.engine-item .image-column {
  display: flex;
  align-items: flex-start;
  padding: 10px;
}

#engine .list.engine-item .image-column img {
  display: block;
  max-width: 100%;
  height: auto;
}

#engine .list.engine-item .text-column {
  flex: 1;
  padding: 0 20px;
  margin-bottom: 15px;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
#engine .list.engine-item .created {
  font-family: var(--we-font-body);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--we-contrast);
}

#engine .list.engine-item h4 {
  margin-bottom: 5px;
  font-family: var(--we-font-body);
  font-size: 26px;
  font-weight: 900;
  color: var(--we-contrast);
}

#engine .list.engine-item span {
  display: block;
  position: relative;
  padding-bottom: 10px;
  font-family: var(--we-font-body);
  font-size: 18px;
  font-weight: 800;
}

#engine .list.engine-item p {
  margin: 10px 0 0 0;
  font-size: 15px;
  color: var(--we-contrast);
}

/*--------------------------------------------------------------
# Links
--------------------------------------------------------------*/
#engine .list.engine-item a {
  color: var(--we-link);
  font-size: 18px;
}

#engine .list.engine-item a:hover {
  color: var(--we-link-hover);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 640px) {
  #engine .list.engine-item {
    width: 90%;
    padding: 10px;
  }
}

@media (max-width: 576px) {
  #engine .list.engine-item .two-column-template {
    flex-direction: column;
  }

  #engine .list.engine-item .image-column,
  #engine .list.engine-item .text-column {
    width: 100%;
  }

  #engine .list.engine-item .image-column img {
    max-width: 100%;
  }
}


#engine .square-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 100%; /* This ensures a square aspect ratio */
}
#engine .square-image {
  position: absolute;
  width: 100%;
  height: 160%;
  object-fit: cover; /* This ensures the image covers the entire square */
}
#engine  .uniform-height {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure the image covers the container without stretching */
}

/*--------------------------------------------------------------
# Engine Sidebar (Unified)
--------------------------------------------------------------*/

.engine-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.engine-sidebar {
  margin: 0;
  padding: 0px 0 0 0;
}

/*--------------------------------------------------------------
# Sidebar Block
--------------------------------------------------------------*/
.engine-sidebar .sidebar-block {
  background: var(--we-surface);
  border: 1px solid var(--we-border) !important;
  border-radius: var(--we-radius-sm);
  padding: 0px;
  margin:0;
  box-shadow: var(--we-shadow-md);
}

/*--------------------------------------------------------------
# Titles
--------------------------------------------------------------*/
.engine-sidebar .sidebar-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--we-heading);
  margin-bottom: 15px;
}

#sidebar .engine-sidebar .list-group {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
}

#sidebar .engine-sidebar .list-group-item {
  background: transparent;
  border: 0;
  color: var(--we-text);
  margin: 0;
  box-shadow: none;
}

/*--------------------------------------------------------------
# Search Form
--------------------------------------------------------------*/
.engine-sidebar .sidebar-search {
  display: flex;
  gap: 5px;
}

.engine-sidebar .sidebar-search input {
  flex: 1;
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid var(--we-border);
  color: var(--we-contrast);
}

.engine-sidebar .sidebar-search input:focus {
  outline: none;
  border-color: var(--we-accent);
  color: var(--we-contrast);
}

.engine-sidebar .sidebar-search button {
  background: var(--we-accent);
  color: var(--we-on-accent);
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.25s;
}

.engine-sidebar .sidebar-search button:hover {
  background: var(--we-link-hover);
}

/*--------------------------------------------------------------
# Recent Posts / Listings
--------------------------------------------------------------*/
.engine-sidebar .sidebar-content .post-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.engine-sidebar .sidebar-content img {
  width: 70px;
  border-radius: 6px;
}

.engine-sidebar .sidebar-content h4 {
  font-size: 0.95rem;
  margin: 0;
  padding:5px;
}
/* blog listings */
.engine-sidebar .sidebar-content h4 a {
  color: var(--we-secondary);
}

.engine-sidebar .sidebar-content h4 a:hover {
  color: var(--we-heading);
}

/*--------------------------------------------------------------
# Tags
--------------------------------------------------------------*/

.engine-sidebar .tag-buttons .tag-btn {
  display: inline-block;
  padding: 3px 8px;              /* tighter */
  margin: 3px;
  border-radius: 999px;           /* pill shape */
  font-size: 0.75rem;             /* smaller like badges */
  font-weight: 500;

  background: rgba(var(--we-accent-rgb), 0.12);  /* soft glow */
  color: var(--we-accent);

  border: 1px solid rgba(var(--we-accent-rgb), 0.35);

  transition: all 0.2s ease;
}

.engine-sidebar .tag-buttons .tag-btn:hover {
  background: var(--we-accent);
  color: var(--we-on-accent);
  border-color: var(--we-accent);

  transform: translateY(-1px);   /* subtle lift */
}

.modal 
	h2 {
    font-size: 42px;
	font-weight:600;
	color: var(--we-black);
	font-family: var(--we-font-heading);
  }


#sponsors .sponsor-logo{
	display:flex;
	align-items:center;
	justify-content:center;
	padding: 14px 18px;
	border-radius: 14px;
	background: var(--surface-color, #fff);
	border: 1px solid rgba(0,0,0,.08);
	min-height: 74px;
  }
  
[data-bs-theme="dark"] #sponsors .sponsor-logo{
	border-color: rgba(255,255,255,.10);
	background: rgba(255,255,255,.03);
}

#sponsors .sponsor-logo img{
	max-height: 34px;
	width: auto;
	max-width: 100%;
	opacity: .9;
	filter: grayscale(100%);
	transition: filter .15s ease, opacity .15s ease;
  }
  
#sponsors .sponsor-logo:hover img{
	filter: none;
	opacity: 1;
  }
  
#sponsors h2 {
  color: var(--we-contrast);
  font-size: 20px;
  font-family: var(--we-font-heading);
}   

/* Top Bar Styles */
.topbar {
	height: 30px;
	background: var(--we-gray);
	color: var(--we-header-text);
	font-size: 12px;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1031; /* Higher than header's 1030 */
	transition: all 0.3s ease;
	overflow: hidden;
	border-bottom: 1px solid var(--we-surface);
}

.topbar a {
  color: rgba(var(--we-white-rgb), 0.8);
  text-decoration: none;
  display: inline-block;
  line-height: 1.4;
}

.topbar a:hover {
  color: var(--we-white, #fff);
  text-decoration: none;
}
.headerbar {
  position: relative;
  width: 100%;
  min-height: 25vh;
  padding: 0;
  margin-top: 30px;
  margin-bottom: -30px;
  overflow: hidden;
  border-bottom: 2px solid var(--we-surface);
}

.headerbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}




.headerbar h1 {
  color: rgba(var(--we-white-rgb), 1); 
  /*color: var(--we-white);*/
  font-family: var(--we-font-heading);
  font-size: clamp(28px, 5vw, 60px);
  font-weight:200;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
}
.headerbar h1 span {
  color: var(--we-accent);
}
.headerbar h2 {
  color: rgba(var(--we-white-rgb), 1);
  font-family: var(--we-font-heading);
  font-size: clamp(22px, 3.5vw, 38px);
  font-weight: 300;
  line-height: 44px;
  margin-bottom: 20px;
  text-shadow: 2px 2px rgba(var(--we-black-rgb), 0.25);
}
.headerbar h3 {
  color: rgba(var(--we-white-rgb), 1); 
  animation: fadeInDown 1s both 0.4s;
  font-family: var(--we-font-heading);
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 500;
}