/* RESET */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Azonix', sans-serif; /* body text same as title */
  background-color: #ffffff;
  color: #1a1a1a;
}

/* ---------- TOP SWIRL HERO ---------- */
.hero {
  height: 50vh;
  background: url('../Pictures/swirldesign.jpg') no-repeat center center;
  background-size: cover;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 20px; /* optional small space under swirl */
}

/* BIG AZONIX TITLE */
.hero-title {
  font-family: 'Azonix', sans-serif;
  font-size: 72px;
  font-weight: 400;
  color: #ffffff;
  text-transform: uppercase;
  max-width: 90%;
  line-height: 1.1;
  padding: 0 20px;
}

/* ---------- SPACERS ---------- */
.spacer-top {
  height: 20px; /* space between swirl and black bar */
}

.spacer-bottom {
  height: 40px; /* space between black bar and text+image row */
}

/* ---------- BLACK BAR WITH WHITE MIDDLE ---------- */
.black-bar {
  width: 100%;
  height: 40px; /* total height of the bar */
  border-radius: 4px; /* optional rounding */
  background: linear-gradient(
    to bottom,
    #000 0%,       /* top black */
    #000 20%,      /* end of top black */
    #fff 20%,      /* start of white */
    #fff 80%,      /* end of white */
    #000 80%,      /* start of bottom black */
    #000 100%      /* bottom black */
  );
}

/* ---------- BLACK BAR ---------- */
.content-bar-wrapper {
  
  margin-left: 8%;   /* same as .content-columns */
  margin-right: 10%; /* same as .content-columns */
}

.black-bar {
  width: 100%;
  height: 40px;
  background-color: #000;
  border-radius: 4px; /* optional small rounding */
}

/* ---------- BOTTOM CONTENT ---------- */
.content-wrapper {
  background-color: #ffffff;
  padding: 0 0 100px;
}

/* TWO-COLUMN LAYOUT */
.content-columns {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-left: 8%;
  margin-right: 10%;
  margin-top: -30px;  /* ← moves text + image upward */
}

/* LEFT: TEXT BOX */
.content-box {
  flex: 1;
  background: linear-gradient(135deg, #fff, #c0bfbf);
  padding: 40px;
  border-radius: 0;   /* ← sharp edges */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}


/* RIGHT: IMAGE */
.content-image {
  flex: 1;
  background: url('../Pictures/bison2.jpg') no-repeat center center;
  background-size: cover;
  border-radius: 0;   /* ← sharp edges */
  min-height: 300px;
}

/* BODY TEXT */
.lead {
  font-family: 'Azonix', sans-serif;
  font-size: 20px;
  line-height: 1.6;
  margin: 0;
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .hero-title {
    font-size: 52px;
  }

  .content-columns {
    flex-direction: column;
    margin: 0 10%;
  }

  .content-image {
    min-height: 200px;
    margin-top: 20px;
  }

  .content-bar-wrapper {
    margin: 0 10%;
  }
}

