/* ==============================
   Norbop.com Main Styles
   ============================== */

body.norbop-com {
  margin: 0;
  font-family: system-ui, "Segoe UI", Roboto, sans-serif;
  background-color: #2b1511; /* site background */
  color: #cdffd7; /* text color */
  line-height: 1.6;
}

/* ==============================
   Global Elements
   ============================== */

.norbop-com a {
  color: #29c747; /* active links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.norbop-com a:hover {
  color: #cdffd7;
}

.norbop-com h1,
.norbop-com h2,
.norbop-com h3,
.norbop-com h4,
.norbop-com h5 {
  color: #29c747; /* headings */
  margin-bottom: 0.75rem;
}

.norbop-com p {
  margin-bottom: 1rem;
  color: #cdffd7;
}

/* ==============================
   Navbar (Desktop + General)
   ============================== */
.norbop-com-navbar {
  background-color: #2b1511;
  border-bottom: 2px solid #29c747;
  padding: 1rem 2rem;
}

.norbop-com-navbar .navbar-brand img {
  height: 70px;
}

.norbop-com-nav .nav-link {
  color: #cdffd7;
  margin: 0 0.6rem;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
}

.norbop-com-nav .nav-link:hover {
  color: #29c747;
}

/* ==============================
   Active Nav Link
   ============================== */
.norbop-com-nav .nav-link.active {
  color: #29c747 !important; /* active text color */
  font-weight: 700;
}

.norbop-com-nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 3px;
  background-color: #29c747;
  border-radius: 2px;
}

/* ==============================
   Navbar Toggler (Mobile)
   ============================== */
.norbop-com-toggler {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #29c747;
  cursor: pointer;
}

/* ==============================
   Mobile Nav
   ============================== */
@media (max-width: 768px) {
  .norbop-com-nav {
    flex-direction: column !important;
    gap: 1rem;
    margin-top: 1rem;
  }

  .norbop-com-nav .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    border-radius: 8px;
  }

  .norbop-com-nav .nav-link.active {
    background-color: #29c747;
    color: #2b1511 !important;
    border-radius: 8px;
  }

  .norbop-com-nav .nav-link.active::after {
    display: none; /* no underline on mobile, just pill highlight */
  }
}


/* ==============================
   Hero Section
   ============================== */
.norbop-com .hero {
  text-align: center;
  align-content: center;
  padding: 6rem 2rem;
  color: #cdffd7;
  height: 60vh;
  background: linear-gradient(135deg, rgba(43,21,17,0.2), rgba(29,14,11,0.2)),
              url("../img/hero-bg.jpg") center/cover no-repeat;
}

.norbop-com .hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #29c747;
  margin-bottom: 1rem;
}

.norbop-com .hero h1 span {
  color: #cdffd7; /* contrast for Norbop.com word */
}

.norbop-com .hero p {
  max-width: 700px;
  margin: 0.5rem auto 2rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #cdffd7;
}

/* ==============================
   Hero Buttons
   ============================== */
