/* =========================================================
   Norvixlabs.bond Main CSS
   Theme: Dark, professional, modern web lab
   ========================================================= */

/* --------------------------
   Variables & Base
--------------------------- */
:root {
  --bg-color: #2d0435;
  --heading-color: #ffeedc;
  --heading-border: 1px solid #ffeedc;
  --text-color: #ffeedc;
  --accent-color: #d4ab2a;
  --button-bg: #d4ab2a;
  --button-text: #2d0435;
  --button-hover: #ffeedc;
  --link-active: #d4ab2a;
  --link-border: #1d794c;
  --font-primary: "Inter", sans-serif;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-primary);
  color: var(--text-color);
  background-color: var(--bg-color);
  line-height: 1.6;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--button-hover);
}

/* =========================
   NAVBAR
========================= */
.norvixlabs-bond-nav {
  background-color: #2d0435;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid rgba(212, 171, 42, 0.3);
  position: flex;
  top: 0;
  z-index: 999;
}

.norvixlabs-bond-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #ffeedc;
  font-weight: 700;
  font-size: 1.3rem;
  text-decoration: none;
}

.norvixlabs-bond-logo {
  height: 80px;
  width: auto;
}

.norvixlabs-bond-navlist .nav-link {
  color: #ffeedc;
  font-weight: 500;
  margin-left: 1rem;
  transition: color 0.3s, border-bottom 0.3s;
  position: relative;
}

.norvixlabs-bond-navlist .nav-link:hover,
.norvixlabs-bond-navlist .nav-link.active {
  color: #d4ab2a;
}

.norvixlabs-bond-navlist .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1d794c;
  border-radius: 2px;
}

/* =========================
   TOGGLE BUTTON
========================= */
.navbar-toggler {
  border: 1px solid #d4ab2a;
  border-radius: 6px;
  padding: 0.25rem 0.5rem;
  color: #d4ab2a;
  background-color: transparent;
  transition: background-color 0.3s, color 0.3s;
}

.navbar-toggler:hover {
  background-color: #d4ab2a;
  color: #2d0435;
}

.navbar-toggler-icon {
  display: inline-block;
  font-size: 1.2rem;
  color: inherit;
}

/* =========================
   COLLAPSE MENU
========================= */
.navbar-collapse {
  background-color: #2d0435;
}

.norvixlabs-bond-navlist .nav-item {
  margin-bottom: 0.5rem;
}

@media (min-width: 992px) {
  .norvixlabs-bond-navlist .nav-item {
    margin-bottom: 0;
  }
}

/* --------------------------
   Hero
--------------------------- */
.norvixlabs-bond-hero {
  position: relative;
  height: 80vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px; /* horizontal padding */
  text-align: center;
  background: #2d0435 url("../images/hero.jpg") center/cover no-repeat;
  overflow: hidden;
}

.norvixlabs-bond-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 34, 36, 0.6);
  z-index: 1;
}

.norvixlabs-bond-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 850px; /* contain content */
  margin: 0 auto;
}

.norvixlabs-bond-hero .hero-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffeedc; /* headings color */
  border-bottom: 2px solid #ffeedc; /* text border */
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 20px;
}

.norvixlabs-bond-hero .hero-copy {
  font-size: 1.2rem;
  color: #ffeedc;
  max-width: 850px; /* content width */
  margin: 0 auto 30px;
}

.norvixlabs-bond-hero .btn {
  background-color: #d4ab2a;
  color: #2d0435;
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s, color 0.3s;
}

.norvixlabs-bond-hero .btn:hover {
  background-color: #ffeedc;
  color: #2d0435;
}

/* --------------------------
   Buttons
--------------------------- */
.btn.norvixlabs-bond-cta {
  background-color: var(--button-bg);
  color: var(--button-text);
  border: none;
  transition: all 0.3s;
}

.btn.norvixlabs-bond-cta:hover {
  background-color: var(--button-hover);
  color: var(--bg-color);
}

.btn.norvixlabs-bond-ghost {
  background: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
}

.btn.norvixlabs-bond-ghost:hover {
  background: var(--accent-color);
  color: var(--bg-color);
}

/* --------------------------
   Disclaimer Notice
--------------------------- */
.norvixlabs-bond-notice {
  padding: 60px 20px;
  background-color: #2d0435;
}

.norvixlabs-bond-notice .notice-box {
  max-width: 850px;
  margin: 0 auto;
  background: rgba(255, 238, 220, 0.05);
  border: 1px solid rgba(212, 171, 42, 0.2);
  border-radius: 12px;
  padding: 40px 25px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}

.norvixlabs-bond-notice .notice-title {
  font-size: 1.9rem;
  color: #ffeedc;
  margin-bottom: 20px;
  display: inline-block;
  border-bottom: 2px solid #ffeedc;
  padding-bottom: 6px;
}

