/* style.css */

/* 전체 기본 */
body {
  margin: 0;
  font-family: "Noto Sans KR", sans-serif;
  line-height: 1.6;
  letter-spacing: -0.5px;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 20px;
}
ul, li{list-style: none;margin:0;padding:0;}

img{width: 100%;}
a {text-decoration: none;color:#000000;}

/* a:hover {text-decoration: underline;} */

/* 헤더 */
header {
  background: #004080;
  color: #fff;
  padding: 15px 0;
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  gap: 20px;
}

header nav ul li {
  display: inline;
}

header nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

header nav ul li a:hover {
  text-decoration: underline;
}

/* 메인 콘텐츠 */
main h2 {
  color: #004080;
  margin-top: 20px;
  margin-bottom: 10px;
}

main p {
  margin-bottom: 15px;
}

.layout{padding:50px 0;}
/* 카드 레이아웃 (시공이력용) */
.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.project-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.project-card h3 {
  margin: 15px;
  font-size: 1.2rem;
  color: #004080;
}

.project-card p {
  margin: 0 15px 15px;
  font-size: 0.95rem;
}

/* 폼 (견적문의) */
form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

form textarea {
  resize: vertical;
  min-height: 120px;
}

form button {
  background: #004080;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}

form button:hover {
  background: #003366;
}

/* 푸터 */
footer {
  text-align: center;
  color: #fff;
  font-size: 0.9rem;
}

.footer{display: flex;justify-content: space-between;padding:50px 0px;}
.footer_company{text-align: left;} 
.footer_services{text-align: left;} 
.footer_links{text-align: left;color:#ffffff;} 
.footer_links a{display: inline-block;color:#ffffff;} 
.footer_bottom{margin:0; padding-bottom: 10px;}
.footer_bottom p{padding-top:30px;border-top:1px solid #1f2937;}
.footer_bottom .container{padding:20px;}

