body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background-color: white;
  background-size: cover;
  position: relative;
  color: black;
  transition: opacity 0.4s ease;
  font: 400 1rem 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.top-section {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px 5px 10px;
  gap: 16px;
  position: relative;
  z-index: 20;
}

.company-logo {
  height: auto;
  width: clamp(80px, 15vw, 160px);
  object-fit: contain;
  display: block;
}

.top-navbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 16px;
  margin-right: 20px;
  border-radius: 50px;
  border: 2.5px solid black;
  background: rgba(255, 255, 255, 0.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 12px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: block;
  text-decoration: none;
  color: black;
  background: white;
  font-weight: normal;
  padding: 5px 12px;
  border-radius: 25px;
  transition: all 0.3s;
}

.nav-links a.active, .nav-links a:hover {
  background: black;
  color: white;
  font-weight: 900;
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 26px;
  cursor: pointer;
  z-index: 200;
  position: relative;
  transition: transform 0.3s ease;
}

.hamburger.open {
  transform: rotate(90deg);
}

.hamburger i {
  pointer-events: none;
  color: black;
}

.hero-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 80vh;
  gap: 35px;
}

.left-hero, .right-hero {
  width: 45vw;
}

.main-image {
  width: 100%;
}

p {
  margin: 0;
}

.category {
  margin-bottom: 5px;
}

.right-hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  color: rgb(80, 80, 80);
}

.tile {
  border: 2.5px solid rgb(80, 80, 80);
  width: 100%;
  padding: 2.5px 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.platforms {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2.5px solid rgb(80, 80, 80);
  width: 100%;
  padding: 2.5px 7.5px;
}

.platform-icons {
  display: flex;
  align-items: center;
  width: 80%;
  justify-content: flex-start;
  gap: 8.5px;
}

.platform-link {
  text-decoration: none;
  width: 7.5%;
}

.platform-link img{
  width: 100%;
}

.platform-caption {
  white-space: nowrap;
  flex-grow: 1;
  font-weight: bold;
}

@media (max-width: 768px) {
  body{
    font-size: 0.9rem;
  }

  .top-section{
    padding: 12px;
  }

  .top-navbar {
    justify-content: flex-end;
    padding: 10px 15px;
    border: none;
    border-radius: 0;
    background: none;
  }

  .hamburger {
    display: block;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    list-style: none;
    gap: 1.8rem;
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    transition: right 0.4s ease;
    z-index: 90;
  }

  .nav-links.show {
    right: 0;
  }

  .nav-links a {
    background: none;
    color: black;
    font-size: 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    padding: 2.5px 6px;
    transition: all 0.3s;
  }

  .nav-links a.active, .nav-links a:hover {
    color: white;
    background: black;
  }
}

.hamburger i {
  transition: transform 0.3s ease, opacity 0.3s ease, color 0.3s ease;
}

.hamburger.open i {
  transform: rotate(180deg);
  opacity: 1;
}

@media (max-width: 375px) {
  .top-section {
    padding: 0 5px 10px 5px;
  }
}

.text-heading {
  position: relative;
  display: inline-block;
  font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw + 0.5rem, 2.5rem);
  color: #1a1a1a;
  text-transform: uppercase;
  margin: 0;
  padding-top: 12px;
  line-height: 1.2;
  font-family: 'Poppins', sans-serif;
}

.text-heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  min-width: 60px;
  max-width: 120px;
  height: 8px;  
  background-color: rgb(255, 189, 89);
}

@media (max-width: 550px) {
  .tbh-heading::before {
    width: 60px;
    height: 4px;
  }
}

.info {
  font-weight: bold;
  padding-left: 15px;
  height: 100%;
  width: 70%;
  border-left: 5px solid rgb(80, 80, 80);;
}

.info-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  list-style: disc;
  padding-left: 15px;
}

.image-holder{
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 12.5%;
  align-items: center;
}

.image-actual {
  width: 70%;
}

.visuals-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 3.5rem;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}

.visuals-box {
  background: linear-gradient(135deg, #d6c28d, #c4aa6f);
  padding: 0.7rem 1.8rem;
  font-weight: 600;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  width: fit-content;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visuals-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.marketing-visuals {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2.5rem;
  width: 100%;
  max-width: 100vw;
}

.marketing-visuals img{
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.marketing-visuals img:hover{
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .hero-wrapper {
    flex-direction: column;        
    align-items: center;           
    justify-content: flex-start;
    height: auto;                  
    gap: 30px;                     
    margin-top: 1.5rem;            
  }

  .left-hero,
  .right-hero {
    width: 87.5vw !important;       
  }

  .main-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 550px) {
  .left-hero, 
  .right-hero {
    width: 87.5vw !important;
  }

  .hero-wrapper {
    gap: 20px;
  }

  .marketing-visuals img{
    max-width: 325px;
  }
}