/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
  padding: 0;
}

body.no-scroll {
  overflow: hidden;
}

/* Header */
.menu-toggle {
  background: none;
  border: none;
  color: white;
  font-size: 2em;
  cursor: pointer;
  display: block;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  height: 24px;
  width: 30px;
  padding: 0;
  z-index: 10;
}

.menu-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.site-title {
  font-size: 1.5em;
  margin: 0;
}

/* Toggle animation */
.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(3px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -8px);
}

/* Nav menu styles */
#mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #333;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 999;
}

#mobile-nav.active {
  max-height: 300px;
  opacity: 1;
  background: rgba(51, 51, 51, 0.95);
  backdrop-filter: blur(4px);
}

header {
  background: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1000;
}

nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  margin-top: 10px;
  list-style: none;
  padding: 0;
  margin: 10px 0;
  width: 100%;
  text-align: center;
}

nav ul li {
  margin: 10px 0;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav ul li a:hover,
nav ul li a:focus {
  border-bottom: 5px solid #fff;
  border-radius: 4px;
}

.hide {
  display: none;
}

/* Hero Section */
.hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  width: 100%;
}

.hero h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1em;
  margin-bottom: 20px;
}

.hero .btn {
  margin: 1em;
  font-size: 1em;
}

.img-full-w {
  width: 100%;
}

.zeffy-frame-wrap {
  position: relative;
  overflow: hidden;
  height: 700px;
  width: 100%;

}

.zeffy-frame {
  position: absolute;
  border: 0;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 10px;
  background: #ff6b6b;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  font-size: 1.25em;
  transition: all 0.3s ease;
  border-color: transparent;
  box-shadow: 0 2px 6px rgba(57, 0, 0, 0.6);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  background: #ff4c4c;
  box-shadow: inset 0 2px 6px rgba(57, 0, 0, 0.4), 0 2px 6px rgba(57, 0, 0, 0.6);
}

.btn-outline {
  background: white;
  color: #ff4c4c;
  border: 1px solid #ff4c4c;
}

.btn-outline:hover {
  color: white;
}

/* Main content */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

main section {
  width: 100%;
  text-align: center;
}

form {
  background: white;
  padding: 2em;
  border-radius: 1em;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  width: 100%;
  margin: 0 auto;
}

form p {
  margin-bottom: 20px;
}

.input-group {
  position: relative;
  margin-bottom: 1.5em;
}

input,
textarea {
  width: 100%;
  padding: 1em 0.75em;
  font-size: 1em;
  border: 1px solid #d1d5db;
  border-radius: 0.5em;
  background: transparent;
  outline: none;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

label {
  position: absolute;
  left: 0.75em;
  top: 1em;
  color: #6b7280;
  font-size: 1em;
  transition: 0.2s ease all;
  pointer-events: none;
}

input:focus+label,
input:valid+label,
textarea:focus+label,
textarea:valid+label {
  top: -0.6em;
  left: 0.6em;
  font-size: 0.75em;
  background: white;
  padding: 0 0.25em;
  color: #024be9;
}

.strike {
  text-decoration: line-through;
}

.filled {
  min-height: 437px;
}

h2 {
  padding-bottom: 10px;
}

footer {
  text-align: center;
  padding: 20px;
  background: #222;
  color: #ccc;
}

.footer-layout {
  display: flex;
}

.footer-layout a {
  width: 50%;
  margin-bottom: 10px;
}

.partner-logo {
  max-width: 88%;
}

#sts .wrap {
  background: linear-gradient(rgba(255, 76, 76, 0.85), rgba(255, 76, 76, 0.5)),
    url("../img/maz-sunset-base.jpg");
  background-repeat: no-repeat;
  background-position: center;
  flex-direction: column;
  color: white;
}

#map img {
  width: 100%;
}

.pad-text {
  padding: 0 30px;
}

