/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 23 2025 | 15:09:38 */
/* Add your CSS code here.

For example:
.example {
    color: red;
}

For brushing up on your CSS knowledge, check out http://www.w3schools.com/css/css_syntax.asp

End of comment */ 

/* ============================== */
/* NAVBAR (your original settings) */
/* ============================== */
/* Remove extra top navigation bar */
.wp-block-group > .wp-block-group > .wp-block-navigation {
    display: none !important;
}

.mobile-nav-row {
  display: flex;
  align-items: center;       /* vertical alignment */
  justify-content: space-between; /* logo left, actions right */
  width: 100%;
}

.floating-nav {
  position: fixed;
  top: 30px !important;   /* ← move down */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Montserrat', sans-serif !important;
  height: 80px;
  width: 95%;
  max-width: 1200px;
  z-index: 9999;
}

.nav-logo-pill img { height: 65px; }

/* Logo Pill (same style as nav-pill) */
.nav-logo-pill {
  display: flex;
  align-items: center;
  background: #101820;
  border-radius: 1.5rem;
  padding: 0.5rem 0.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  height: 64px;
}

.nav-pill {
  margin-left: auto;
  display: flex;
  background: #f8f8f4;
  border-radius: 1.5rem;
  padding: 1.5rem 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  height: 32px;
}

.nav-pill .nav-items {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin:0;
  padding:0;
}

.nav-link {
  white-space: nowrap;     /* prevent wrapping which can confuse width */
  padding: 0.75rem 0.50rem;
  border-radius: 1.5rem;
  text-decoration: none;
  color:#101820;
  font-weight:600;
  line-height:1.5;
}

.nav-link:hover {
  color: #f8f8f4; /* text turns white */
  background-color: #31D200; /* highlight color */
  width: 100%; /* expand to full width of parent */
  text-align: center; /* center text */
}

.nav-link.active {
  color: #31D200;
  cursor: default;
  pointer-events: none; /* ignore clicks */
}

/* CTA base */
.nav-link--cta {
  white-space: nowrap;
  padding: 0.75rem 0.5rem;
  border-radius: 1.5rem;
  text-decoration: none;

  color: #31D200;                 /* CTA green text */
  font-weight: 700;
  line-height: 1.5;

  border: 2px solid #31D200;      /* outline */
  background-color: transparent; /* outline-only by default */

  transition: 
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

/* CTA hover → solid */
.nav-link--cta:hover {
  background-color: #31D200; /* solid fill */
  color: #f8f8f4;            /* white text */
  border-color: #31D200;
  text-align: center;
}

/* Optional: CTA active/disabled state */
.nav-link--cta.active {
  background-color: #31D200;
  color: #f8f8f4;
  cursor: default;
  pointer-events: none;
}


/* MOBILE ACTIONS (responsive, content-fit) */
.mobile-actions {
  display: inline-flex;             /* keep items in a row */
  gap: 0.5rem;
  background: #f8f8f4;
  border-radius: 1.5rem;
  padding: 0.75rem 1.5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 9999;
  position: fixed;
  transform: none;       /* remove the centering transform */
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  width: max-content;                
  max-width: calc(100vw - 40px);     /* never exceed viewport */
}

.mobile-actions--allow-wrap {
  white-space: normal;
  flex-wrap: wrap;
}

/* BUTTONS INSIDE MOBILE ACTIONS (Hamburger) */
.mobile-actions .action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.375rem;
  border-radius: 1.5rem;
  background: #f8f8f4;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;            /* remove underline */
  color: #101820;                   /* default icon color */
}

.mobile-actions .action-btn .material-icons {
  font-size: 24px;
  color: inherit;                   /* inherit from parent for hover/active */
}

/* Hover / active / focus state */
.mobile-actions .action-btn:hover,
.mobile-actions .action-btn:active,
.mobile-actions .action-btn:focus {
  color: #F8F8F4;                   /* icon turns white */
  background: #31D200;              /* optional green background */
  outline: none;                     /* remove focus outline */
}

/* MOBILE NAV MENU */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  right: 20px;
	min-width: 140px;  /* keep minimum width */
	max-width: calc(100vw - 20px); /* prevent overflow */
    box-sizing: border-box;        /* include padding in width */
  background: #F8F8F4;
  border-radius: 1.5rem;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  flex-direction: column;
  gap: 0.5rem;
  z-index: 10001;
}

.mobile-nav.open {
  display: flex !important;  /* shown when .open is added */
}

.mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav a {
  white-space: nowrap; /* prevent wrapping that might expand menu */
  overflow: hidden;
  text-overflow: ellipsis; /* optional: cut long text */
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #101820;
  box-sizing: border-box;    /* include border in width/height */
  transition: all 0.3s ease;
  border: 2px solid transparent; /* invisible by default */
  border-radius: 1.5rem;
}

.mobile-nav a:hover {
  color: #31D200;                   /* text color */
  background-color: transparent;
  text-align: left;               /* keep text on left */
}

/* Mobile CTA base */
.mobile-nav a.mobile-nav--cta {
  color: #31D200;                  /* CTA green text */
  font-weight: 700;

  border: 2px solid #31D200;       /* visible outline by default */
  background-color: transparent;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

/* Mobile CTA hover → solid */
.mobile-nav a.mobile-nav--cta:hover {
  background-color: #31D200; /* solid fill */
  color: #f8f8f4;            /* white text */
  border-color: #31D200;
  text-align: left;          /* preserve mobile alignment */
}

/* Optional: mobile CTA active/disabled */
.mobile-nav a.mobile-nav--cta.active {
  background-color: #31D200;
  color: #f8f8f4;
  cursor: default;
  pointer-events: none;
}


/* Hide mobile nav in desktop even if .open is present */
@media (min-width: 1024px) {
  .mobile-actions {
    display: none !important;
  }
	
  #mobile-menu {
    display: none !important;
  }
}

