/*
Theme Name: MapMyClub
Theme URI: https://www.mapmy.club
Description: MapMyClub Dark Urban Theme
Author: MapMyClub
Version: 1.0
*/

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary:    #0D1F17;
  --bg-surface:    #1A2E20;
  --bg-card:       #1F3525;
  --accent:        #00F5A0;
  --accent-dark:   #00C880;
  --text-primary:  #FFFFFF;
  --text-secondary:#8A9E90;
  --border:        rgba(0, 245, 160, 0.15);
  --radius-sm:     8px;
  --radius-md:     12px;
  --radius-lg:     16px;
  --radius-pill:   50px;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

h1, h2, h3, h4, h5 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--text-primary);
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-dark); }

img { max-width: 100%; height: auto; display: block; }

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;500;600&display=swap');

/* ── Layout ── */
.mmc-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.mmc-section {
  padding: 80px 0;
}

/* ── Navigation ── */
.mmc-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 31, 23, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.mmc-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mmc-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.mmc-nav-logo img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}

.mmc-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.mmc-nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.mmc-nav-links a:hover { color: var(--accent); }

/* ── Buttons ── */
.mmc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.mmc-btn-primary {
  background: var(--accent);
  color: var(--bg-primary);
}

.mmc-btn-primary:hover {
  background: var(--accent-dark);
  color: var(--bg-primary);
  transform: translateY(-2px);
}

.mmc-btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.mmc-btn-outline:hover {
  background: rgba(0, 245, 160, 0.1);
}

/* ── Cards ── */
.mmc-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* ── Badge ── */
.mmc-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(0, 245, 160, 0.1);
  color: var(--accent);
  border: 1px solid rgba(0, 245, 160, 0.2);
}

/* ── Footer ── */
.mmc-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 48px 0;
}

.mmc-footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}

.mmc-footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.mmc-footer-links a {
  color: var(--text-secondary);
  font-size: 14px;
  transition: color 0.2s;
}

.mmc-footer-links a:hover { color: var(--accent); }

.mmc-footer-copy {
  color: var(--text-secondary);
  font-size: 13px;
}

/* ── Legal Pages ── */
.mmc-legal-header {
  padding: 64px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.mmc-legal-content h2 {
  font-size: 28px;
  margin: 40px 0 12px;
  color: var(--accent);
}

.mmc-legal-content h3 {
  font-size: 20px;
  margin: 24px 0 8px;
}

.mmc-legal-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.mmc-legal-content ul {
  color: var(--text-secondary);
  padding-left: 24px;
  margin-bottom: 16px;
}

.mmc-legal-content ul li {
  margin-bottom: 8px;
}

.mmc-legal-content a {
  color: var(--accent);
}

/* ── Divider ── */
.mmc-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .mmc-nav-links { display: none; }
  .mmc-section { padding: 48px 0; }
  .mmc-footer-inner { flex-direction: column; text-align: center; }
}
