:root {
  /* --bg-dark: #3c2f2f;
  --bg-darker: #4b3832;
  --bg-light: #fff4e6;

  --accent-main: #854442;
  --accent-soft: #be9b7b;

  --text-light: #fff4e6;
  --text-muted: #be9b7b;

  --button-bg: #854442;
  --button-hover: #be9b7b; */

  /* Backgrounds */
  --bg-dark: #0b0f14;        /* deep club black */
  --bg-darker: #070a0e;      /* sections / footer */
  --bg-light: #121826;       /* cards / panels */

  /* Primary accents (from logo) */
  --accent-purple: #7c4dff;  /* neon purple */
  --accent-cyan: #00e5ff;    /* electric cyan */
  --accent-green: #4dff9a;   /* neon green */

  /* Text */
  --text-light: #f5f7fa;     /* primary text */
  --text-muted: #9aa4b2;     /* secondary text */

  /* Buttons */
  --button-bg: linear-gradient(
    135deg,
    #7c4dff,
    #00e5ff
  );
  --button-hover: linear-gradient(
    135deg,
    #00e5ff,
    #4dff9a
  );

  /* Utility */
  --border-soft: rgba(255,255,255,0.08);
  --glow-soft: 0 0 24px rgba(124,77,255,0.25);
}

* {
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---------- NAV ---------- */
header {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.nav {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.logo img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
}

/* Base nav list reset */
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}


.nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.nav a:hover {
  opacity: 1;
  color: var(--accent-purple);
  text-shadow: 0 0 12px rgba(124, 77, 255, 0.6);
  transition: all 0.3s ease;
}


/* ---------- HERO ---------- */
.hero {
  position: relative;
  padding: 6rem 2rem;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55); /* ← default darkness */
  transition: background 300ms ease;
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("images/vm.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1);
  transition: transform 0.6s ease;

  z-index: 0;
}

.hero:hover::after {
  transform: scale(1.05); /* subtle, classy */
}

/* brighten slightly on hover */
.hero:hover::before {
  background: rgba(0, 0, 0, 0.35);
  background-size: 110%;
  transition: all 300ms ease;
}

/* make sure text stays above */
.hero > * {
  position: relative;
  z-index: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;

  z-index: 9999;
}

.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 12px;

  transform: scale(0.95);
  transition: transform 0.35s ease;

  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox.active img {
  transform: scale(1);
}


.hero h1 {
  font-size: 3rem;
  max-width: 800px;
  margin: auto;
}

.hero p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 2.2rem;
  background: var(--button-bg);
  color: var(--text-light);
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

button {
  background: var(--button-bg);
  color: #000;
  box-shadow: var(--glow-soft);
  transition: all 0.3s ease;
}

button:hover {
  background: var(--button-hover);
  transition: all 0.3s ease;
}

.card {
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
}

h1, h2 {
  background: linear-gradient(90deg, #7c4dff, #00e5ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.btn:hover {
  background: var(--button-hover);
  color: var(--bg-dark);
}

/* ---------- SECTIONS ---------- */
section {
  max-width: 1000px;
  margin: auto;
  padding: 4rem 2rem;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

section p {
  color: var(--text-muted);
}

/* ---------- CARDS ---------- */
/* ---------- LOCATIONS WITH IMAGES ---------- */

.location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 0;
  list-style: none;
}
.form-success {
  margin-top: 2rem;
  padding: 2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  animation: fadeIn 0.4s ease;
}

.form-success h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.form-success p {
  color: var(--text-muted);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  .lightbox {
    display: none;
  }
}

.location-card {
  background: rgba(255,255,255,0.06);
  border-radius: 20px;
  overflow: hidden; /* IMPORTANT for image bevel */
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
}

.location-card:hover {
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.15), rgba(0, 229, 255, 0.1));
  box-shadow: 0 0 40px rgba(124, 77, 255, 0.4), 0 0 60px rgba(0, 229, 255, 0.3);
  transform: translateY(-4px);
}

.location-card h3 {
  padding: 1.2rem;
  margin: 0;
  font-size: 1.2rem;
  text-align: center;
}

.location-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}


/* ---------- FORMS ---------- */
form {
  background: rgba(255,255,255,0.04);
  padding: 2rem;
  border-radius: 20px;
  display: grid;
  gap: 1.2rem;
}

label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
}

input,
textarea,
select {
  padding: 0.8rem;
  border-radius: 10px;
  border: none;
  background: var(--bg-light);
  color: var(--text-light);
  font-size: 0.9rem;
}

textarea {
  resize: vertical;
  min-height: 90px;
}

button {
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--text-light);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

button:hover {
  background: var(--button-hover);
  color: var(--bg-dark);
}

/* ---------- FOOTER ---------- */
footer {
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(0,0,0,0.4);
}

.socials {
  margin: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.socials img {
  width: 28px;
  height: 28px;
  opacity: 0.8;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.socials img:hover {
  opacity: 1;
  transform: scale(1.1);
}

.footer-business a {
  color: var(--accent-soft);
  text-decoration: none;
}

/* nav mobile */
.nav-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---------- HERO SPECIFIC ---------- */
#feedback-hero {
  padding: 6rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
}

#feedback-hero h1 {
  font-size: 2.8rem;
  max-width: 700px;
  margin: auto;
}

#feedback-hero p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ---------- FEEDBACK FORM ---------- */
#feedback-form-section {
  max-width: 700px;
  margin: 3rem auto 6rem auto;
  padding: 0 1.5rem;
}

#feedback-form {
  display: grid;
  gap: 1.2rem;
  background: rgba(255,255,255,0.04);
  padding: 2rem;
  border-radius: 20px;
}

#feedback-form label {
  display: grid;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

#feedback-form input,
#feedback-form textarea,
#feedback-form select {
  padding: 0.8rem;
  border-radius: 10px;
  border: none;
  background: var(--bg-light);
  color: var(--text-light);
  font-size: 0.9rem;
}

#feedback-form textarea {
  resize: vertical;
  min-height: 90px;
}

#feedback-form button {
  margin-top: 1rem;
  padding: 0.9rem;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--text-light);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

#feedback-form button:hover {
  background: var(--button-hover);
  color: var(--bg-dark);
}

/* ---------- VALUE TOGGLE ---------- */

.muted {
  color: var(--text-muted);
}

.toggle-wrap {
  margin-top: 1.2rem;
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  padding: 0.35rem;
  gap: 0.35rem;
}

.toggle-btn {
  border: 0;
  cursor: pointer;
  padding: 0.8rem 1.1rem;
  margin: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.toggle-btn:hover {
  transform: translateY(-1px);
}

.toggle-btn.active {
  background: var(--bg-light);
  color: var(--text-light);
}

.value-panels {
  margin-top: 1.5rem;
}

.value-panel {
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 1.8rem;
}

.value-panel h3 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.value-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.75rem;
}

.value-list li {
  color: var(--text-light);
}

.value-list strong {
  background: linear-gradient(90deg, #7c4dff, #00e5ff);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Small screens: make toggle full width and buttons share space */
@media (max-width: 520px) {
  .toggle-wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  .toggle-btn {
    flex: 1;
    text-align: center;
  }
}


@media (min-width: 769px) {
  .nav-links {
    display: flex;
    gap: 1.5rem;
  }

  .nav-toggle {
    display: none;
  }
  .hero {
    cursor: zoom-in;
  }
}

/* Mobile styles */
@media (max-width: 768px) {

  .nav {
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;               /* 👈 THIS is the key */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 0;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }
}
