/* :root{
    --vh: 100%;
}

.header .logo {
    max-width:250px;
}
.header .logo img {
    width:100%;
}

.header {
    width:100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 60px;
    background: #ffffff;
    position: relative;
    z-index: 100;
}

.logo img {
    height: auto;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #574d3f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fec00f;
}

.header-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: #fec00f;
    border: none;
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #000000;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #e6ac0d;
    transform: translateY(-2px);
}

.header-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon {
    width: 22px;
    height: 22px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.icon:hover {
    opacity: 0.7;
}

.footer {
    background: #574d3f;
    color: #ffffff;
    padding: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    margin-bottom: 30px;
}

.footer-logo img {
    height: 59px;
    width: auto;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info p {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social img {
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.footer-social img:hover {
    opacity: 0.7;
}

.footer-bottom p {
    font-family: 'Inter', 'Noto Sans KR', sans-serif;
    font-weight: 500;
    font-size: 12px;
    line-height: 22px;
    color: #a39d95;
    margin-bottom: 5px;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }
    
    .header {
        padding: 20px;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .nav-menu {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .header-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 48px;
    }
    
    .target-grid {
        grid-template-columns: 1fr;
    }
    
    .programs-images {
        grid-template-columns: 1fr;
    }
    
    .ceremony-content {
        flex-direction: column;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-content {
        flex-direction: column;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-item:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 20px;
    }
} */