.norvixlabs-bond-notice .notice-text {
  color: #ffeedc;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.norvixlabs-bond-notice .btn.norvixlabs-bond-ghost {
  background: transparent;
  border: 2px solid #d4ab2a;
  color: #d4ab2a;
  padding: 10px 28px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.norvixlabs-bond-notice .btn.norvixlabs-bond-ghost:hover {
  background: #d4ab2a;
  color: #2d0435;
}

/* --------------------------
   Game Play Section
--------------------------- */
.norvixlabs-bond-play {
  padding: 80px 20px;
  background: #2d0435;
  color: #ffeedc;
}

.norvixlabs-bond-play .section-title {
  font-size: 2.8rem;
  color: #ffeedc;
  border-bottom: 2px solid #ffeedc;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.norvixlabs-bond-play .section-lead {
  font-size: 1.2rem;
  max-width: 850px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* Main game frame: 16:9 aspect ratio */
.norvixlabs-bond-main-game-frame {
  max-width: 850px;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto 30px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.norvixlabs-bond-main-game-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Game selector thumbnails: 220px wide, 16:10 ratio */
.norvixlabs-bond-game-selector {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.norvixlabs-bond-game-thumb {
  width: 220px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.norvixlabs-bond-game-thumb:hover {
  transform: scale(1.05);
  border-color: #d4ab2a;
}

.norvixlabs-bond-game-thumb.active {
  border-color: #1d794c;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .norvixlabs-bond-game-thumb {
    width: 180px;
    aspect-ratio: 16 / 10;
  }
}

@media (max-width: 576px) {
  .norvixlabs-bond-game-thumb {
    width: 140px;
    aspect-ratio: 16 / 10;
  }

  .norvixlabs-bond-play .section-title {
    font-size: 2rem;
  }

  .norvixlabs-bond-play .section-lead {
    font-size: 1rem;
  }
}

/* --------------------------
   Features
--------------------------- */
.norvixlabs-bond-features {
  padding: 80px 0;
}

.norvixlabs-bond-features-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.norvixlabs-bond-feature {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 171, 42, 0.1);
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.4);
}

.norvixlabs-bond-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
}

.feature-icon {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 0.95rem;
}

/* --------------------------
   About
--------------------------- */
.norvixlabs-bond-about {
  padding: 80px 0;
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-media,
.about-content {
  flex: 1 1 400px;
}

.about-title {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--heading-color);
  border-bottom: var(--heading-border);
  display: inline-block;
  padding-bottom: 4px;
}

.about-subtitle {
  color: var(--accent-color);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-text {
  font-size: 1rem;
  margin-bottom: 12px;
}

/* --------------------------
   Reviews Section
--------------------------- */
.norvixlabs-bond-reviews {
  padding: 80px 20px;
  background: #2d0435;
  color: #ffeedc;
  text-align: center;
}

.norvixlabs-bond-reviews .reviews-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffeedc;
  border-bottom: 2px solid #ffeedc;
  display: inline-block;
  padding-bottom: 6px;
  margin-bottom: 16px;
}

.norvixlabs-bond-reviews .reviews-subtitle {
  font-size: 1.2rem;
  max-width: 850px;
  margin: 0 auto 40px;
  line-height: 1.6;
  color: #ffeedc;
  opacity: 0.9;
}

/* Reviews grid */
.norvixlabs-bond-reviews .reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual review card */
.norvixlabs-bond-reviews .review-card {
  background: rgba(255, 238, 220, 0.05);
  border: 1px solid rgba(212, 171, 42, 0.2);
  border-radius: 12px;
  padding: 24px;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.norvixlabs-bond-reviews .review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
  border-color: #d4ab2a;
}

/* Review header */
.norvixlabs-bond-reviews .review-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.norvixlabs-bond-reviews .review-header .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #d4ab2a;
  color: #2d0435;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.norvixlabs-bond-reviews .review-header h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffeedc;
}

.norvixlabs-bond-reviews .review-header .stars {
  font-size: 0.9rem;
  color: #d4ab2a;
  margin-top: 2px;
}

/* Review text */
.norvixlabs-bond-reviews .review-text {
  font-size: 1rem;
  line-height: 1.5;
  color: #ffeedc;
  opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .norvixlabs-bond-reviews .reviews-title {
    font-size: 2.2rem;
  }

  .norvixlabs-bond-reviews .reviews-subtitle {
    font-size: 1rem;
  }

  .norvixlabs-bond-reviews .review-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .norvixlabs-bond-reviews .reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* --------------------------
   Contact Form
--------------------------- */
.norvixlabs-bond-contact {
  padding: 80px 0;
}

.norvixlabs-bond-contact .form-control {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(212, 171, 42, 0.3);
  color: var(--text-color);
  border-radius: 8px;
}

.norvixlabs-bond-contact .btn {
  background: var(--button-bg);
  color: var(--button-text);
}

.norvixlabs-bond-contact .btn:hover {
  background: var(--button-hover);
  color: var(--bg-color);
}

/* --------------------------
   Footer
--------------------------- */
.norvixlabs-bond-footer {
  background: #2d0435;
  color: #ffeedc;
  padding: 60px 20px 40px;
  font-family: "Inter", sans-serif;
  text-align: center;
}

.norvixlabs-bond-footer-logo {
  max-width: 160px;
  margin-bottom: 20px;
}

.norvixlabs-bond-footer-links li a {
  color: #d4ab2a;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, border-bottom 0.3s ease;
}

.norvixlabs-bond-footer-links li a:hover {
  color: #ffeedc;
  border-bottom: 2px solid #1d794c;
}

.footer-disclaimer {
  background: rgba(255, 234, 188, 0.05);
  border: 1px solid rgba(212, 171, 42, 0.3);
  border-radius: 12px;
  padding: 24px;
  margin: 30px auto;
  max-width: 900px;
  text-align: center; /* Center all text inside */
}

.disclaimer-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffeedc;
  margin-bottom: 12px;
  display: inline-flex; /* allow icon + text inline */
  align-items: center;
  justify-content: center; /* center horizontally */
  gap: 8px;
}

