/* ===========================
   Root Variables
=========================== */
:root {
  --heading: #ffa674;
  --text: #ffd7c1;
  --accent: #ffa674;
  --btn-text: #4d3834;
  --btn-hover: #ffd7c1;
  --bg: #4d3834;
  --shadow: rgba(0, 0, 0, 0.35);
  --radius: 12px;
  --transition: all 0.25s ease;
}

body.arvikahq-rest-body {
  background: var(--bg);
  color: var(--text);
  font-family: "Poppins", "Segoe UI", system-ui, sans-serif;
  line-height: 1.6;
}


/* ============================= */
/* Navbar Styling - Arvikahq.rest */
/* ============================= */

.arvikahq-rest-navbar {
  background-color: #4d3834; /* site background */
  padding: 0.8rem 1rem;
  font-family: 'Quicksand', sans-serif;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  position: flex;
  top: 0;
  z-index: 9999;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Brand Logo */
.arvikahq-rest-brand img.arvikahq-rest-logo {
  height: 80px;
  transition: transform 0.3s ease;
}

.arvikahq-rest-brand img.arvikahq-rest-logo:hover {
  transform: scale(1.05);
}

/* Navbar Links */
.arvikahq-rest-nav .nav-link {
  color: #ffd7c1; /* text color */
  font-weight: 600;
  padding: 0.55rem 1rem;
  transition: all 0.2s ease;
  text-shadow: 0 0 2px #ffa674; /* subtle heading-like border */
}

.arvikahq-rest-nav .nav-link:hover,
.arvikahq-rest-nav .nav-link.active {
  color: #ffa674; /* accent / active link */
  background-color: rgba(255, 166, 116, 0.15); /* light hover effect */
  border-radius: 6px;
}

/* Toggler Button */
.navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  width: 1.6em;
  height: 1.6em;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ffa674' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


/* Collapsible menu for mobile */
.navbar-collapse.collapse {
  transition: max-height 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .arvikahq-rest-nav .nav-link {
    padding: 0.7rem 1rem;
    text-align: center;
  }
  .arvikahq-rest-navbar {
    padding: 0.6rem 1rem;
  }
}

/* Optional: add a subtle shadow on scroll */
.arvikahq-rest-navbar.scrolled {
  background-color: #4d3834;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}



/* ===========================
   Headings
=========================== */
.section-title {
  color: var(--heading);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 0 #4d3834, -1px -1px 0 #4d3834;
}

/* ===========================
   Buttons
=========================== */
.btn-arvikahq {
  background: var(--accent);
  color: var(--btn-text);
  border: none;
  font-weight: 600;
  border-radius: var(--radius);
  padding: .65rem 1.4rem;
  transition: var(--transition);
}
.btn-arvikahq:hover,
.btn-arvikahq:focus {
  background: var(--btn-hover);
  color: var(--bg);
}

.btn-outline-arvikahq {
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  border-radius: var(--radius);
  padding: .6rem 1.3rem;
  transition: var(--transition);
}
.btn-outline-arvikahq:hover {
  background: var(--accent);
  color: var(--btn-text);
}

/* ===========================
   Hero
=========================== */
.arvikahq-rest-hero {
  position: relative;
  background: url("../images/hero.jpg") center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.arvikahq-rest-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(77, 56, 52, 0.3);
}
.arvikahq-rest-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width:800px;
}
.hero-title {
  font-size: 3.5rem;
  color: var(--heading);
  margin-bottom: 1rem;
  text-shadow: 2px 2px var(--bg);
}
.hero-sub {
  max-width: 650px;
  margin: 0 auto 1.5rem;
}

/* Disclaimer Card */
.arvikahq-disclaimer-card {
  background-color: #4d3834; /* site background */
  color: #ffd7c1; /* primary text */
  border: 2px solid #ffa674; /* prominent border */
  padding: 2rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.arvikahq-disclaimer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 166, 116, 0.5);
}

/* Disclaimer Title */
.disclaimer-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffa674;
  text-shadow: 0 0 3px #ffd7c1;
}

/* Disclaimer Text */
.disclaimer-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffd7c1;
}

/* Button */
.btn-arvikahq {
  background-color: #ffa674;
  color: #4d3834;
  border: 2px solid #ffa674;
  padding: 0.55rem 1.25rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.25s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-arvikahq:hover {
  background-color: #ffd7c1;
  color: #4d3834;
  border-color: #ffd7c1;
  text-decoration: none;
}

/* Games Section */
.arvikahq-rest-play {
  background-color: #4d3834;
  color: #ffd7c1;
  font-family: 'Quicksand', sans-serif;
}

.section-title {
  color: #ffa674;
  text-shadow: 0 0 3px #ffd7c1;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Game Cards */
.games-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.arvikahq-game-card {
  width: 100%;
  max-width: 900px;
  background-color: #4d3834;
  border: 2px solid #ffa674;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arvikahq-game-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(255,166,116,0.4);
}

.game-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
  overflow: hidden;
}

.game-frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Game Meta */
.game-meta {
  padding: 1rem 1.5rem 1.5rem;
}

.game-meta h3 {
  color: #ffa674;
  margin-bottom: 0.5rem;
}

.game-meta p.muted {
  color: #ffd7c1;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 992px) {
  .arvikahq-game-card {
    max-width: 100%;
  }
}

/* ===========================
   Features
=========================== */
.feature-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 1.5rem;
  height: 100%;
  transition: var(--transition);
}
.feature-card:hover {
  background: rgba(255,255,255,0.07);
}
.feature-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: .8rem;
}

