/* === GLOBAL STYLES === */
:root {
  --primary-black: #000000;
  --primary-white: #ffffff;

  --text-white: #ffffff;
  --text-muted: #b5b5b5;

  --accent-pink: #ff8fbc;
  --accent-pink-hover: #ff6fa8;

  --border-dark: #1f1f1f;

  --section-space: 20px;
  --container-width: 1130px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* === GLOBAL BACKGROUND === */
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #ffffff;

  background-image: url("site-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* keeps it stable on scroll */

  min-height: 100vh;
}

/* === GLOBAL OVERLAY === */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65); /* adjust darkness here */
  z-index: -1;
}


/* === BODY === */
body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text-white);
  line-height: 1.6;
  background: var(--primary-black);

  background-image: url("home.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  
  min-height: 100vh;
  position: relative;
}  

.container {
  width: 90%;
  max-width: var(--container-width);
  margin: auto;
}

/* === HEADER AND NAVIGATION === */
.logo-img {
  height: 120px;
  vertical-align: middle;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: var(--text-white);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

nav a:hover {
  color: var(--accent-pink);
}

/* CLEARFIX */
header::after {
  content: "";
  display: block;
  clear: both;
}

/* === HERO SECTION === */
.hero {
  padding: 50px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
/*
.hero-home {
  background-image: url('home.png');
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}


.hero .container {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 38px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 25px;
}
*/

/* === INSIGHT HIGHLIGHT SECTION === */
.insight-highlight {
  position: relative;
}

.insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Image card */
.insight-image img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-dark);
}

/* Text block */
.insight-content h2 {
  margin-bottom: 12px;
}

.insight-content p {
  max-width: 520px;
}

/* === HOW WE HELP SECTION === */
.help-highlight {
  position: relative;
}

.help-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Image card */
.help-image img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-dark);
}

/* Text */
.help-content h2 {
  margin-bottom: 12px;
}

.help-content p {
  max-width: 520px;
}


/* Outline CTA */
.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--text-white);
}

.btn-outline:hover {
  background: var(--text-white);
  color: #000;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.35);
}

/* === COEQ GAME CHANGER SECTION === */
.game-changer-highlight {
  position: relative;
}

.game-changer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.game-changer-image img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border-dark);
}

.game-changer-content h2 {
  margin-bottom: 12px;
}

.game-changer-content p {
  max-width: 520px;
}

/* === COEQ PROMISE SECTION === */
.two-column {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.text-column h2 {
  margin-bottom: 16px;
}

.text-column p {
  max-width: 520px;
}

.image-column {
  text-align: right;
}

.feature-image {
  max-width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  background: var(--accent-pink);
  color: #000000;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.25s ease;
}

.btn:hover {
  background: var(--accent-pink-hover);
  transform: translateY(-1px);
}

/* === SECTION SPACING === */
.section {
  padding: var(--section-space) 0;
}

/* === GRID UTILITY === */
.grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* === TYPOGRAPHY === */
h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 15px;
}

h3 {
  font-size: 26px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--text-white);
}

p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 18px;
}

ul {
  padding-left: 0;
  margin-left: 0;
  list-style-position: inside;
}

li {
  font-size: 16px;
  color: var(--text-muted);
}

/* === CARDS (OPTIONAL BUT RECOMMENDED) === */
.card {
  background: #0e0e0e;
  border: 1px solid var(--border-dark);
  border-radius: 12px;
  padding: 1.5rem;
}

/* === FOOTER === */
footer {
  color: var(--text-muted);
  text-align: center;
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid var(--border-dark);
}

/* === FORMS === */
form input,
form textarea {
  background: #0e0e0e;
  border: 1px solid var(--border-dark);
  border-radius: 4px;
  width: 100%;
  padding: 10px 12px;
  font-size: 15px;
  margin-bottom: 15px;
  color: var(--text-white);
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--accent-pink);
}

/* === NAV CONTAINER === */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  gap: 30px;
}


header {
  position: relative;
  z-index: 1000;
}

nav {
  z-index: 1001;
}

.hamburger {
  z-index: 1002;
}




.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-white);
}

/* === MOBILE NAV === */
@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 80px;
    right: 0;
    background: #000000;
    width: 100%;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    display: none;
    border-top: 1px solid var(--border-dark);
  }

  nav a {
    padding: 10px 0;
  }

  nav.active {
    display: flex;
  }
  
  :root {
    --section-space: 80px; /* increase or decrease as needed */
  }

  .hamburger {
    display: block;
  }
  
  .insight-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .insight-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .help-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
	.help-grid .help-image {
    order: -1;
  }

  /* Text ALWAYS second */
  .help-grid .help-content {
    order: 1;
  }

  .help-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .game-changer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .game-changer-content p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .two-column {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .two-column .image-column {
    order: -1; /* image always first */
  }
  
  .two-column .text-column {
    order: 1;
  }

  .image-column {
    text-align: center;
    margin-top: 30px;
  }

  .text-column p {
    max-width: 100%;
  }
  
}



/* === UTILITIES === */

/* Glow effect */
.glow {
  box-shadow: 0 0 20px rgba(255, 79, 163, 0.25);
}

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    var(--accent-pink),
    transparent
  );
  margin: 3rem 0;
}