/* blog landing */
.blog-section {
  padding: 4em 2em 0;
  background-color: #f9fafb;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 2.5em;
  color: #111827;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2em;
}

.blog-card {
  background: white;
  border-radius: 1em;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}


.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 1.25em;
}

.blog-date {
  font-size: 0.75em;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.blog-content h3 {
  margin: 0.5em 0;
  font-size: 1.125em;
  color: #111827;
}

.blog-content p {
  font-size: 0.95em;
  color: #4b5563;
  line-height: 1.5;
}

.blog-link {
  display: none;
}

.blog-link:hover {
  text-decoration: underline;
}

.all-blog-btn-wrap{
  margin:1em 0;

}
.all-blog-btn {

}

/* individual blog */
.blog-post {
  max-width: 800px;
  margin: 0 auto;
  padding: 3em 1.5em;
  position: relative;
}

.blog-post h2 {
  color: white;
}

.back-link {
  position: absolute;
  top: 1.5em;
  left: 1.5em;
  font-size: 0.9em;
  text-decoration: none;
  color: #2563eb;
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
}

.back-link:hover {
  text-decoration: underline;
}

.blog-header {
  margin:2em 0;
  padding:30px;
  background-color: #2b2929;
}

.blog-title {
  font-size: 2.25em;
  line-height: 1.2;
  margin-bottom: 0 !important;
}

.blog-meta {
  color: #6b7280;
}

.blog-image img {
  width: 100%;
  border-radius: 1em;
  margin: 2em 0;
}

.blog-body {
  font-size: 1.5em;
  line-height: 1.75;
  color: #1f2937;
  text-align: left;
}

.blog-body blockquote {
  margin: 2em 0;
  padding-left: 1em;
  border-left: 4px solid #2563eb;
  color: #374151;
  font-style: italic;
}

.blog-body p {
  margin: 1em 0;
}

/* blog list */

.blog-list {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 0 3em;
}

.blog-list-header {
  margin-bottom: 3em;
}

.blog-list-header h1 {
  font-size: 2.25em;
  margin-bottom: 0.5em;
}

.blog-list-header p {
  color: #6b7280;
}

.blog-list-items {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.blog-list-item {
  border-bottom: 1px solid #e5e7eb;
}
.blog-list-item:hover {
  background-color: rgba(200, 200,200, 0.5);
}

.blog-list-item a {
  display: block;
  padding: 1.5em 0;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease;
}

.blog-list-item time {
  display: block;
  font-size: 0.8em;
  color: #6b7280;
  margin-bottom: 0.25em;
}

.blog-list-item h2 {
  font-size: 1.25em;
  margin: 0.25em 0 0.5em;
  color: #111827;
}

.blog-list-item p {
  font-size: 0.95em;
  color: #4b5563;
  max-width: 650px;
}



/* toasts */
#toaster {
  position: fixed;
  top: 1em;
  right: 1em;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.toast {
  padding: 1em 1.5em;
  border-radius: 0.5em;
  color: #fff;
  font-family: sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.4s ease;
  min-width: 200px;
  max-width: 300px;
}

/* Visible state */
.toast.show {
  opacity: 1;
  transform: translateX(0);
}

/* Toast types */
.toast.success {
  background-color: #28a745;
}

.toast.warning {
  background-color: #ffc107;
  color: #000;
}

.toast.error {
  background-color: #ff4c4c;
}

/* end toast */

.wrap {
  padding: 50px 0;
}

.inner-contain {
  padding: 0 10px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.only-text {
  margin-bottom: 20px;
}

.only-text #give {
  margin-bottom: 30px;
  margin-top: 0;
  width: 100%;
}

.weneed-overlay {
  height: 213px;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.5);
  color: #333;
  backdrop-filter: blur;
  padding: 50px;
  width: 100%;
  bottom: 0;
  font-size: 2em;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  overflow: auto;
  padding: 40px 20px;
}

/* Scrollable modal box */
.modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

/* Close button */
.close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 20px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* big screens */
/* desktop+ */
@media (min-width: 1081px) {
  main {
    flex-direction: row;
    align-items: flex-start;
  }

  .hero-content .movable {
    font-size: 1.5em;
    border-radius: 15px;
    padding: 10px 30px;
  }

  .hero-content .adjustable {
    width: 100%;
    height: 63vh;
    object-fit: cover;
    object-position: 0 -120px;
  }

  main .only-text {
    padding: 40px 20px;
  }

  .partner-logo {
    max-width: 45%;
  }
}

@media (min-width: 1200px) {
  main .only-text {
    font-size: 1.1em;
  }
   .hero-content .movable {
    font-size: 2em;
  }

  .hero-content .adjustable {
    width: 100%;
    height: 84vh;
    object-fit: cover;
    object-position: 0 -120px;
  }
}

@media (min-width: 1300px) {
  main .only-text {
    font-size: 1.25em;
  }

  .hero-content .movable {
    font-size: 2em;
    border-radius: 15px;
    padding: 10px 30px;
  }

  .hero-content .adjustable {
    width: 100%;
    height: 92vh;
    object-fit: cover;
    object-position: 0 -140px;
  }
}

@media (min-width: 1550px) {
  main .only-text {
    font-size: 1.4em;
  }

  .hero-content .adjustable {
    width: 100%;
    height: 109vh;
    object-fit: cover;
    object-position: 0 -190px;
  }
}

@media (min-width: 1750px) {
  main .only-text {
    font-size: 1.6em;
  }
}

/* super desktop */
@media (min-width: 1935px) {
  main .only-text {
    font-size: 1.75em;
  }
}

/* Larger screens: show nav, hide hamburger */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  #mobile-nav {
    all: unset;
    display: flex;
    justify-content: center;
    gap: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }

  nav ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }

  nav ul li {
    margin: 0;
  }

  form {
    margin: 0 auto;
    width: 800px;
  }

  .inner-contain-left {
    width: 450px;
  }

  .inner-contain-right {
    max-width: 525px;
    width: 100%;
    padding-right: 30px;
  }
}

