/* ===================================
   BLACKBOX PAGE STYLES
   Inspired by zuri24_media.css
   =================================== */

/* === Base === */
*{
    margin:0;
    padding:0;
}
body {
    background-color: black;
    color: white;
    font-family: "zurichCondensed", Arial, sans-serif;
    margin: 0;
    padding: 0;
  }
  
  h1, h2, h3, h4 {
    font-family: "zurichCondensedBold", sans-serif;
    color: red;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: red;
    margin-bottom: 40px;
  }

  /* === Page Header === */
.page-header {
    background: black;
    padding: 60px 0 40px 0;
    text-align: center;
    /*border-bottom: 3px solid red;*/
  }
  
  .page-title {
    font-family: "zurichCondensedBold", sans-serif;
    font-size: 3.5rem;
    color: red;
    margin: 0;
    letter-spacing: 2px;
  }
  
  @media (max-width: 768px) {
    .page-title {
      font-size: 2.5rem;
    }
  }
  
  /* === Navigation (inherits look) === */
  #nav-div {
    position: static;
    background: url("../images/Zuri_about_us_background.jpg") no-repeat center;
    background-size: cover;
    width: 100%;
    border-top: solid 12px #000;
    box-shadow: 2px 3px 6px 3px rgba(34, 33, 33, 0.418);
    z-index: 9999;
  }

  /* === Complete Navigation Styles === */
.nav-menu-item {
    padding: 0 4px 0 9px;
    color: #cccccc;
    border-left: solid 0.7px #cccccc44;
  }
  
  .nav-menu-item a {
    color: rgb(229, 190, 190);
    text-decoration: none;
  }
  
  .nav-menu-item a:hover {
    color: rgb(240, 46, 46);
  }
  
  #nav-menu .nav-menu-item:first-child,
  .nav-menu-bars {
    border: none;
  }
  
  .nav-menu-item.nav-menu-bars {
    position: relative;
  }
  
  .nav-menu-item.nav-menu-bars .popmenu {
    z-index: 9999999;
  }
  
  .small-screen-nav-burger {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
    padding: 1rem;
  }
  
  /* === Side Menu === */
  .menujar {
    background: #ff002bd6;
    position: fixed;
    width: 300px;
    height: 100%;
    z-index: 999999;
    right: -300%;
    transition: all 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  }
  
  .menujar.menu-from-right {
    right: 0%;
  }
  
  .menujar .menu-content .actionable {
    font-size: 1.5rem;
  }
  
  .menujar .menu-content .menulinks a {
    display: inline-block;
    width: 100%;
    border-bottom: 0.06rem solid #fff;
    margin-top: 5px;
    color: #fff;
    text-decoration: none;
    padding-bottom: 5px;
  }
  
  .menujar .menu-content .menulinks a:hover {
    font-weight: 600;
    color: white;
    background-color: rgba(236, 33, 33, 0.568);
    padding-left: 5px;
  }
  
  .menujar .menu-content .iconset a {
    color: black;
  }
  
  .iconset .nav-menu-item {
    border-left: solid 0.7px #000;
  }
  
  .iconset .nav-menu-item.no-pipe {
    border-left: none;
  }
  
  /* === Font Faces === */
  @font-face {
    font-family: "zurichCondensed";
    src: url("../fonts/Zurich\ Condensed\ BT.ttf");
  }
  
  @font-face {
    font-family: "zurichCondensedBold";
    src: url("../fonts/Zurich\ Bold\ Condensed\ BT.ttf");
  }
  
  #brandbox img {
    height: 3em;
    margin: 10px 0;
    transition: height 0.6s ease;
  }
  
  /* === Gallery Grid === */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
    padding: 1rem;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 6px;
    position: relative;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.85);
  }
  
  /* === About Section === */
  .about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: center;
    gap: 2rem;
    padding: 2rem 1rem;
  }
  
  .about-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0px 3px 10px rgba(255, 0, 0, 0.25);
  }
  
  .about-content p {
    line-height: 1.6;
    color: #ddd;
  }
  
  /* === Testimonials (using CSS Grid) === */
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 1rem;
  }
  
  .testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: left;
    transition: transform 0.3s ease, background 0.3s ease;
  }
  
  .testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
  }
  
  .avatar {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 50%;
    margin-bottom: 1rem;
  }
  
  .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .testimonial-body .quote {
    font-style: italic;
    color: #ccc;
    margin-bottom: 0.8rem;
  }
  
  .testimonial-body .author {
    font-weight: bold;
    color: white;
  }
  
  .testimonial-body .role {
    color: red;
    font-weight: 400;
  }
  
  /* === Call to Action === */
  .cta-box {
    text-align: center;
    background: #111;
    border-radius: 8px;
    padding: 2.5rem;
    color: #fff;
    box-shadow: 0px 0px 10px rgba(255, 0, 0, 0.2);
  }
  
  .cta-text {
    margin-bottom: 2rem;
    color: #ddd;
  }
  
  .contact-form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
  }
  
  .form-row {
    margin-bottom: 1.2rem;
  }
  
  label {
    display: block;
    margin-bottom: 0.4rem;
    color: #fff;
  }
  
  input, textarea {
    width: 100%;
    padding: 10px;
    background: #000;
    border: 1px solid #444;
    color: #fff;
    border-radius: 4px;
  }
  
  input:focus, textarea:focus {
    outline: none;
    border-color: red;
  }
  
  .form-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .btn {
    background: red;
    color: #fff;
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
  }
  
  .btn:hover {
    background: #fff;
    color: red;
  }
  
  .btn-secondary {
    background: transparent;
    border: 1px solid red;
  }
  
  /* === Footer === */
  footer {
    color: black;
    font-family: "zurichCondensed";
    background: linear-gradient(180deg, #fff, #f5f5f5);
  }
  
  footer .social-item {
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    text-align: center;
    border-radius: 50%;
    margin: 0 4px;
    transition: all 0.3s ease;
  }
  
  footer .social-item:hover {
    background: red;
  }
  
  footer .social-item a {
    color: black;
    font-size: 1rem;
    line-height: 1.5rem;
  }
  
  .copybox {
    color: white;
    font-size: 0.8rem;
    background: black;
    text-align: center;
    padding: 1rem;
  }
  
  @media (min-width: 1200px) {
    .container {
      max-width: 1460px;
    }
  }
/* === ABOUT SECTION FIX === */
.pillar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.pillar-row.reverse {
  flex-direction: row-reverse;
}

.pillar-image-box {
  flex: 1 1 45%;
}

.pillar-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.25);
  object-fit: cover;
}

