
/* --- GLOBAL --- */
:root {
  --mb-red:#b42025;
  --mb-dark:#222;
  --mb-light:#f5f5f5;
}

body {
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--mb-light);
  color:#333;
}

.container {
  max-width:1200px;
  margin:0 auto;
  padding:0 1rem;
}

/* --- HEADER --- */
.site-header {
  background:#fff;
  border-bottom:1px solid #ddd;
  position:sticky;
  top:0;
  z-index:10;
}

.header-inner {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0.7rem 0;
}

.logo-wrap img {
  height:48px;
}

.nav-toggle {
  display:none;
  background:none;
  border:0;
  font-size:1.8rem;
}

.main-nav {
  display:flex;
  gap:1rem;
}

.main-nav a {
  text-decoration:none;
  color:#333;
  font-weight:600;
}

@media(max-width:768px){
  .nav-toggle { display:block; }
  .main-nav {
    display:none;
    position:absolute;
    left:0; right:0;
    top:60px;
    background:#fff;
    flex-direction:column;
    padding:1rem;
    border-bottom:1px solid #ddd;
  }
  body.nav-open .main-nav { display:flex; }
}

/* --- HERO --- */
.hero {
  position:relative;
  height:320px;
  display:flex;
  align-items:center;
  color:#fff;
}

.hero-bg {
  position:absolute;
  inset:0;
  background:url('hero_banner.jpg') center/cover no-repeat;
  filter:brightness(0.45);
}

.hero-inner {
  position:relative;
  z-index:2;
}

.hero-text h1 { font-size:2rem; margin:0; }
.hero-text p { font-size:1.1rem; }

/* --- CARDS --- */
.cards {
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(260px,1fr));
  gap:1rem;
}

.card {
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  border:1px solid #ddd;
  padding-bottom:1rem;
}

.card img {
  width:100%;
  height:150px;
  object-fit:cover;
}

.card h3 {
  padding:0 1rem;
  margin-top:1rem;
  color:var(--mb-red);
}

.card p {
  padding:0 1rem;
}

/* --- SECTIONS --- */
.section { padding:3rem 0; }
.section-alt { background:#fff; }

.two-cols {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:2rem;
}

/* --- IMAGE FIGURE --- */
.image-figure img {
  width:100%;
  max-height:350px;
  object-fit:cover;
  border-radius:8px;
}

/* --- FOOTER --- */
.site-footer {
  background:var(--mb-dark);
  color:#ccc;
  padding:1.5rem 0;
  margin-top:3rem;
}

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

.footer-links a {
  color:#fff;
  margin-left:1rem;
  text-decoration:none;
}

/* --- BUTTON PRIMARY --- */
.btn-primary {
  background:var(--mb-red);
  color:#fff !important;
  padding:0.7rem 1.4rem;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
}


/* --- INSTAGRAM / GALLERY SLIDER --- */
.social-title{
  text-align:center;
  font-size:1.4rem;
  font-weight:600;
  margin-top:2rem;
}
.social-title a{
  color:var(--mb-red);
  text-decoration:none;
}
.slider-container{
  max-width:900px;
  margin:1rem auto 3rem;
  overflow:hidden;
  border-radius:12px;
  position:relative;
  box-shadow:0 4px 14px rgba(0,0,0,0.12);
  background:#000;
}
.slider-track{
  display:flex;
  transition:transform 0.5s ease;
}
.slider-item{
  min-width:100%;
}
.slider-item img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
}
.slider-buttons{
  position:absolute;
  top:50%;
  width:100%;
  display:flex;
  justify-content:space-between;
  transform:translateY(-50%);
  pointer-events:none;
}
.slider-buttons button{
  pointer-events:auto;
  background:rgba(0,0,0,0.55);
  border:none;
  color:#fff;
  padding:0.4rem 0.9rem;
  font-size:1.2rem;
  cursor:pointer;
  border-radius:6px;
}
@media(max-width:600px){
  .slider-item img{
    height:220px;
  }
}