/* ===========================
   About
=========================== */
.arvikahq-about-img {
  max-width: 90%;
  border-radius: var(--radius);
  box-shadow: 0 8px 20px var(--shadow);
}

/* ===========================
   Reviews
=========================== */
.review-card {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius);
  transition: var(--transition);
}
.review-card:hover {
  background: rgba(255,255,255,0.08);
}
.review-stars {
  color: var(--accent);
  font-size: 1.2rem;
}
.reviewer-name {
  margin-top: .6rem;
  font-weight: 600;
  color: var(--heading);
}

/* ===========================
   Contact
=========================== */
.arvikahq-rest-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text);
  border-radius: var(--radius);
  transition: var(--transition);
}
.arvikahq-rest-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(255,166,116,0.3);
}

/* ===========================
   Footer
=========================== */
.arvikahq-rest-footer {
  background: rgba(0,0,0,0.15);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 3rem 0;
}
.arvikahq-rest-footer-links a {
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}
.arvikahq-rest-footer-links a:hover {
  color: var(--accent);
}
.arvikahq-rest-footer-disclaimer {
  font-size: .9rem;
  opacity: .8;
}
.arvikahq-rest-footer-disclaimer {
  background-color: #4d3834;
  color: #ffd7c1;
  border: 2px solid #ffa674;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  text-align: center;
  font-family: 'Quicksand', sans-serif;
  line-height: 1.6;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.arvikahq-rest-footer-disclaimer:hover {
  box-shadow: 0 12px 30px rgba(255,166,116,0.4);
}

.disclaimer-heading {
  color: #ffa674;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 3px #ffd7c1;
}

.disclaimer-text {
  color: #ffd7c1;
  font-size: 0.95rem;
}
.arvikahq-footer-credit p,
.arvikahq-footer-powered p {
  margin: 0;
  font-size: 0.9rem;
  color: #ffd7c1;
}

.arvikahq-footer-credit a,
.arvikahq-footer-powered a {
  color: #ffa674;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.arvikahq-footer-credit a:hover,
.arvikahq-footer-powered a:hover {
  color: #ffd7c1;
  text-shadow: 0 0 4px #ffa674;
}
/* ===========================
   Disclaimer Popup
=========================== */
.arvikahq-rest-disclaimer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}
.arvikahq-rest-disclaimer-overlay.active {
  display: flex;
}
.arvikahq-rest-disclaimer-popup {
  background: #3a2a27;
  color: var(--text);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 520px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow);
}
.arvikahq-rest-disclaimer-popup .popup-title {
  color: var(--heading);
  margin-bottom: 1rem;
}
.arvikahq-rest-disclaimer-popup .btn {
  margin: 0 .3rem;
}

/* ===========================
   Scroll To Top
=========================== */
.arvikahq-rest-scroll-top {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  background: var(--accent);
  color: var(--btn-text);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.3rem;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 16px var(--shadow);
  transition: var(--transition);
  z-index: 1200;
}
.arvikahq-rest-scroll-top:hover {
  background: var(--btn-hover);
  color: var(--bg);
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.9rem;
  }
  .game-frame iframe {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-sub {
    font-size: .95rem;
  }
}



/* ============================= */
/* Legal Pages Styling - Arvikahq.rest */
/* ============================= */

/* Main container for legal sections */
.arvikahq-legal-section {
  background-color: #4d3834;        /* site background */
  color: #ffd7c1;                   /* primary text */
  font-family: 'Quicksand', sans-serif;
  line-height: 1.8;
  padding: 60px 20px;
  min-height: 80vh;
}

/* Legal page titles */
.arvikahq-legal-section .legal-title {
  color: #ffa674;                   /* heading accent */
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  text-shadow: 0 0 4px #ffd7c1;
}

/* Legal text paragraphs */
.arvikahq-legal-section .legal-text {
  color: #ffd7c1;
  font-size: 1.05rem;
  margin-bottom: 20px;
  text-align: justify;
}

/* Emphasized text */
.arvikahq-legal-section .legal-text strong {
  color: #ffa674;
  font-weight: 600;
}

/* Containers for content */
.arvikahq-legal-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Optional headings inside sections */
.arvikahq-legal-section h2, 
.arvikahq-legal-section h3 {
  color: #ffa674;
  margin-top: 25px;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 0 0 2px #ffd7c1;
}

/* Links in legal text */
.arvikahq-legal-section a {
  color: #ffa674;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.arvikahq-legal-section a:hover {
  color: #ffd7c1;
  text-decoration: none;
}

/* Optional subtle card style for highlights */
.arvikahq-legal-section .legal-card {
  background-color: rgba(255, 166, 116, 0.05);
  border: 1px solid rgba(255, 166, 116, 0.3);
  border-radius: 10px;
  padding: 20px;
  margin: 20px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .arvikahq-legal-section {
    padding: 40px 15px;
  }
  .arvikahq-legal-section .legal-title {
    font-size: 1.8rem;
  }
  .arvikahq-legal-section .legal-text {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .arvikahq-legal-section {
    padding: 30px 10px;
  }
  .arvikahq-legal-section .legal-title {
    font-size: 1.6rem;
  }
}
