/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;700&family=Barlow:wght@400;500&display=swap');

/* ── Reset ── */
*, *::before, *::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── CSS Variables ── */
:root {
  --gold: #f0b233;
  --gold-dim: #c8891a;
  --gold-glow: rgba(240, 178, 51, 0.35);
  --bg: #0d0d0d;
  --surface: #141414;
  --border: rgba(240, 178, 51, 0.2);
  --text: #e8e8e8;
  --text-muted: #888;
}

/* ── Body ── */
body {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: var(--bg);
  font-family: 'Barlow', 'Source Sans Pro', sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 1.458;
  min-height: 100vh;
}

/* ── Typography ── */

h2 {
  color: white;
  text-align: center;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-size: 24px;
  top: 120px;
}

p {
  color: white;
  text-align: center;
  text-size-adjust: 20px;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* ── Gradient Text ── */
.gradient-text {
  background: linear-gradient(to right, rgb(255, 255, 255), rgb(8, 8, 8)) 50% !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-size: clamp(2.5rem, 3vw, 4.5rem);
  font-weight: 600;
  letter-spacing: 3px;
  line-height: 1.1;
  display: block;
}
/* ════════════════════════════════
   SIDEBAR NAV
   ════════════════════════════════ */

.nav-wrapper {
  position: fixed;
  top: 60px;
  left: 16px;
  z-index: 200;
  display: flex;
  align-items: flex-start;
}

/* ── Hamburger trigger ── */
.nav-trigger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
  z-index: 10;
  position: relative;
}

.nav-trigger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.3s,
              width 0.3s;
}

.nav-trigger:hover {
  border-color: var(--gold);
  background: #1c1c1c;
}

/* Morph to X when open */
.nav-wrapper.open .nav-trigger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-wrapper.open .nav-trigger span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-wrapper.open .nav-trigger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ── Sidebar panel ── */
.sidebar {
  width: 0;
  overflow: hidden;
  background: var(--surface);
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 2px solid var(--gold);
  border-radius: 0 6px 6px 0;
  transition: width 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.28s;
  opacity: 0;
  display: flex;
  flex-direction: column;
  max-height: 320px;
}

.nav-wrapper.open .sidebar {
  width: 210px;
  opacity: 1;
}

/* ── Sidebar header ── */
.sidebar-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.sidebar-logo {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  overflow: hidden;
}

.sidebar-logo span {
  color: #555;
  font-weight: 500;
}

/* ── Nav links ── */
.sidebar-nav {
  flex: 1;
  padding: 8px 0;
  overflow: hidden;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  color: #666;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  transition: color 0.18s, background 0.18s;
  opacity: 0;
  transform: translateX(-8px);
}

.nav-wrapper.open .nav-item {
  animation: navItemIn 0.28s forwards;
}

.nav-wrapper.open .nav-item:nth-child(1) { animation-delay: 0.06s; }
.nav-wrapper.open .nav-item:nth-child(2) { animation-delay: 0.10s; }
.nav-wrapper.open .nav-item:nth-child(3) { animation-delay: 0.14s; }
.nav-wrapper.open .nav-item:nth-child(4) { animation-delay: 0.18s; }
.nav-wrapper.open .nav-item:nth-child(5) { animation-delay: 0.22s; }

@keyframes navItemIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Right-side gold accent bar on hover/active */
.nav-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 2px;
  background: var(--gold);
  border-radius: 2px 0 0 2px;
  transform: scaleY(0);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-item:hover {
  color: #e8e8e8;
  background: rgba(240, 178, 51, 0.05);
}

.nav-item:hover::after {
  transform: scaleY(1);
}

.nav-item.active {
  color: var(--gold);
}

.nav-item.active::after {
  transform: scaleY(1);
}

.nav-icon {
  width: 16px;
  text-align: center;
  font-size: 14px;
  flex-shrink: 0;
  color: var(--gold-dim);
  transition: color 0.18s;
}

.nav-item:hover .nav-icon,
.nav-item.active .nav-icon {
  color: var(--gold);
}

.nav-divider {
  height: 1px;
  background: var(--border);
  margin: 5px 14px;
}

/* ── Footer ── */
.sidebar-footer {
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

.version-tag {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #333;
  white-space: nowrap;
}

/* ════════════════════════════════
   PRODUCTS
   ════════════════════════════════ */

.products-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 50px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.product {
  width: 380px;
  height: auto;
  padding: 20px;
  background-color: #1e1e1e;
  border-radius: 10px;
  box-shadow: 0 5px 15px gold;
  text-align: center;
  transition: transform 0.3s ease;
}

.product:hover {
  transform: translateY(-5px);
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  margin: 0;
}

.price {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

/* ── Buttons ── */
button {
  background-color: #f5a800;
  color: #000;
  padding: 10px 20px;
  border: none;
  background: black;
  color: white;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  opacity: 0.8;
  background-color: #ffbe00;
}

/* ── Responsive ── */
@media (max-width: 800px) {
  .products-container {
    gap: 15px;
  }
}

@media (max-width: 500px) {
  .products-container {
    flex-direction: column;
    align-items: center;
  }
}
.support-link {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.support {
  position: fixed;
  top: 120px; /* Adjust this to clear your navbar height */
  right: 410px;
  z-index: 13;
}
html {
    overflow-y: scroll;
}

body {
    overflow-y: visible;
    min-height: 100vh;
}

/* Transparent hero area — background image shows through */
.hero-section {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 80px; /* Adjust this to clear your navbar height */
}



.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;  /* ← changed from center */
  text-align: center;
  color: white;
  padding-top: 20px;  /* ← adjust this to clear your navbar height */
}
/*top bar for logo*/
.logo-bar {
    background-color: transparent; /* Black color */
    color: #fff;            /* Text color */
    width: 100%;            /* Spans full width */
    padding: 0px 0;        /* Space inside bar */
    text-align: center;     /* Center text */
    position: fixed;        /* Keeps it at the top */
    top: 0;
    left: 0;
    z-index: 10;          /* Places it above other content */
    isolation: isolate;     /* Prevents z-index issues with children */
}
.welcome-message {
    margin-top: 80px; /* Adjust this to clear your navbar height */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    border-radius: 8px;
    color: white;
    font-size: 18px;
    z-index: 11;
}