* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Host Grotesk', sans-serif; background-color: #FFEFCA; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.header { background-color: #4C630A; padding: 30px 0; border-bottom: 5px solid #0099cc; }
.header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Do Hyeon', sans-serif; font-size: 32px; color: white; font-weight: bold; }
.nav { display: flex; gap: 40px; align-items: center; }
.nav a:not(.social-icon) { font-family: 'Do Hyeon', sans-serif; font-size: 18px; color: white; text-decoration: none; transition: opacity 0.3s; }
.nav a:not(.social-icon):hover { opacity: 0.8; }
.social-icon { width: 40px; height: 40px; display: inline-block; border-radius: 4px; cursor: pointer; transition: transform 0.2s; background-size: contain; background-repeat: no-repeat; background-position: center; }
.social-icon:hover { transform: scale(1.1); }
.instagram-icon { background-image: url('assets/icon-instragram.png'); }
.linkedin-icon { background-image: url('assets/icon-linkedin.png'); }
.main-content { padding: 60px 0; background-color: #FFEFCA; min-height: calc(100vh - 300px); }
.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.bio-image { width: 100%; height: auto; border-radius: 4px; }
.about-text { display: flex; flex-direction: column; gap: 20px; font-size: 16px; line-height: 1.6; }
.footer-decoration { width: 100%; height: auto; display: block; margin-bottom: -5px; }
.footer { background-color: #4C630A; padding: 30px 0; margin-top: 60px; position: relative; }
.footer .container { display: flex; justify-content: center; align-items: center; }
.footer-content { display: flex; gap: 30px; align-items: center; }
.footer-email { font-family: 'Host Grotesk', sans-serif; color: white; font-size: 16px; }
@media (max-width: 768px) { .about-section { grid-template-columns: 1fr; } .nav { gap: 20px; } .nav a:not(.social-icon) { font-size: 14px; } }
