/* VelnordHQ — Main stylesheet
   Colors:
   - accent/headings:  #f6c23b
   - text:             #ffd5b2
   - button text:      #311900
   - background:       #311900
*/

:root{
  --bg: #311900;
  --accent: #f6c23b;
  --text: #ffd5b2;
  --button-text: #311900;
  --muted: rgba(255, 213, 178, 0.12);
  --radius: 12px;
  --max-width: 1100px;
  --font: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

/* --- Reset / Base --- */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
  font-size:16px;
}

/* Links */
a{color:var(--text); text-decoration:none; transition: all .18s ease}
a:hover, a:focus{color:var(--accent)}
.velnordhq-click-link{color:var(--accent); border-bottom:2px solid transparent; padding-bottom:2px}
.velnordhq-click-link:hover{background:transparent; color:var(--accent); border-bottom-color:var(--accent)}

/* --- NAVBAR --- */
.velnordhq-click-navbar {
background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));
border-bottom: 1px solid rgba(246,194,59,0.06);
padding: 12px 0;
}

.velnordhq-click-brand {
gap: 10px;
}

.velnordhq-click-logo {
height: 80px;
width: auto;
display: block;
}

/* Nav links */
.navbar .nav-link {
color: var(--text);
padding: 8px 10px;
font-weight: 600;
border-radius: 8px;
transition: all .18s ease;
}

.navbar .nav-link:hover {
background: rgba(246,194,59,0.06);
color: var(--accent);
}

.navbar .nav-link.active,
.navbar .nav-link[aria-current="page"] {
color: var(--accent);
border: 1px solid rgba(246,194,59,0.12);
box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* --- TOGGLE BUTTON --- */
.navbar-toggler {
border: 2px solid rgba(246,194,59,0.5);
border-radius: 8px;
padding: 6px 10px;
background: rgba(246,194,59,0.08);
color: var(--accent, #f6c23b);
transition: all 0.3s ease;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
background: rgba(246,194,59,0.2);
border-color: rgba(246,194,59,0.9);
color: #fff7e0;
box-shadow: 0 0 10px rgba(246,194,59,0.6);
}

.navbar-toggler .fa-bars {
font-size: 1.4rem;
color: inherit;
transition: transform 0.2s ease;
}

.navbar-toggler:hover .fa-bars {
transform: rotate(90deg);
}

/* --- HERO SECTION --- */
.velnordhq-click-hero {
  background: linear-gradient(rgba(49, 25, 0, 0.1), rgba(49, 25, 0, 0.1)),
              url("../images/hero.jpg") center center/cover no-repeat;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffd5b2;
  text-align: center;
  position: relative;
}

.velnordhq-click-hero .hero-inner {
  max-width: 720px;
  padding: 40px 25px;
  z-index: 2;
}

/* Title */
.velnordhq-click-hero .hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #f6c23b;
  -webkit-text-stroke: 1px #311900;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* Subtitle */
.velnordhq-click-hero .hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 35px;
  color: #ffd5b2;
}

/* --- UNIVERSAL HEADING STYLE --- */
section h1,
section h2,
section h3,
.section-title,
.hero-title {
  font-family: "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  color: var(--accent);
  -webkit-text-stroke: 1px #311900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 28px;
  text-shadow:
    -1px -1px 0 #311900,
     1px -1px 0 #311900,
    -1px  1px 0 #311900,
     1px  1px 0 #311900;
}

/* Specific size scaling */
section h1,
.hero-title {
  font-size: 3.2rem;
  line-height: 1.2;
}

section h2,
.section-title {
  font-size: 2.4rem;
  line-height: 1.3;
}

section h3 {
  font-size: 1.8rem;
  line-height: 1.35;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

section h2 {
  animation: fadeInDown 0.8s ease both;
}

/* Responsive scaling */
@media (max-width: 768px) {
  section h1,
  .hero-title {
    font-size: 2.2rem;
  }

  section h2,
  .section-title {
    font-size: 1.8rem;
  }

  section h3 {
    font-size: 1.4rem;
  }
}


/* Button */
.velnordhq-click-btn {
  background: #f6c23b;
  color: #311900;
  font-weight: 700;
  padding: 12px 34px;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.velnordhq-click-btn:hover {
  background: #ffd5b2;
  color: #311900;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .velnordhq-click-hero {
    height: 70vh;
    padding: 40px 10px;
  }
  .velnordhq-click-hero .hero-title {
    font-size: 2rem;
  }
  .velnordhq-click-hero .hero-sub {
    font-size: 1rem;
  }
}

/* (rest of your CSS continues unchanged) */


/* Buttons */
.velnordhq-click-btn{
  display:inline-block;
  background:var(--accent);
  color:var(--button-text);
  padding:12px 20px;
  border-radius:12px;
  font-weight:700;
  border:0;
  text-decoration:none;
  cursor:pointer;
  transition:all .18s ease;
  box-shadow: 0 6px 16px rgba(0,0,0,0.45);
}
.velnordhq-click-btn.btn-lg{padding:14px 26px; font-size:1.05rem}
.velnordhq-click-btn:hover,
.velnordhq-click-btn:focus{background:var(--text); color:var(--button-text); transform:translateY(-2px)}

/* Secondary button */
.velnordhq-click-secondary{
  display:inline-block;
  background:transparent;
  color:var(--text);
  border:2px solid var(--accent);
  padding:10px 18px;
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
}
.velnordhq-click-secondary:hover{background:var(--accent); color:var(--button-text)}

/* --- DISCLAIMER CARD --- */
.velnordhq-click-disclaimer-section {
  background: radial-gradient(circle at center, rgba(246,194,59,0.04), transparent 70%);
  padding-top: 60px;
  padding-bottom: 60px;
}

.disclaimer-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.15));
  border: 1px solid rgba(246,194,59,0.12);
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  color: var(--text);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.disclaimer-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.55);
}

