/* FULL WIDTH HERO FIX */

.hero {

  position: relative;

  width: 100%;
  min-height: 100vh;

  margin: 0 !important;
  padding: 0 !important;

  left: 0;
  right: 0;

  background-image:
    linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0.35)),
    url('https://iamsimbuh.com/wp-content/uploads/2026/05/IMG_2727.png');

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  overflow: hidden;
}


/* REMOVE WORDPRESS CONTAINER WIDTH */

.wp-site-blocks,
.wp-block-post-content,
.entry-content,
.wp-block-group,
main,
body {

  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}


/* FORCE HERO TO BREAK OUT */

.hero-container,
.hero-wrapper,
.hero {

  width: 100vw !important;
  max-width: 100vw !important;

  margin-left: calc(50% - 50vw) !important;
}


/* NAVBAR */

.navbar {

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 25px 35px;

  flex-wrap: wrap;
}


/* LOGO */

.logo {

  color: white;

  font-size: 42px;
  font-weight: 900;

  line-height: 1;
}


/* NAV LINKS */

.nav-links {

  display: flex;
  gap: 25px;

  list-style: none;

  flex-wrap: wrap;
}

.nav-links a {

  color: white;
  text-decoration: none;

  font-weight: 700;
}


/* BUTTON */

.join-btn {

  background: #ffa530;

  color: white;

  padding: 14px 24px;

  border-radius: 14px;

  text-decoration: none;

  font-weight: 800;
}


/* HERO CONTENT */

.hero-content {

  padding: 80px 30px 100px 30px;

  max-width: 750px;

  color: white;
}


/* HEADLINE */

.hero-content h1 {

  font-size: clamp(54px, 10vw, 110px);

  line-height: 0.92;

  font-weight: 900;

  margin-bottom: 25px;

  text-transform: uppercase;
}


/* PARAGRAPH */

.hero-content p {

  font-size: clamp(18px, 2vw, 28px);

  line-height: 1.5;

  margin-bottom: 35px;

  color: rgba(255,255,255,0.92);
}


/* BUTTONS */

.hero-buttons {

  display: flex;

  gap: 20px;

  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {

  padding: 18px 34px;

  border-radius: 14px;

  font-size: 20px;

  font-weight: 800;

  text-decoration: none;
}

.primary-btn {

  background: #ffa530;
  color: white;
}

.secondary-btn {

  border: 2px solid white;
  color: white;
}


/* MOBILE */

@media (max-width: 768px) {

  .hero {

    background-position: 70% center;
  }

  .navbar {

    flex-direction: row;
    align-items: flex-start;

    gap: 15px;
  }

  .nav-links {

    display: none;
  }

  .logo {

    font-size: 26px;
  }

  .join-btn {

    font-size: 16px;

    padding: 12px 18px;
  }

  .hero-content {

    padding: 60px 25px 80px 25px;
  }

  .hero-buttons {

    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {

    width: 100%;
    text-align: center;
  }
}