/* =========================================
   MMFC Base Styles  (black / red / gold)
   ========================================= */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
  scroll-behavior: smooth;
  background: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
}

/* Containers / Sections */
.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}
.section {
  padding: 80px 0;
}
.section-dark {
  background: #020b10;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0,0,0,0.85);
  border-bottom: 1px solid rgba(227,27,35,0.35);
  backdrop-filter: blur(6px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  font-family: 'Black Ops One', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
}
.brand .logo {
  height: 64px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.primary-nav a {
  color: #eee;
  text-decoration: none;
  font-weight: 700;
  transition: 0.2s;
}
.primary-nav a:hover {
  color: #fff;
}
.btn-ticket {
  background: #e31b23;
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 25px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.btn-ticket:hover {
  background: #b31217;
}

.lang {
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;
  padding: 4px 8px;
  font-weight: 700;
}

/* Burger (mobile) */
.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
}
.burger span,
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}
.burger span::before { top: -8px; }
.burger span::after { bottom: -8px; }

@media (max-width: 900px) {
  .burger { display: block; }
  .primary-nav {
    position: absolute;
    top: 72px;
    right: 0;
    background: rgba(0,0,0,0.95);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    width: 220px;
    transform: translateX(100%);
    transition: 0.3s;
  }
  .site-header.open .primary-nav {
    transform: translateX(0);
  }
}

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #000;
  color: #fff;
  text-align: center;
}
.hero h1 {
  font-family: 'Black Ops One', sans-serif;
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.1;
  text-transform: uppercase;
}
.hero h2 {
  font-size: 20px;
  color: #b08a3c;
  margin-top: 10px;
}

/* ---------- CARDS ---------- */
.card {
  background: #101010;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 20px;
  color: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.4);
}

.grid-2 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.grid-3 {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 700;
  transition: 0.2s;
}
.btn-primary, .btn-ticket, .btn-danger {
  background: #e31b23;
  border: none;
  color: #fff;
  box-shadow: 0 8px 20px rgba(227,27,35,.35);
}
.btn-primary:hover,
.btn-ticket:hover,
.btn-danger:hover {
  background: #b31217;
}
.btn-ghost {
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}
.btn-small {
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
}

/* ---------- NEWS / EVENTS CARDS ---------- */
.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 22px;
  margin-top: 20px;
}
.card-news {
  border: 2px solid #b08a3c;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  text-decoration: none;
  background: #fff;
  color: #111;
  transition: transform .3s, box-shadow .3s;
}
.card-news:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0,0,0,.35);
}
.card-news img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-bottom: 2px solid #b08a3c;
}
.card-news .body {
  padding: 18px 18px 22px;
}
.card-news h3 {
  margin: 0 0 6px;
  font-size: 22px;
  font-family: 'Black Ops One', sans-serif;
  color: #000;
}
.card-news p {
  color: #444;
  margin: 0;
}

/* ---------- FOOTER ---------- */
.site-footer {
  background: #000;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-grid .social a {
  color: #b08a3c;
  margin-left: 12px;
  text-decoration: none;
  font-weight: 700;
}
.footer-grid .social a:hover {
  color: #fff;
}

/* ---------- FORMS (admin create/edit) ---------- */
.form label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
}
.form input,
.form textarea {
  width: 100%;
  background: #111;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px;
  padding: 10px;
  font-size: 15px;
}
.form input[type="file"] {
  background: none;
  border: none;
}
.form .muted {
  font-size: 14px;
  color: #aaa;
}
.muted { color: #999; }

/* ---------- TYPOGRAPHY ---------- */
h1,h2,h3 {
  font-family: 'Black Ops One', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.eyebrow {
  color: #b08a3c;
  font-size: 20px;
  margin-bottom: 8px;
}

/* ---------- ADMIN BAR ---------- */
.admin-bar{
  position:sticky;
  top:72px;
  z-index:40;
  background:rgba(16,10,12,.9);
  border-bottom:1px solid rgba(227,27,35,.35);
  backdrop-filter:blur(8px);
}
.admin-bar__wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 0;
}
.admin-bar__title{
  font-family:"Black Ops One", system-ui;
  letter-spacing:.5px;
}
.admin-bar__nav{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.admin-bar__nav a{
  text-decoration:none;
  color:#e6e6e6;
  font-weight:700;
  padding:6px 10px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  transition:0.2s;
}
.admin-bar__nav a:hover{
  color:#fff;
  border-color:#fff;
}
.admin-bar__nav a.pill{
  background:#e31b23;
  color:#fff;
  border-color:transparent;
  font-weight:800;
}

/* ---------- MEDIA QUERIES ---------- */
@media (max-width:700px){
  .nav .brand .logo{height:48px;}
  .admin-bar__wrap{flex-direction:column;align-items:flex-start;gap:8px;}
}