/* Icon */
.disclaimer-icon {
  color: var(--accent);
  text-shadow: 0 0 10px rgba(246,194,59,0.35);
}

/* Title */
.disclaimer-card .card-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  -webkit-text-stroke: 0.3px #1a1000;
  margin-bottom: 12px;
}

/* Text */
.disclaimer-card .card-text {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 720px;
  margin: 0 auto 20px;
  opacity: 0.95;
}

/* Button */
.disclaimer-btn {
  display: inline-block;
  background: var(--accent);
  color: #1a1000;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(246,194,59,0.25);
}

.disclaimer-btn:hover {
	color: #1a1000;
  background: #ffd15c;
  box-shadow: 0 0 25px rgba(246,194,59,0.4);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .disclaimer-card { padding: 30px 20px; }
  .disclaimer-card .card-title { font-size: 1.5rem; }
  .disclaimer-card .card-text { font-size: 1rem; }
  .disclaimer-icon { font-size: 2.5rem; }
}


/* --- GAME FRAME --- */
.velnordhq-click-game-frame{
  width:100%;
  max-width:900px;
  aspect-ratio: 16/9;
  border-radius:14px;
  overflow:hidden;
  border:2px solid rgba(246,194,59,0.12);
  box-shadow:0 18px 38px rgba(0,0,0,0.6);
  background:#1f0e00;
}
.velnordhq-click-game-frame iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* --- FEATURES --- */
.velnordhq-click-features {
  padding: 80px 0;
  text-align: center;
}

.section-sub {
  color: var(--text);
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
  font-size: 1.05rem;
}

.feature-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(0,0,0,0.05));
  border: 1px solid rgba(246,194,59,0.12);
  border-radius: 14px;
  color: var(--text);
  padding: 28px 22px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
  backdrop-filter: blur(2px);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246,194,59,0.3);
  box-shadow: 0 16px 42px rgba(0,0,0,0.7);
}