.pillar-text {
  flex: 1 1 50%;
  color: #ddd;
}

.pillar-text h3 {
  color: red;
  font-family: "zurichCondensedBold", sans-serif;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.pillar-text ul {
  padding-left: 1.2rem;
  list-style-type: disc;
}

.pillar-text li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

/* Responsive layout */
@media (max-width: 768px) {
  .pillar-row {
    flex-direction: column;
    text-align: center;
  }

  .pillar-row.reverse {
    flex-direction: column;
  }

  .pillar-text {
    text-align: left;
  }

  .pillar-image-box {
    width: 100%;
  }
}
/* === FULL-WIDTH PILLARS === */
.pillar-wrapper {
  width: 100%;
  padding: 60px 0;
}

.dark-bg {
  background: linear-gradient(90deg, #000 0%, #111 100%);
}

.darker-bg {
  background: linear-gradient(90deg, #111 0%, #000 100%);
}

/* Keep pillar-row centered inside the full-width wrapper */
.pillar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
  flex-wrap: wrap;
}

.pillar-row.reverse {
  flex-direction: row-reverse;
}

.pillar-image-box {
  flex: 1 1 45%;
}

.pillar-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.25);
  object-fit: cover;
}

.pillar-text {
  flex: 1 1 50%;
  color: #ddd;
}

.pillar-text h3 {
  color: red;
  font-family: "zurichCondensedBold", sans-serif;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}

.pillar-text ul {
  padding-left: 1.2rem;
  list-style-type: disc;
}

.pillar-text li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
}

/* Responsive behavior */
@media (max-width: 768px) {
  .pillar-row {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
  }

  .pillar-row.reverse {
    flex-direction: column;
  }

  .pillar-text {
    text-align: left;
  }

  .pillar-image-box {
    width: 100%;
  }
}
/* === PILLAR SCROLL ANIMATIONS === */

/* Initial hidden state */
.pillar-row {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

/* When visible in viewport */
.pillar-row.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional subtle hover glow for image */
.pillar-image-box img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.pillar-image-box img:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 20px rgba(255, 0, 0, 0.35);
}
.page-header {
  width: 100%;
  margin-top: 0;
  padding: 0;
}

.top-header-image {
  width: 100%;
  height: auto;
  max-height: 200px; /* make it smaller — adjust if needed */
  object-fit: contain; /* ensures full image fits without cropping */
  display: block;
  margin: 0 auto;
}
.black-box {
  width: 30%;          /* reduces the image width */
  height: auto;        /* keeps aspect ratio */
  display: block;      
  margin: 20px auto;   /* centers the image */
  border-radius: 10px; /* optional rounded edges */
}