.disclaimer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffeedc;
  opacity: 0.95;
}

.footer-divider {
  border-color: rgba(212, 171, 42, 0.2);
  margin: 30px auto;
  max-width: 850px;
}

.footer-credit {
  font-size: 0.9rem;
  opacity: 0.85;
}

.footer-credit a {
  color: #d4ab2a;
  text-decoration: none;
}

.footer-credit a:hover {
  color: #ffeedc;
}

/* --------------------------
   Disclaimer Popup
--------------------------- */
.norvixlabs-bond-popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(18, 34, 36, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.norvixlabs-bond-popup.active {
  opacity: 1;
  pointer-events: auto;
}

.norvixlabs-bond-popup-inner {
  background: #2d0435;
  color: #ffeedc;
  max-width: 500px;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
}

.norvixlabs-bond-popup-inner .popup-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffeedc;
  border-bottom: 2px solid #ffeedc;
  padding-bottom: 6px;
}

.norvixlabs-bond-popup-inner .popup-text {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
  text-align: center;
}

.norvixlabs-bond-popup-inner .popup-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.norvixlabs-bond-popup-inner .btn {
  padding: 10px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.norvixlabs-bond-accept {
  background: #d4ab2a;
  color: #2d0435;
}

.norvixlabs-bond-accept:hover {
  background: #ffeedc;
  color: #2d0435;
}

.norvixlabs-bond-exit {
  background: transparent;
  color: #ffeedc;
  border: 2px solid #ffeedc;
}

.norvixlabs-bond-exit:hover {
  background: #ffeedc;
  color: #2d0435;
}

/* Scroll To Top */
.norvixlabs-bond-scroll-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 42px;
  height: 42px;
  background: #d4ab2a;
  color: #2d0435;
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: background 0.3s ease;
}

.norvixlabs-bond-scroll-top:hover {
  background: #ffeedc;
}
.norvixlabs-bond-scroll-top.visible {
  display: flex;
}

/* --------------------------
   Responsive
--------------------------- */
@media (max-width: 992px) {
  .about-grid {
    flex-direction: column;
    text-align: center;
  }
  .about-media,
  .about-content {
    flex: 1 1 100%;
  }
  .hero-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .norvixlabs-bond-hero {
    padding: 80px 0 60px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .norvixlabs-bond-features-row {
    grid-template-columns: 1fr;
  }
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .norvixlabs-bond-games-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Legal Pages: Disclaimer / Privacy / Terms
========================= */

/* Container styling */
.norvixlabs-bond-legal {
  padding: 80px 20px;
  background: #2d0435;
  color: #ffeedc;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
}

.norvixlabs-bond-legal .container {
  max-width: 850px;
  margin: 0 auto;
}

/* Main heading */
.norvixlabs-bond-legal .legal-title {
  font-size: 2.8rem;
  color: #ffeedc;
  border-bottom: 2px solid #ffeedc;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 30px;
  text-align: center;
}

/* Section headings */
.norvixlabs-bond-legal h2 {
  font-size: 1.8rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #ffeedc;
  border-left: 4px solid #d4ab2a;
  padding-left: 10px;
}

/* Paragraph text */
.norvixlabs-bond-legal p {
  font-size: 1rem;
  color: #ffeedc;
  opacity: 0.95;
  margin-bottom: 16px;
}

/* Emphasis text */
.norvixlabs-bond-legal strong {
  color: #d4ab2a;
}

/* Links */
.norvixlabs-bond-legal a {
  color: #d4ab2a;
  text-decoration: none;
  border-bottom: 1px solid #1d794c;
  transition: color 0.3s, border-bottom 0.3s;
}

.norvixlabs-bond-legal a:hover {
  color: #ffeedc;
  border-bottom: 1px solid #ffeedc;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .norvixlabs-bond-legal .legal-title {
    font-size: 2.2rem;
  }

  .norvixlabs-bond-legal h2 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .norvixlabs-bond-legal {
    padding: 60px 16px;
  }

  .norvixlabs-bond-legal .legal-title {
    font-size: 2rem;
  }

  .norvixlabs-bond-legal h2 {
    font-size: 1.3rem;
  }
}