.feature-icon {
  font-size: 40px;
  color: var(--accent);
  margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(246,194,59,0.3);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.15);
  text-shadow: 0 0 14px rgba(246,194,59,0.6);
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--accent);
  -webkit-text-stroke: 0.5px #311900;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.feature-text {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0 auto;
  max-width: 380px;
  color: var(--text);
}

/* Grid Layout */
.velnordhq-click-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .velnordhq-click-features {
    padding: 60px 0;
  }
  .feature-card {
    padding: 24px 18px;
  }
  .feature-icon {
    font-size: 34px;
  }
  .feature-title {
    font-size: 1.2rem;
  }
}

/* --- ABOUT --- */
.velnordhq-click-about .about-image{
  max-width:360px;
  border-radius:10px;
  border:1px solid rgba(246,194,59,0.07);
  box-shadow:0 10px 28px rgba(0,0,0,0.55);
}

/* --- REVIEWS --- */
.velnordhq-click-reviews {
  padding: 80px 0;
  color: var(--text);
}

.velnordhq-click-reviews .section-title {
  font-size: 2.8rem;
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  -webkit-text-stroke: 0.5px #2a1500;
  text-shadow: 0 0 12px rgba(246,194,59,0.3);
}

.velnordhq-click-reviews .section-sub {
  color: var(--text);
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* --- SINGLE ROW GRID --- */
.velnordhq-click-reviews-row {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 24px;
  flex-wrap: nowrap;
}

/* --- REVIEW CARD --- */
.review-card {
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(246,194,59,0.1);
  border-radius: 14px;
  padding: 28px 24px;
  transition: all 0.3s ease;
  text-align: left;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(246,194,59,0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246,194,59,0.3);
  box-shadow: 0 14px 36px rgba(0,0,0,0.6);
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: var(--text);
  opacity: 0.95;
  font-style: italic;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  opacity: 0.9;
}

.review-author {
  font-weight: 600;
  color: var(--accent);
}

.review-stars {
  color: var(--accent);
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
  .velnordhq-click-reviews-row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .review-card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 600px) {
  .review-card {
    flex: 1 1 100%;
  }
  .velnordhq-click-reviews .section-title {
    font-size: 2.2rem;
  }
}



/* --- CONTACT FORM --- */
.velnordhq-click-input{
  background: rgba(255,213,178,0.02);
  color:var(--text);
  border:1px solid rgba(255,213,178,0.06);
  padding:12px 14px;
  border-radius:10px;
}
.velnordhq-click-input::placeholder{color:rgba(255,213,178,0.6)}
.velnordhq-click-input:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 6px 20px rgba(246,194,59,0.06);
}

/* --- FOOTER --- */
.velnordhq-click-footer {
  background: linear-gradient(180deg, rgba(49,25,0,1) 0%, rgba(32,15,0,1) 100%);
  border-top: 1px solid rgba(255,213,178,0.08);
  color: var(--text);
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.velnordhq-click-footer::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  width: 140%;
  height: 300px;
  background: radial-gradient(circle at top, rgba(246,194,59,0.08), transparent 70%);
  transform: translateX(-50%);
  opacity: 0.5;
  pointer-events: none;
}

/* --- LOGO CENTER --- */
.footer-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo-link img {
  height: 80px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.footer-logo-link:hover img {
  transform: scale(1.05);
}

/* --- FOOTER LINKS --- */
.velnordhq-click-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 auto 24px;
  padding: 0;
}

.velnordhq-click-footer-links a {
  color: var(--text);
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.velnordhq-click-footer-links a:hover {
  color: var(--accent);
  background: rgba(246,194,59,0.08);
  box-shadow: 0 0 10px rgba(246,194,59,0.1);
}

/* --- DISCLAIMER --- */
.velnordhq-click-footer-disclaimer {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(246,194,59,0.08);
  border-radius: 12px;
  padding: 24px 26px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.5);
  color: var(--text);
  margin: 0 auto 30px;
}

.disclaimer-title {
  font-size: 1.6rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
  -webkit-text-stroke: 0.4px #2a1500;
  text-shadow: 0 0 8px rgba(246,194,59,0.3);
}

