/* EYA Company Website Style */

body {
    margin: 0;
    font-family: 'Noto Sans KR', sans-serif;
    background: #f7f7f7;
    color: #333;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #111827;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header h1 {
    font-size: 24px;
    font-weight: 700;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    padding: 6px 10px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: #374151;
    border-radius: 6px;
}

/* Hero Section */
#hero {
    position: relative;
}

#hero img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    filter: brightness(60%);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-text p {
    font-size: 20px;
}

/* Section Style */
section {
    padding: 60px 10%;
    background: white;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    position: relative;
}

section h2::after {
    content: "";
    width: 40px;
    height: 4px;
    background: #2563eb;
    position: absolute;
    bottom: -8px;
    left: 0;
    border-radius: 4px;
}

section img {
    width: 100%;
    margin-top: 20px;
    border-radius: 10px;
}

/* Vision Section */
#vision ul {
    list-style: none;
    padding-left: 0;
}

#vision ul li {
    padding: 8px 0;
    font-size: 18px;
    border-left: 4px solid #2563eb;
    padding-left: 12px;
    margin-bottom: 10px;
}

/* Projects */
.project-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.project-item {
    background: #f0f4ff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition: 0.3s;
}

.project-item:hover {
    transform: translateY(-6px);
}

.project-item img {
    border-radius: 8px;
}

.project-item h3 {
    margin-top: 15px;
    font-size: 20px;
}

/* Contact */
#contact p {
    font-size: 18px;
    margin: 6px 0;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #111827;
    color: white;
    margin-top: 40px;
}