:root {
  --black:#111;
  --gray:#f6f6f6;
}

* { box-sizing:border-box; }

body {
  margin:0;
  font-family:system-ui, sans-serif;
  color:var(--black);
}

.container {
  max-width:1200px;
  margin:auto;
  padding:60px 20px;
}

.site-header {
  border-bottom:1px solid #eee;
}
.header-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo {
  font-weight:800;
  letter-spacing:2px;
}

.hero {
  position:relative;
  height:85vh;
}
.hero img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.hero-content {
  position:absolute;
  left:8%;
  bottom:20%;
  color:#fff;
}

.btn {
  background:#000;
  color:#fff;
  padding:12px 24px;
  text-decoration:none;
}

.grid-4 {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.cat {
  background:var(--gray);
  padding:40px;
  text-align:center;
  font-weight:600;
}

.banner {
  position:relative;
  height:400px;
}
.banner img {
  width:100%;
  height:100%;
  object-fit:cover;
}
.banner-content {
  position:absolute;
  left:10%;
  top:50%;
  transform:translateY(-50%);
  color:#fff;
}

.placeholder .img {
  height:250px;
  background:#ddd;
}

/* =========================
   HEADER
========================= */

.site-header {
  border-bottom: 1px solid #eee;
  background: #fff;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 2px;
  text-decoration: none;
  color: #000;
}

/* MENU */
.menu ul {
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.menu ul li a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #111;
  position: relative;
  padding-bottom: 4px;
}

/* Active page underline */
.menu ul li.current_page_item a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #000;
}

/* Hover effect */
.menu ul li a:hover {
  opacity: 0.7;
}

/* RIGHT ICONS */
.header-icons {
  display: flex;
  gap: 18px;
}

.header-icons a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 768px) {
  .header-inner {
    flex-wrap: wrap;
    gap: 12px;
  }

  .menu ul {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
}





/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 85vh;
  overflow: hidden;
  border-radius: 20px;
  margin: 20px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .6s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT */
.slide-content {
  position: absolute;
  left: 80px;
  bottom: 100px;
  max-width: 520px;
  color: #fff;
}

.badge {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  opacity: 0.9;
}

.slide-content h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.slide-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 14px;
}

.btn {
  padding: 12px 22px;
  font-size: 13px;
  text-decoration: none;
  border-radius: 30px;
}

.btn.primary {
  background: #000;
  color: #fff;
}

.btn.outline {
  border: 1px solid #fff;
  color: #fff;
}

/* DOTS */
.slider-dots {
  position: absolute;
  right: 30px;
  bottom: 50%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #fff;
}