/* style.css - global untuk semua halaman */
* { box-sizing: border-box; }
body {
  font-family: consolas; 
  background: #f6f5f1;
  margin: 0;
  padding: 0;
  color: #1f1f1f;
}
/* Container agar konten rata tengah */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
header {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #ca7f2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 40px;
  box-shadow: 0 4px 4px rgba(0,0,0,0.25);
  z-index: 10;
  box-sizing: border-box;
}
header .logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
header .logo img {
  height:70px
}
header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  font-weight: 500;
}
header nav a:hover {
  text-decoration: underline;
}
/* Hero section full width */
.hero {
  position: relative;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  background: #fff; /* opsional, biar gambar jelas */
  z-index: 1;
  padding: 0;
}

.hero img {
  width: 100vw;
  max-width: 100vw;
  height: auto;
  display: block;
  object-fit: contain;
  margin: 0 auto;
  background: #fff;
}
.cta {
  position: absolute;
  left: 40px;
  bottom: 30px;
  background: rgba(255,255,255,0.9);
  padding: 10px 16px;
  font-size: 14px;
  text-decoration: none;
  color: #1f1f1f;
  border-radius: 4px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.section {
  padding: 60px 40px;
}
.section-title {
  font-size: 24px;
  margin-bottom: 24px;
  position: relative;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 24px;
}
.article-card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 14px;
}
.article-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}
.article-card p {
  margin: 8px 0 0;
}
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.product-item {
  background: transparent;
  box-shadow: none;
}
.product-item img {
  width: 100%;
  max-width: 900px; /* Atur sesuai kebutuhan */
  height: auto;
  background: transparent;
  display: block;
  
}
/* Grid untuk artikel */
.article-body {
  display: grid;
  grid-template-columns: 1fr 420px; /* teks kiri, gambar kanan */
  gap: 40px;
  align-items: flex-start;
  margin-top: 40px;
}
/* Konten utama artikel */
.article-main {
  font-size: 1.1rem;
  line-height: 1.7;
}
.article-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.article-side img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  display: block;
}
.faq-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.size-chart {
  margin-top: 12px;
  font-size: 12px;
  background: #fff;
  padding: 12px;
  border: 1px solid #ccc;
  overflow-x: auto;
}
.about-gallery {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.about-gallery img {
  width: calc(33% - 10px);
  object-fit: cover;
  display: block;
  min-width: 150px;
}
footer {
  background-color: #944e14;
  color: white;
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  font-size: 14px;
}
.footer-block {
  flex: 1 1 250px;
  min-width: 200px;
}
.footer-block a {
  color: white;
  text-decoration: none;
}
.footer-icons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-icon-img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
}
.small {
  font-size: 12px;
}
