@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
}

body {
  background-color: #000;
  color: #fff;
  overflow-x: hidden;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  background: url('factory-building.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero .content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.4;
  font-weight: 600;
}

.hero .sub {
  margin-top: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: #ccc;
}

.btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.8rem 1.6rem;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border-radius: 2rem;
  transition: 0.3s;
}

.btn:hover {
  background: #ccc;
}

/* About Section */
.about {
  padding: 100px 20px;
  background: #111;
  text-align: center;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #ccc;
  max-width: 800px;
  margin: 0 auto;
}

/* Footer */
footer {
  background: #000;
  text-align: center;
  padding: 40px 0;
  font-size: 0.9rem;
  color: #888;
}
/* Product Section */
.products {
  padding: 100px 20px;
  background: #0f0f0f;
  text-align: center;
}

.products h2 {
  font-size: 2rem;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-6px);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: brightness(0.9);
}

.product-card h3 {
  font-size: 1.2rem;
  margin-top: 15px;
  color: #fff;
}

.product-card p {
  font-size: 0.95rem;
  color: #bbb;
  padding: 10px 20px 25px;
  line-height: 1.6;
}
.greeting, .map, .clients {
  padding: 100px 20px;
  text-align: center;
  background: #111;
  color: #ccc;
}

.greeting h2, .map h2, .clients h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #fff;
}

.map-container {
  max-width: 800px;
  margin: 30px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
}

.client-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.client-logos img {
  height: 60px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.client-logos img:hover {
  opacity: 1;
}

