:root {
  --brand: #e63946; /* VMVCUBE Red */
}
/* Banner Section */
.banner-section {
  position: relative;
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* Background Image */
.banner-section img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Dark Overlay */
.banner-section::after {
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.25) 40%, transparent);
  pointer-events:none;
}


/* Banner Content */
.banner-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 15px;
}

.banner-content h1 {
    color: white;
  font-weight: 800;
  font-size: clamp(26px, 4vw, 46px);
  margin-bottom: 15px;
  text-shadow: 0 2px 12px rgba(0,0,0,.6);
}

.banner-content p {
    color: #fff;
  font-size: clamp(16px, 2vw, 20px);
  margin-bottom: 30px;
  opacity: .95;
}

/* Buttons + Separator */
.banner-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.banner-buttons a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

/* Separator "/" between buttons (desktop only) */
.banner-buttons a:not(:last-child)::after {
  content: "/";
  color: #fff;
  font-weight: bold;
  margin-left: 12px;
  margin-right: 12px;
}

/* Mobile view fix */
@media (max-width: 640px) {
  .banner-section { height: 380px; }
  .banner-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .banner-buttons a:not(:last-child)::after {
    content: ""; /* mobile me slash hata do */
    margin: 0;
  }
  .banner-buttons a {
    font-size: 14px;
  }
}
