/* Custom styles for VHS website */

/* Root variables to enable easy colour management */
/* Custom styles for VHS website */

/*
 * Colour palette inspired by a deep–space theme. The site keeps a professional
 * look while incorporating shades of blue and purple reminiscent of a starry
 * night. Adjust these variables to tweak the overall mood of the site.
 */
:root {
  --color-primary: #0a84ff;        /* Bright blue accent */
  --color-secondary: #6610f2;      /* Purple accent */
  --color-dark: #051622;           /* Nearly black blue for backgrounds */
  --color-light: #eef3fb;          /* Very light blue for contrast */
  --color-muted: #8ea3c0;          /* Muted text for secondary information */
}

body {
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
  background-color: var(--color-dark);
  color: var(--color-light);
  min-height: 100vh;
}

/* Navbar overrides */
/* Use a semi‑transparent dark backdrop so the space background shines through. */
.navbar-dark {
  background-color: rgba(5, 22, 34, 0.9) !important;
  backdrop-filter: blur(4px);
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
}
.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
}
.navbar-dark .dropdown-menu {
  background-color: rgba(5, 22, 34, 0.95);
  border: none;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.3);
}
.navbar-dark .dropdown-item {
  color: var(--color-light);
}
.navbar-dark .dropdown-item:hover {
  background-color: rgba(10, 132, 255, 0.2);
  color: #ffffff;
}

/* Hero Section */
/* The hero uses a radial gradient overlaid with a subtle star texture. */
.hero-section {
  background: radial-gradient(circle at top left, #071e3d, #051622 60%);
  position: relative;
  overflow: hidden;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
  color: var(--color-light);
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/hero-texture.svg');
  background-repeat: repeat;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

/* Icon box style */
.icon-box {
  width: 72px;
  height: 72px;
  line-height: 72px;
  font-size: 1.75rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.1);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #ffffff;
}
.cta-section .btn {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
}

/* Pricing cards and game cards */
.card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-light);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.4);
}
.card-header {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.bg-primary {
  background-color: var(--color-primary) !important;
}
.bg-secondary {
  background-color: var(--color-secondary) !important;
}
.bg-dark {
  background-color: var(--color-dark) !important;
}
.bg-light {
  background-color: rgba(255, 255, 255, 0.05) !important;
}

/* Footer styles */
footer {
  background-color: rgba(5, 22, 34, 0.9);
  color: var(--color-light);
}
footer a {
  transition: color 0.2s;
  color: var(--color-muted);
}
footer a:hover {
  color: var(--color-primary);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-nav .nav-item {
    margin-bottom: 0.5rem;
  }
  .navbar-nav .ms-lg-3 {
    margin-left: 0 !important;
  }
}