/* MOBILE SPECIFIC FIXES */
@media (max-width: 1023px) {
  /* Logo container */
  .nav-logo-pill {
    position: fixed;
    left: 20px;
    top: -15px;             /* negative value moves it up */
    display: flex;
    align-items: center;   /* vertically center logo image */
    z-index: 10000;
	padding: 0 8px;
	height: 52px;
  }

  .nav-logo-pill img {
    display: block;
    height: 44px;          /* adjust for alignment with buttons */
  }
	
  .nav-pill {
    display: none; /* hide desktop nav */
  }

  /* Mobile Actions */
  .mobile-actions {
    position: fixed;
    right: 20px;
    top: -15px;             /* same negative value to align with logo */
    height: 52px;
    display: flex;
    align-items: center;   /* vertical centering */	
    padding: 0 0.6rem;
    gap: 0.5rem;
    background: #f8f8f4;
    border-radius: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 9999;
  }

  /* Mobile Menu */
  .mobile-nav {
    right: 20px;
    top: 52px;  /* below navbar row */
    min-width: 140px;
  }
}

@media (max-width: 480px) {
  /* Mobile Actions */
  .mobile-actions {
    padding: 0.4rem 0.8rem;
    gap: 0.4rem;
  }
  /* Mobile Menu */
  .mobile-nav {
    min-width: 100px;
    max-width: calc(100vw - 20px);
  }
}
/* Navbar */
/* ============================== */
/* FOOTER SECTION */
/* ============================== */
.custom-footer {
  background-color: #101820;
  color: #f8f8f4;
  text-align: center;
  padding: 40px 0 !important;
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.custom-footer > * {
  padding-left: 20px;
  padding-right: 20px;
}

/* Navigation Links */
.footer-nav a {
  color: #f8f8f4;
  margin: 0 12px;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-nav a:hover {
  color: #31D200;
  opacity: 0.85;
}

/* Newsletter Button */
#footer-subscribe-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 1.5rem;
  background-color: #31D200;
  color: #101820;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
  margin: 20px 0; /* ⬅ adds spacing above and below */
}

#footer-subscribe-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Social Icons */
.footer-social a {
  margin: 0 10px;
  color: #f8f8f4;
  display: inline-flex;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social a svg {
  width: 26px;
  height: 26px;
}

.footer-social a:hover {
  transform: scale(1.15);
  opacity: 0.85;
}

/* Copyright */
.footer-copy {
  font-size: 14px;
  opacity: 0.85;
  margin-top: 10px;
}

/* Mobile Optimization */
@media (max-width: 480px) {
  .footer-nav a {
    display: inline-block;
    margin: 6px 10px;
  }

  #footer-subscribe-btn {
    width: 100%;
    max-width: 240px;
  }

  .footer-social a {
    margin: 0 6px;
  }
}

/* FOOTER SECTION */
/* ============================== */
/* Newsletter Modal */
/* ============================== */
/* Newsletter Modal Base */
.newsletter-modal {
  display: grid !important;
  place-items: center !important;
  justify-items: center !important;
  align-items: center !important;
  position: fixed !important;
  inset: 0 !important; /* replaces top/left/width/height */
  z-index: 9999 !important;

  background: transparent !important;
  padding: 0 !important;
  box-sizing: border-box !important;

  visibility: hidden !important;
  opacity: 0 !important;
}

.newsletter-modal.show {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Optional Overlay - remove if you want no background dim */
.newsletter-modal-overlay {
  display: none; /* hide overlay */
}

/* Modal content */
.newsletter-modal-content {
  position: relative;
  width: 90%;
  max-width: 420px;
  margin: 0;          /* reset any default margin */
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  z-index: 10;

  /* Glassmorphism effect */
  background: rgba(16, 24, 32, 0.6); /* dark tint */
  border: 1px solid rgba(255, 255, 255, 0.15); /* subtle border */
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  color: #f8f8f4;
}


.newsletter-modal-content p {
  color: #f8f8f4;
}

/* Close button */
.newsletter-modal-close {
  position: absolute;
  top: 10px; right: 15px;
  background: transparent;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #f8f8f4;
}

/* Form */
#newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

/* Name fields in a row */
#newsletter-form .name-row {
  display: flex;
  gap: 5px;
}

/* Make both inputs flexible and same size */
#newsletter-form .name-row input[type="text"] {
  flex: 1;
}

#newsletter-form input[type="text"],
#newsletter-form input[type="email"] {
  padding: 10px 12px;
  font-size: 16px;
  width: 100%;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2); /* softer border for dark glass */
  background: rgba(16, 24, 32, 0.45); /* dark glass tint */
  color: #f8f8f4; /* text color */
  backdrop-filter: blur(5px);
  box-sizing: border-box; /* ensures width includes padding/border */
}

#newsletter-form input::placeholder {
  color: #f8f8f4; /* hint/placeholder color */
  opacity: 0.7; /* optional soft opacity */
}

#newsletter-form button {
  padding: 12px 20px;
  font-size: 16px;
  border: none;
  border-radius: 1.5rem;
  background-color: #31D200;
  color: #101820;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.2s ease;
}

#newsletter-form button:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Success message */
.newsletter-success {
  display: none;
  margin-top: 15px;
  color: #f8f8f4;
  font-weight: 500;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 500px) {
  .newsletter-modal {
    width: calc(100% - 30px); /* 15px each side */
  }
	
  #newsletter-form .name-row {
    flex-direction: column;
	gap: 15px;
  }
}

/* Newsletter Modal */