/* ===================================================
   Norvikon.click — Full site CSS
   Class prefix: norvikon-click
   Colors:
     - Headings / accents: #ffc737
     - Text: #ffede1
     - Background: #483324
     - Button text: #483324
     - Button hover bg: #ffede1
   Font: Poppins (via Google)
   =================================================== */

/* --------------------------
   Variables
   -------------------------- */
:root{
  --site-bg: #483324;
  --accent: #ffc737;
  --text: #ffede1;
  --btn-text: #483324;
  --btn-hover: #ffede1;
  --muted-bg: rgba(72,51,36,0.6);
}

/* --------------------------
   Base
   -------------------------- */
* { box-sizing: border-box; }
html,body { height: 100%; }
body.norvikon-click {
  margin: 0;
  padding: 0;
  background: var(--site-bg);
  color: var(--text);
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height: 1.6;
}

/* Links */
a { color: var(--accent); text-decoration: none; transition: color .22s ease; }
a:hover { color: var(--btn-hover); }

/* --------------------------
   Navbar
   -------------------------- */
.norvikon-click-navbar {
  background: transparent;
  padding: 18px 0 12px;
  position: relative;
  z-index: 110;
}

/* Make container stack brand + nav centered */
.norvikon-click-navbar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  position: relative;
}

/* Brand / Logo */
.norvikon-click-logo {
  max-height: 82px;
  width: auto;
  display: block;
  margin: 8px auto 12px;
}

/* Toggler */
.norvikon-click-navbar .navbar-toggler {
  position: absolute;
  right: 1rem;
  top: 1rem;
  border: none;
  color: var(--accent);
  background: transparent;
  font-size: 1.25rem;
}

/* Links layout */
.norvikon-click-navbar .navbar-links { text-align: center; }
.norvikon-click-navbar .navbar-nav {
  display:flex;
  justify-content:center;
  gap: 1.15rem;
  padding-left:0;
  margin: 0;
  flex-wrap:wrap;
}
.norvikon-click-navbar .nav-link {
  color: var(--text);
  font-weight: 600;
  font-size: 0.98rem;
  padding: .25rem .5rem;
  border-radius:6px;
}
.norvikon-click-navbar .nav-link.active,
.norvikon-click-navbar .nav-link:hover {
  color: var(--accent);
  text-shadow: 0 0 6px rgba(255,199,55,0.5);
}

/* --------------------------
   Hero
   -------------------------- */
.norvikon-click-hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 24px;
  background: linear-gradient(180deg, rgba(72,51,36,0.85), rgba(72,51,36,0.85));
  overflow: hidden;
}

/* Optional hero background image — replace path if you have one */
.norvikon-click-hero {
  background-image: url('../images/hero.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* subtle dark overlay for legibility */
.norvikon-click-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(72,51,36,0.4);
  z-index: 1;
}

.norvikon-click-hero-content { position: relative; z-index:2; max-width: 920px; margin: 0 auto; }

/* Heading style with thin neon glow */
.norvikon-click-hero-heading {
  font-size: clamp(1.8rem, 3.6vw, 3rem);
  margin-bottom: 0.75rem;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(255,199,55,0.28);
  font-weight:700;
}

/* Hero text */
.norvikon-click-hero-text {
  color: var(--text);
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  max-width: 780px;
  margin: 0 auto 1.25rem;
}

/* Buttons */
.norvikon-click-btn {
  background: var(--accent);
  color: var(--btn-text);
  padding: 0.72rem 1.4rem;
  border-radius: 28px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.22);
  transition: transform .18s ease, background .18s ease;
}
.norvikon-click-btn:hover { background: var(--btn-hover); color: var(--btn-text); transform: translateY(-3px); }

.norvikon-click-btn-outline{
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 0.6rem 1.25rem;
  border-radius: 28px;
}
.norvikon-click-btn-outline:hover { background: var(--accent); color: var(--btn-text); }

/* --------------------------
   Notice Card
   -------------------------- */
.norvikon-click-brief {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}
.norvikon-click-brief-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));
  border: 1px solid rgba(255,199,55,0.07);
  color: var(--text);
}