.disclaimer-text {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.95;
  margin: 0;
}

/* --- FOOTER BOTTOM --- */
.footer-bottom {
  border-top: 1px solid rgba(255,213,178,0.05);
  padding-top: 16px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.footer-bottom a {
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
}

.footer-bottom a:hover {
  border-bottom: 1px solid var(--accent);
  color: #ffd5b2;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .disclaimer-title { font-size: 1.35rem; }
  .velnordhq-click-footer-disclaimer { padding: 20px; }
  .velnordhq-click-footer-links a { font-size: 0.95rem; }
  .footer-logo-link img { height: 68px; }
}

/* --- POPUP --- */
.velnordhq-click-popup{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(0,0,0,0.78);
  z-index:9999;
  visibility:hidden;
  opacity:0;
  transition:opacity .35s ease, visibility .35s ease;
}
.velnordhq-click-popup.visible{
  visibility:visible;
  opacity:1;
}
.velnordhq-click-popup-inner{
  background:linear-gradient(180deg, #3b1b00, #2d1300);
  border:2px solid var(--accent);
  color:var(--text);
  padding:28px;
  width:94%;
  max-width:520px;
  border-radius:14px;
  text-align:center;
  box-shadow:0 18px 48px rgba(0,0,0,0.7);
}
.velnordhq-click-popup-inner h3{color:var(--accent); margin-top:0}

/* popup actions */
.popup-actions{display:flex; gap:12px; justify-content:center; margin-top:16px}

/* --- SCROLL TO TOP --- */
.velnordhq-click-scroll-top{
  position:fixed;
  right:20px;
  bottom:20px;
  width:40px;
  height:40px;
  border-radius:50%;
  background:var(--accent);
  color:var(--button-text);
  border:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  box-shadow:0 10px 30px rgba(0,0,0,0.6);
  transform:translateY(6px);
  opacity:0;
  visibility:hidden;
  transition:all .22s ease;
  z-index:9998;
}
.velnordhq-click-scroll-top.visible{opacity:1; visibility:visible; transform:translateY(0)}
.velnordhq-click-scroll-top:hover{transform:scale(1.06)}

/* --- Responsiveness --- */
@media (max-width: 767px){
  .hero-title{font-size:1.6rem}
  .velnordhq-click-hero{padding:48px 0}
  .velnordhq-click-game-frame{border-radius:10px}
  .popup-actions{flex-direction:column}
  .feature-card{padding:18px}
  .nav-link{font-size:.95rem}
}

/* Small accessibility tweaks */
button:focus, a:focus, input:focus, textarea:focus{outline:3px solid rgba(246,194,59,0.12); outline-offset:2px}



/* --- LEGAL SECTIONS --- */
.velnordhq-click-legal-section {
  background: #311900;
  color: var(--text);
  line-height: 1.7;
  font-size: 1.05rem;
  padding-top: 80px;
  padding-bottom: 80px;
}

.velnordhq-click-legal-section h1,
.velnordhq-click-legal-section h2 {
  color: var(--accent);
  -webkit-text-stroke: 0.5px #1a1000;
  font-weight: 700;
  text-transform: uppercase;
}

.velnordhq-click-legal-section h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.velnordhq-click-legal-section h2 {
  font-size: 1.6rem;
  margin-top: 35px;
  margin-bottom: 15px;
}

.velnordhq-click-legal-section p {
  margin-bottom: 18px;
  color: var(--text);
  opacity: 0.95;
}

.velnordhq-click-legal-section a {
  color: var(--accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.velnordhq-click-legal-section a:hover {
  color: #ffd67f;
}

/* Responsive */
@media (max-width: 768px) {
  .velnordhq-click-legal-section {
    font-size: 1rem;
    padding: 60px 20px;
  }

  .velnordhq-click-legal-section h1 {
    font-size: 2rem;
  }

  .velnordhq-click-legal-section h2 {
    font-size: 1.4rem;
  }
}
