:root {
  --bg: #0b0d10;
  --panel: #15171a;
  --accent: #2fa8ff;
  --muted: #bfc6cf;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--muted);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 40px;
  background: linear-gradient(180deg, var(--panel), #111216);
  border-bottom: 1px solid #1f2124;
  top: 0;
  z-index: 50;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 36px;
  width: auto;
}

.brand {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 2px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* centers nav links */
  gap: 20px;
}

.nav a {
  color: #c7cbd0;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav a.active,
.nav a:hover {
  color: var(--accent);
}

/* Hero */
.hero {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 48px 20px;
}

.hero h1 {
  color: #fff;
  margin: 0 0 12px;
  font-size: 2.2rem;
}

.hero p {
  max-width: 720px;
  color: #d3d7db;
  margin: 0 0 18px;
  line-height: 1.5;
}

.cta {
  background: var(--accent);
  color: #071018;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
}

/* Content */
.content {
  max-width: 1000px;
  margin: 36px auto;
  padding: 0 20px 60px;
}

h2 {
  color: var(--accent);
  margin-top: 0;
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 18px;
}

.service {
  background: #0f1113;
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #1b1d20;
  transition: transform 0.2s ease;
}

.service:hover {
  transform: translateY(-3px);
}

/* Contact Card */
.contact-card {
  background: #0f1113;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #1b1d20;
}
/* Contact form styling */
form {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  background-color: #121212;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  color: #00aaff;
  font-weight: 600;
  margin-bottom: 5px;
}

form input,
form textarea {
  background: #1e1e1e;
  border: 1px solid #333;
  color: #fff;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}

form input:focus,
form textarea:focus {
  border-color: #00aaff;
  outline: none;
  box-shadow: 0 0 5px #00aaff80;
}

form button {
  background: #00aaff;
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

form button:hover {
  background: #0088cc;
}

.g-recaptcha {
  margin-top: 10px;
  transform: scale(0.95);
  transform-origin: 0 0;
}

/* Footer */
.footer {
  padding: 18px 10px;
  text-align: center;
  color: #8a8f95;
  border-top: 1px solid #16171a;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent);
  font-size: 1.8rem;
  cursor: pointer;
}

.menu-toggle.active {
  color: #fff;
}

/* Responsive Nav Behavior */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #0f1113;
    border-top: 1px solid #1f2124;
    padding: 10px 0;
    margin-top: 10px;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 10px 20px;
    margin: 0;
  }
}

/* ===============================
   📱 MOBILE & TABLET RESPONSIVE
   =============================== */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    flex-direction: column;
    margin-top: 10px;
    border-top: 1px solid #1f2124;
    padding-top: 10px;
  }

  .nav a {
    margin: 6px 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .content {
    padding: 0 14px 40px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 32px 12px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .cta {
    width: 100%;
    text-align: center;
  }
}
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.merch-item {
  background: #111;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

.merch-item:hover {
  transform: translateY(-5px);
}

.merch-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.merch-item h3 {
  margin-top: 1rem;
  color: #fff;
}

.merch-item p {
  color: #ccc;
}

.button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.button:hover {
  background-color: #0056b3;
}