/* Section Title */
.norvikon-click-section-title{
  font-size: 1.9rem;
  color: var(--accent);
  text-shadow: 0 0 6px rgba(255,199,55,0.22);
  font-weight:700;
}

/* Notice text */
.norvikon-click-notice-text{ color: var(--text); font-size:1rem; }

/* --------------------------
   Games Section (responsive fixed 900x600 with aspect)
   -------------------------- */
.norvikon-click-games { padding-top: 3.5rem; padding-bottom: 3.5rem; }

.norvikon-click-game-card { margin-bottom: 2rem; display:flex; justify-content:center; }

.norvikon-click-game-frame {
  width: 100%;
  max-width: 900px;
  aspect-ratio: 3 / 2; /* keeps 900x600 ratio */
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #1e130f;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
}

/* Fallback for browsers without aspect-ratio */
.norvikon-click-game-frame iframe { position:absolute; inset:0; width:100%; height:100%; border:0; display:block; }

/* --------------------------
   Features
   -------------------------- */
.norvikon-click-features { padding: 3.5rem 1rem; }
.norvikon-click-feature-card {
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  transition: transform .22s ease, box-shadow .22s ease;
  padding: 1.25rem;
}
.norvikon-click-feature-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(255,199,55,0.06); }
.norvikon-click-feature-card h4 { color: var(--accent); }

/* ============================= */
/* Norvikon.click About Section  */
/* ============================= */

.norvikon-click-about {
  background-color: #483324; /* site background */
  color: #ffede1;           /* main text color */
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.norvikon-click-about .norvikon-click-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffc737; /* heading accent */
  margin-bottom: 1.5rem;
}

.norvikon-click-about-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffede1;
  max-width: 800px;
  margin: 0 auto 2rem auto;
}

.norvikon-click-about-text p {
  margin-bottom: 1.2rem;
}

.norvikon-click-about-text strong {
  color: #ffc737; /* highlight brand color */
  font-weight: 600;
}

.norvikon-click-about-image-wrapper {
  border: 2px solid #ffc737;
  border-radius: 1.25rem;
  background: rgba(255, 199, 55, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.norvikon-click-about-image-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 0 25px rgba(255, 199, 55, 0.3);
}

.norvikon-click-about-img {
  width: 100%;
  display: block;
  border-radius: 1rem;
}

/* --------------------------
   Reviews / Reel cards
   -------------------------- */
.norvikon-click-reviews { padding: 3.5rem 0; }
.norvikon-click-review-reel { overflow:hidden; padding: 0 1rem; }
.norvikon-click-review-track { display:flex; gap:1rem; justify-content:center; align-items:stretch; flex-wrap:wrap; }
.norvikon-click-review-card {
  background: rgba(255,255,255,0.02);
  padding:1.25rem;
  border-radius:10px;
  width: 260px;
  text-align:left;
  color: var(--text);
  transition: transform .18s ease, box-shadow .18s ease;
}
.norvikon-click-review-card:hover { transform: translateY(-6px); box-shadow: 0 10px 30px rgba(0,0,0,0.35); }
.norvikon-click-review-card h6 { color: var(--accent); margin-top:.6rem; font-weight:600; font-size:.95rem; }

/* --------------------------
   Footer
   -------------------------- */
.norvikon-click-footer {
  background: rgba(0,0,0,0.08);
  color: var(--text);
  padding: 3.25rem 1rem;
}
.norvikon-click-footer-logo { max-width:160px; height:auto; margin:0 auto 1rem; display:block; filter: drop-shadow(0 0 8px rgba(255,199,55,0.24)); transition:transform .18s ease; }
.norvikon-click-footer-logo:hover { transform: scale(1.03); }

.norvikon-click-footer-links { gap: 1rem; padding-left:0; margin-bottom:1rem; }
.norvikon-click-footer-link { color: var(--accent); }
.norvikon-click-footer-heading { color: var(--accent); }
.norvikon-click-footer-text { color: var(--text); }

/* --------------------------
   Popup (Age Gate)
   -------------------------- */
.norvikon-click-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(72,51,36,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.norvikon-click-popup-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.9));
  padding: 1.8rem;
  border-radius: 12px;
  max-width: 520px;
  text-align:center;
  color: var(--text);
}
.norvikon-click-popup-title { color: var(--accent); font-size:1.5rem; margin-bottom:.75rem; }