.norbop-com .hero .hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.norbop-com .hero .btn-primary {
  background-color: #29c747;
  color: #2b1511;
  border: none;
  padding: 0.8rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.norbop-com .hero .btn-primary:hover {
  background-color: #23a23d;
  color: #fff;
}

.norbop-com .hero .btn-secondary {
  background: transparent;
  border: 2px solid #29c747;
  color: #29c747;
  padding: 0.8rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.norbop-com .hero .btn-secondary:hover {
  background-color: #29c747;
  color: #2b1511;
}

/* ==============================
   Buttons
   ============================== */

.norbop-com .btn-primary {
  display: inline-block;
  background-color: #29c747;
  color: #2b1511;
  font-weight: 600;
  padding: 0.7rem 1.4rem;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.norbop-com .btn-primary:hover {
  background-color: #cdffd7;
  color: #2b1511;
}

/* ==============================
   Disclaimer Section
   ============================== */
.norbop-com-disclaimer {
  background-color: #2b1511;
  color: #cdffd7;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #29c747;
}

.norbop-com-card {
  background-color: #1d0e0b;
  border: 2px solid #29c747;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  color: #cdffd7;
}

.norbop-com-card p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.norbop-com-link {
  color: #29c747;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.norbop-com-link:hover {
  color: #cdffd7;
  text-decoration: underline;
}

/* ==============================
   Disclaimer Button
   ============================== */
.norbop-com-btn {
  display: inline-block;
  background-color: #29c747;
  color: #2b1511 !important;
  padding: 0.8rem 1.6rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.norbop-com-btn:hover {
  background-color: #23a23d;
  color: #fff !important;
}

/* ==============================
   Game Section
   ============================== */
.norbop-com-game {
  background-color: #2b1511;
  color: #cdffd7;
}

.norbop-com-game .section-title {
  color: #29c747;
  font-size: 2rem;
  font-weight: 700;
}

.norbop-com-game .section-sub {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* Game Frame */
.norbop-com-game-frame {
  background-color: #1d0e0b;
  border: 2px solid #29c747;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  max-width: 1200px;
  margin: 0 auto;
}

.norbop-com-iframe-wrap {
  aspect-ratio: 16 / 9;   /* perfect 16:9 ratio */
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}

.norbop-com-iframe-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

/* ==============================
   Responsive Adjustments
   ============================== */
@media (max-width: 768px) {
  .norbop-com-game .section-title {
    font-size: 1.6rem;
  }
  .norbop-com-game .section-sub {
    font-size: 1rem;
  }
}

/* ==============================
   Cards (Features/Sections)
   ============================== */

.norbop-com .card {
  background-color: #1d0e0b;
  border: 1px solid #29c747;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 1rem;
  box-shadow: 0 4px 10px rgba(41, 199, 71, 0.15);
  transition: transform 0.3s ease;
}

.norbop-com .card:hover {
  transform: translateY(-6px);
}

/* ==============================
   Footer
   ============================== */

.norbop-com footer {
  background-color: #1d0e0b;
  padding: 2rem;
  text-align: center;
  border-top: 2px solid #29c747;
}

.norbop-com footer p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
}
/* ==============================
   Footer Disclaimer
   ============================== */
.norbop-com-footer-disclaimer {
  max-width: 720px;  /* contain width */
  line-height: 1.5;
  color: #cdffd7;
}

.norbop-com-footer-disclaimer h5 {
  color: #29c747;
  font-weight: 700;
  font-size: 1.2rem;
}

.norbop-com-footer-disclaimer p {
  font-size: 0.9rem;
  margin: 0;
}

.norbop-com-footer-disclaimer a.norbop-com-link {
  color: #29c747;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.norbop-com-footer-disclaimer a.norbop-com-link:hover {
  color: #ffffff;
  text-decoration: underline;
}



/* ==============================
   Scroll to Top Button (CSS Arrow)
   ============================== */
.norbop-com-scrolltop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #29c747;
  border-radius: 50%;          /* perfect circle */
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  display: none;               /* hidden by default */
  z-index: 999;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Arrow inside the button */
.norbop-com-scrolltop::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 12px solid #2b1511; /* arrow color */
}

.norbop-com-scrolltop:hover {
  background-color: #23a23d;
}

.norbop-com-scrolltop:hover::before {
  border-bottom-color: #fff; /* white arrow on hover */
}

/* ==============================
   Age Popup Overlay
   ============================== */
.norbop-com-age-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none; /* hidden initially */
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.norbop-com-age-dialog {
  background-color: #1d0e0b;
  border: 2px solid #29c747;
  border-radius: 16px;
  color: #cdffd7;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

.norbop-com-age-title {
  color: #29c747;
  font-size: 1.6rem;
  font-weight: 700;
}

.norbop-com-age-text {
  font-size: 1rem;
  line-height: 1.5;
}

/* ==============================
   Age Popup Buttons
   ============================== */
.norbop-com-age-btn {
  background-color: #29c747;
  color: #2b1511;
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.norbop-com-age-btn:hover {
  background-color: #23a23d;
  color: #fff;
}

.norbop-com-age-btn-ghost {
  background-color: transparent;
  border: 2px solid #29c747;
  color: #29c747;
}

.norbop-com-age-btn-ghost:hover {
  background-color: #29c747;
  color: #2b1511;
}


/* ==============================
   Contact Section
   ============================== */
.norbop-com-contact {
  background-color: #2b1511; /* dark site background */
  color: #cdffd7;
}

.norbop-com-contact .section-title {
  color: #29c747;
  font-size: 2rem;
  font-weight: 700;
}

.norbop-com-contact .section-sub {
  font-size: 1.1rem;
  color: #cdffd7;
  opacity: 0.9;
}

.norbop-com-contact-form {
  text-align: left;
}

.norbop-com-contact-form .form-label {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #29c747;
}

.norbop-com-input {
  background-color: #1d0e0b;
  border: 2px solid #29c747;
  border-radius: 8px;
  color: #cdffd7;
  padding: 0.75rem 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.norbop-com-input:focus {
  outline: none;
  border-color: #23a23d;
  box-shadow: 0 0 8px rgba(41, 199, 71, 0.5);
}

.norbop-com-btn {
  background-color: #29c747;
  color: #2b1511;
  font-weight: 600;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-block;
}

.norbop-com-btn:hover {
  background-color: #23a23d;
  color: #fff;
}




/* ==============================
   Legal Pages (Disclaimer, Privacy, Terms)
   ============================== */

.norbop-com-legal {
  background-color: #2b1511; /* site background */
  color: #cdffd7;           /* text color */
  font-family: system-ui, sans-serif;
  line-height: 1.7;
}

.norbop-com-legal h1,
.norbop-com-legal h2,
.norbop-com-legal h3 {
  color: #29c747; /* heading green */
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.norbop-com-legal h1 {
  font-size: 2.2rem;
  border-bottom: 2px solid #29c747;
  padding-bottom: 0.6rem;
  margin-bottom: 2rem;
  text-align: center;
}

.norbop-com-legal h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
}

.norbop-com-legal p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #cdffd7;
}

.norbop-com-legal strong {
  color: #29c747;
  font-weight: 600;
}

.norbop-com-legal a {
  color: #29c747;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.norbop-com-legal a:hover {
  color: #cdffd7;
}

/* Container styling */
.norbop-com-legal .container {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

/* Responsive typography */
@media (max-width: 768px) {
  .norbop-com-legal h1 {
    font-size: 1.8rem;
  }

  .norbop-com-legal h2 {
    font-size: 1.3rem;
  }

  .norbop-com-legal p {
    font-size: 0.95rem;
  }
}