@media (max-width: 1080px) {
  .hero-section {
    display: flex;
    flex-direction: column;
  }

  .hero-img {
    position: relative;
    z-index: 1;
  }

  .hero-content .movable {
    transform: translateY(-220px);
  }

  .hero-img img {
    width: 100%;
    height: auto;
    display: block;
  }

  .only-text {
    transform: translateY(-220px);
    margin-bottom: -220px;
    z-index: 2;
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    padding: 2em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Media Query for Tablets and down */
@media (max-width: 800px) {
  nav ul {
    justify-content: center;
  }

  nav ul li {
    margin: 0;
  }

  #mobile-nav ul {
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  #mobile-nav ul li {
    width: 100%;
  }

  #mobile-nav ul li a {
    display: block;
    width: 100%;
    padding: 12px 0px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }

  #mobile-nav ul li a:hover,
  #mobile-nav ul li a:focus {
    background-color: rgba(255, 255, 255, 0.7);
    color: #333;
    border: none;
  }

  main section p {
    text-align: justify;
  }

  .only-text {
    transform: translateY(-200px);
    margin-bottom: -220px;
  }

  .only-text,
  form {
    padding: 30px;
  }

  .inner-contain {
    flex-direction: column;
  }

  .hero-content .movable {
    transform: translateY(-200px);
  }
  .blog-body {
      font-size: 1.25em;
  }
}

@media (max-width: 600px) {
  .only-text {
    transform: translateY(-150px);
    margin-bottom: -150px;
  }

  .hero-content .movable {
    transform: translateY(-150px);
  }
}

@media (max-width: 450px) {
  .only-text {
    transform: translateY(-115px);
    margin-bottom: -115px;
  }

  .hero-content .movable {
    transform: translateY(-115px);
  }
}