/* --------------------------
   Scroll to top (perfect circle)
   -------------------------- */
.norvikon-click-scroll-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--btn-text);
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: none;
  z-index: 999;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}
.norvikon-click-scroll-top:hover { background: var(--btn-hover); transform: translateY(-3px); }

/* --------------------------
   Legal page styles (detailed text)
   -------------------------- */
.norvikon-click-legal {
  background: transparent;
  color: var(--text);
  padding: 3.5rem 1rem;
}
.norvikon-click-legal .container { max-width: 960px; margin: 0 auto; padding:0 1rem; }
.norvikon-click-legal h2 { color: var(--accent); text-align:center; margin-bottom:1rem; text-shadow:0 0 6px rgba(255,199,55,0.18); }
.norvikon-click-legal p { margin-bottom:1rem; text-align:justify; color:var(--text); font-size:1rem; }

/* --------------------------
   Forms (if you add a contact page)
   -------------------------- */
.norvikon-click-contact .form-label { color: var(--accent); font-weight:600; }
.norvikon-click-contact .form-control {
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(255,199,55,0.08);
  color: var(--text);
  border-radius: 8px;
  padding: .7rem .9rem;
}
.norvikon-click-contact .form-control:focus { box-shadow: 0 0 12px rgba(255,199,55,0.12); border-color: var(--accent); outline:none; }

/* --------------------------
   Responsive tweaks
   -------------------------- */
@media (max-width: 992px) {
  .norvikon-click-logo { max-height:62px; }
  .norvikon-click-hero-heading { font-size: 2.1rem; }
}
@media (max-width: 768px) {
  .norvikon-click-navbar .navbar-nav { gap: .6rem; }
  .norvikon-click-hero { height: 75vh; padding:18px; }
  .norvikon-click-game-frame { max-width: 100%; aspect-ratio: 3/2; }
  .norvikon-click-review-card { width: 100%; max-width: 360px; margin: 0 auto; }
}
@media (max-width: 420px){
  .norvikon-click-hero { height: 70vh; }
  .norvikon-click-hero-text { font-size: .98rem; }
  .norvikon-click-btn { padding: .6rem 1rem; font-size:.95rem; }
}



/* -----------------------------
   Contact Section
----------------------------- */
.norvikon-click-contact-form {
  background: #2e2431; /* slightly darker than site background */
  color: #ffede1;
}

.norvikon-click-contact-form .form-label {
  color: #ffc737;
  font-weight: 600;
}

.norvikon-click-contact-form .form-control {
  background: #483324;
  border: 1px solid #ffc737;
  color: #ffede1;
  border-radius: 8px;
}

.norvikon-click-contact-form .form-control:focus {
  border-color: #ffede1;
  box-shadow: 0 0 0 0.2rem rgba(255,199,55,0.25);
  background: #3a2920;
  color: #ffede1;
}

.norvikon-click-contact-form textarea {
  resize: vertical;
}

.norvikon-click-contact-form button {
  min-width: 160px;
}



/* ---------------------------------------------------
   Legal Pages (Disclaimer, Privacy, Terms)
--------------------------------------------------- */
.norvikon-click-legal {
  background: #483324; /* site background */
  color: #ffede1;      /* text color */
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.norvikon-click-legal .container {
  max-width: 900px;
  margin: 0 auto;
}

.norvikon-click-section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffc737;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 6px rgba(255, 199, 55, 0.6);
}

.norvikon-click-legal-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: #ffede1;
}

.norvikon-click-legal-text h4 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: #ffc737;
}

.norvikon-click-legal-text strong {
  color: #ffc737;
  font-weight: 600;
}

.norvikon-click-legal-text a {
  color: #ffc737;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.norvikon-click-legal-text a:hover {
  color: #ffede1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .norvikon-click-section-title {
    font-size: 1.8rem;
  }
  .norvikon-click-legal-text p {
    font-size: 1rem;
  }
  .norvikon-click-legal-text h4 {
    font-size: 1.2rem;
  }
}
